diff options
-rw-r--r-- | src/mame/drivers/bfm_sc2.cpp | 176 | ||||
-rw-r--r-- | src/mame/layout/sc2copcl7.lay | 5486 | ||||
-rw-r--r-- | src/mame/layout/sc2cpe.lay | 5486 | ||||
-rw-r--r-- | src/mame/layout/sc2prem2.lay | 5484 | ||||
-rw-r--r-- | src/mame/layout/sc2prom.lay | 5487 | ||||
-rw-r--r-- | src/mame/layout/sc2ptytm1.lay | 5487 | ||||
-rw-r--r-- | src/mame/layout/sc2town2.lay | 5487 | ||||
-rw-r--r-- | src/mame/layout/sc4_dmd.lay | 8197 | ||||
-rw-r--r-- | src/mame/video/bfm_dm01.cpp | 50 | ||||
-rw-r--r-- | src/mame/video/bfm_dm01.h | 6 |
10 files changed, 219 insertions, 41127 deletions
diff --git a/src/mame/drivers/bfm_sc2.cpp b/src/mame/drivers/bfm_sc2.cpp index d0780d3b94d..7b5aa7b4b7a 100644 --- a/src/mame/drivers/bfm_sc2.cpp +++ b/src/mame/drivers/bfm_sc2.cpp @@ -202,24 +202,18 @@ public: m_reel3(*this, "reel3"), m_reel4(*this, "reel4"), m_reel5(*this, "reel5"), - m_strobein0(*this, "STROBE0"), - m_strobein1(*this, "STROBE1"), - m_strobein2(*this, "STROBE2"), - m_strobein3(*this, "STROBE3"), - m_strobein4(*this, "STROBE4"), - m_strobein5(*this, "STROBE5"), - m_strobein6(*this, "STROBE6"), - m_strobein7(*this, "STROBE7"), - m_strobein8(*this, "STROBE8"), - m_strobein9(*this, "STROBE9"), - m_strobein10(*this, "STROBE10"), - m_strobein11(*this, "STROBE11"), + m_strobein(*this, { "STROBE0", "STROBE1", "STROBE2", "STROBE3", "STROBE4", "STROBE5", "STROBE6", "STROBE7", "STROBE8", "STROBE9", "STROBE10", "STROBE11" }), m_rombank1(*this, "bank1"), + m_ym2413(*this, "ymsnd"), m_upd7759(*this, "upd"), m_vfd0(*this, "vfd0"), m_vfd1(*this, "vfd1"), m_dm01(*this, "dm01"), - m_meters(*this, "meters") { } + m_meters(*this, "meters") + { + for (auto & elem : m_lamps_old) + elem = 0; + } required_device<cpu_device> m_maincpu; optional_device<stepper_device> m_reel0; @@ -228,8 +222,10 @@ public: optional_device<stepper_device> m_reel3; optional_device<stepper_device> m_reel4; optional_device<stepper_device> m_reel5; - required_ioport m_strobein0, m_strobein1, m_strobein2, m_strobein3, m_strobein4, m_strobein5, m_strobein6, m_strobein7, m_strobein8, m_strobein9, m_strobein10, m_strobein11; + required_ioport_array<12> m_strobein; optional_memory_bank m_rombank1; + optional_device<ym2413_device> m_ym2413; + required_device<upd7759_device> m_upd7759; optional_device<bfm_bd1_t> m_vfd0; @@ -286,6 +282,7 @@ public: int m_e2dummywrite; int m_e2data_to_read; UINT8 m_codec_data[256]; + UINT8 m_lamps_old[0x20]; void e2ram_init(nvram_device &nvram, void *data, size_t size); DECLARE_WRITE_LINE_MEMBER(bfmdm01_busy); DECLARE_WRITE8_MEMBER(bankswitch_w); @@ -433,7 +430,8 @@ void bfm_sc2_state::on_scorpion2_reset() e2ram_reset(); - machine().device("ymsnd")->reset(); + if (m_ym2413) + m_ym2413->reset(); // make sure no inputs are overidden //////////////////////////////////// memset(m_input_override, 0, sizeof(m_input_override)); @@ -643,12 +641,24 @@ WRITE8_MEMBER(bfm_sc2_state::mmtr_w) WRITE8_MEMBER(bfm_sc2_state::mux_output_w) { + // this is a useful profiler point to make sure the artwork writes / lookups are performing properly. + g_profiler.start(PROFILER_USER6); + int i; int off = offset<<3; - for (i=0; i<8; i++) - output().set_lamp_value(off+i, ((data & (1 << i)) != 0)); + for (i = 0; i < 8; i++) + { + int oldbit = m_lamps_old[offset] & (1 << i); + int newbit = data & (1 << i); + + if (oldbit != newbit) + output().set_lamp_value(off + i, newbit != 0); + } + + m_lamps_old[offset] = data; + g_profiler.stop(); } /////////////////////////////////////////////////////////////////////////// @@ -657,8 +667,6 @@ READ8_MEMBER(bfm_sc2_state::mux_input_r) { int result = 0xFF,t1,t2; - required_ioport m_strobein[12] = { m_strobein0, m_strobein1, m_strobein2, m_strobein3, m_strobein4, m_strobein5, m_strobein6, m_strobein7, m_strobein8, m_strobein9, m_strobein10, m_strobein11 }; - if (offset < 8) { int idx = (offset & 4) ? 4 : 8; @@ -713,7 +721,11 @@ WRITE8_MEMBER(bfm_sc2_state::volume_override_w) if ( old != m_volume_override ) { - ym2413_device *ym = machine().device<ym2413_device>("ymsnd"); + ym2413_device *ym = m_ym2413; + + if (!m_ym2413) + return; + float percent = m_volume_override? 1.0f : (32-m_global_volume)/32.0f; ym->set_output_gain(0, percent); @@ -809,12 +821,16 @@ WRITE8_MEMBER(bfm_sc2_state::expansion_latch_w) } { - ym2413_device *ym = machine().device<ym2413_device>("ymsnd"); - float percent = m_volume_override ? 1.0f : (32-m_global_volume)/32.0f; + ym2413_device *ym = m_ym2413; + + if (m_ym2413) + { + float percent = m_volume_override ? 1.0f : (32 - m_global_volume) / 32.0f; - ym->set_output_gain(0, percent); - ym->set_output_gain(1, percent); - m_upd7759->set_output_gain(0, percent); + ym->set_output_gain(0, percent); + ym->set_output_gain(1, percent); + m_upd7759->set_output_gain(0, percent); + } } } } @@ -3695,10 +3711,12 @@ static MACHINE_CONFIG_START( scorpion2, bfm_sc2_state ) MCFG_FRAGMENT_ADD(_8meters) MACHINE_CONFIG_END +#if 0 static MACHINE_CONFIG_DERIVED( scorpion2_3m, scorpion2 ) MCFG_DEVICE_REMOVE("meters") MCFG_FRAGMENT_ADD(_3meters) MACHINE_CONFIG_END +#endif /* machine driver for scorpion3 board */ static MACHINE_CONFIG_DERIVED( scorpion3, scorpion2 ) @@ -5301,7 +5319,7 @@ ROM_START( sc2cpe3 ) ROM_LOAD( "club-public-enemy-no1_std_ac_200pnd_ass.bin", 0x0000, 0x010000, CRC(5704e52d) SHA1(dfae48734794cea2e9a952d808dedb96fd5204b3) ) ROM_REGION( 0x20000, "dm01:matrix", 0 ) - ROM_LOAD( "matrix.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) // seems to be from a cops+robbers instead, will say 'wrong display prom' during attract cycle + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) // WRONG this is from cops and robbers sc2_cpe_sound_alt2 ROM_END @@ -5311,7 +5329,7 @@ ROM_START( sc2cpe3p ) ROM_LOAD( "club-public-enemy-no1_dat_ac_200pnd_ass.bin", 0x0000, 0x010000, CRC(fec925a3) SHA1(5ce3b6f1236f511ae8975c7ecd1549e8d427a245) ) ROM_REGION( 0x20000, "dm01:matrix", 0 ) - ROM_LOAD( "matrix.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) // see above comment + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) // see above comment sc2_cpe_sound_alt2 ROM_END @@ -5321,7 +5339,7 @@ ROM_START( sc2cpe4 ) ROM_LOAD( "95750273.p1", 0x0000, 0x010000, CRC(950da13c) SHA1(2c544e06112969f7914a5b4fd15e6b0dfedf6b0b) ) ROM_REGION( 0x20000, "dm01:matrix", 0 ) - ROM_LOAD( "matrix.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) // see above comment + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) // see above comment sc2_cpe_sound_alt2 ROM_END @@ -5331,7 +5349,7 @@ ROM_START( sc2cpe4p ) ROM_LOAD( "club-public-enemy-no1_dat_fe_ac_200pnd_p65_rot_ass.bin", 0x0000, 0x010000, CRC(8d5ff953) SHA1(bdf6b5e014c46f6abac792a5913e98cb897b2a73) ) ROM_REGION( 0x20000, "dm01:matrix", 0 ) - ROM_LOAD( "matrix.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) // see above comment + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) // see above comment sc2_cpe_sound_alt2 ROM_END @@ -5481,120 +5499,180 @@ ROM_START( sc2copcl ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "club-cops-and-robbers_std_ac_250pnd-25p_phx_ass.bin", 0x0000, 0x010000, CRC(668def2e) SHA1(802ca565a20d0fce2f5e4340c646429af6aadff6) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copclp ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "club-cops-and-robbers_dat_ac_250pnd-25p_phx_ass.bin", 0x0000, 0x010000, CRC(f6e9a013) SHA1(02b6c203c3facdd7015ba1119bcb70bf34b4ec00) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copcl1 ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "club-cops-and-robbers_std_ac_250pnd-20p_rot_ass.bin", 0x0000, 0x010000, CRC(078651b5) SHA1(2acc45e5d66625753e5869f6f3ac1379d0c9dfcd) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copcl1p ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "club-cops-and-robbers_dat_ac_250pnd-20p_rot_ass.bin", 0x0000, 0x010000, CRC(05635f8b) SHA1(d3cf98e3858189db725621d4ba07728a585d7a3b) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copcl2 ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "club-cops-and-robbers_std_ac_250pnd-20p_ass.bin", 0x0000, 0x010000, CRC(229c65c1) SHA1(8052c4b8702275235545807e7b075571fc97d4f3) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copcl3 ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "club-cops-and-robbers_std_fe_ac_p67_ass.bin", 0x0000, 0x010000, CRC(4906d170) SHA1(c304a2986560d675b2e776965fdf444e4d56f104) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copcl3p ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "club-cops-and-robbers_dat_fe_ac_p67_ass.bin", 0x0000, 0x010000, CRC(327db998) SHA1(aa8583cedd52a3cd06be6423a32e48273ec6218a) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copcl4 ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "club-cops-and-robbers_std_ac_var_p65_ass.bin", 0x0000, 0x010000, CRC(23d80392) SHA1(d7f5bab4fc8f42c1a38e26b54bc519e0f03d20bc) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copcl5 ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "club-cops-and-robbers_std_fe_ac_p63_ass.bin", 0x0000, 0x010000, CRC(fc7f9b85) SHA1(d9f940bca29919d097fa7d128869725e01d6dbc3) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copcl6 ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "club-cops-and-robbers_std_ac_200pnd-20p_ass.bin", 0x0000, 0x010000, CRC(214cda40) SHA1(fc585f211256495bfaaa6cb6c4d9c8a110ab5051) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copcl6p ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "club-cops-and-robbers_dat_ac_200pnd-20p_ass.bin", 0x0000, 0x010000, CRC(b4071611) SHA1(2596ccee2b94bb56aa629ee892bd357b706005b0) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copcl7 ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "club-cops-and-robbers_std_ac_var_200pnd_ijf_ass.bin", 0x0000, 0x010000, CRC(db5a287e) SHA1(5615480767348061b7f08a709a16aa0b9cf0658e) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copcl8 ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "club-cops-and-robbers_std_ac_ffp_ass.bin", 0x0000, 0x010000, CRC(347255bf) SHA1(7f96277579e68bdf1e21788cc5e35941d98df87f) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copcl8p ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "club-cops-and-robbers_dat_ac_ffp_ass.bin", 0x0000, 0x010000, CRC(ec92b62d) SHA1(f10bc8fa55cd59127f179a35a61c1a57597856b6) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copcl9 ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "club-cops-and-robbers_std_fe_ac_ass.bin", 0x0000, 0x010000, CRC(c7461e95) SHA1(f4088056e848742d3795f5b067476b56071f99bd) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copcl9p ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "club-cops-and-robbers_dat_fe_ac_ass.bin", 0x0000, 0x010000, CRC(ead8cbe5) SHA1(5594eb9a736e0f15a6f0f097a8cbbd8352e46fc4) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copcl10 ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "club-cops-and-robbers_std_ac_npr_ass.bin", 0x0000, 0x010000, CRC(b9c0bcb4) SHA1(c1a398bd58097411b80d36030760e7820dc346f4) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copcl11 ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "cops200", 0x0000, 0x010000, CRC(05d29adc) SHA1(06a986356c1b48ad5ee92c9a7f6fb2531e1806af) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copcl11p ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "club-cops-and-robbers_dat_fr_ac_p63_ass.bin", 0x0000, 0x010000, CRC(93965bfc) SHA1(52af75234f56a77f082132d9532d3ffcaef5d271) ) sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copcl12 ) ROM_REGION( 0x10000, "maincpu", 0 ) ROM_LOAD( "premier-club-manager_dat_ac_250pnd-25p_ass.bin", 0x0000, 0x010000, CRC(6446176c) SHA1(17cccc00d443ffde11943ebda112ef1e79134455) ) // filename is wrong, this is a club cops n robbers sc2_copcl_sound + + ROM_REGION( 0x20000, "dm01:matrix", 0 ) + ROM_LOAD( "95000569.bin", 0x0000, 0x010000, CRC(64014f73) SHA1(67d44db91944738fcadc38bfd0d2b7c0536adb9a) ) ROM_END ROM_START( sc2copdc ) @@ -7749,37 +7827,37 @@ GAME( 199?, sc2gsclb6p , sc2gsclb , scorpion2 , drwho , bfm_sc2_st ********************************************************************************************************************************************************************************************************************/ // PROJECT PR6231 CLUB COPS AND ROBBERS - 20-JUL-1993 15:15:32 -GAMEL( 199?, sc2copcl11 , sc2copcl , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 1, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-118 +GAMEL( 199?, sc2copcl11 , sc2copcl , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 1, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-118 // PROJECT PR6231 CLUB COPS AND ROBBERS 150 POUND JACKPOT - 16-NOV-1993 12:34:10 -GAMEL( 199?, sc2copcl1 , sc2copcl , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 2, UK, 250GBP Jackpot) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-154 -GAMEL( 199?, sc2copcl1p , sc2copcl , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 2, UK, 250GBP Jackpot, Protocol) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-751-154 +GAMEL( 199?, sc2copcl1 , sc2copcl , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 2, UK, 250GBP Jackpot) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-154 +GAMEL( 199?, sc2copcl1p , sc2copcl , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 2, UK, 250GBP Jackpot, Protocol) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-751-154 // PROJECT NUMBER PR6231 CLUB COPS AND ROBBERS FIXED 65% - 16-NOV-1993 12:35:38 -GAMEL( 199?, sc2copcl4 , sc2copcl , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 3, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-156 +GAMEL( 199?, sc2copcl4 , sc2copcl , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 3, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-156 // PROJECT PR6231 CLUB COPS AND ROBBERS - 16-NOV-1993 12:39:31 -GAMEL( 199?, sc2copcl6 , sc2copcl , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 4, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-153 -GAMEL( 199?, sc2copcl6p , sc2copcl , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 4, UK, Protocol) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-751-153 +GAMEL( 199?, sc2copcl6 , sc2copcl , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 4, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-153 +GAMEL( 199?, sc2copcl6p , sc2copcl , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 4, UK, Protocol) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-751-153 // PROJECT PR6231 CLUB COPS AND ROBBERS GENEROUS 5P - 20-JAN-1994 11:13:45 -GAMEL( 199?, sc2copcl7 , sc2copcl , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 5, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-190 +GAMEL( 199?, sc2copcl7 , sc2copcl , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 5, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-190 // PROJECT PR6231 CLUB COPS AND ROBBERS - 4-AUG-1994 16:23:21 -GAMEL( 199?, sc2copcl10 , sc2copcl , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 6, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-268 +GAMEL( 199?, sc2copcl10 , sc2copcl , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 6, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-268 // PROJECT PR6231 CLUB COPS AND ROBBERS SEALINK VERSION - 22-MAY-1995 11:47:58 -GAMEL( 199?, sc2copcl9 , sc2copcl , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 7, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-409 -GAMEL( 199?, sc2copcl9p , sc2copcl , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 7, UK, Protocol) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-751-409 +GAMEL( 199?, sc2copcl9 , sc2copcl , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 7, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-409 +GAMEL( 199?, sc2copcl9p , sc2copcl , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 7, UK, Protocol) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-751-409 // PROJECT NUMBER 6231 CLUB COPS AND ROBBERS GENEROUS 5P NPO - 2-FEB-1996 12:39:22 -GAMEL( 199?, sc2copcl8 , sc2copcl , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 8, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-628 -GAMEL( 199?, sc2copcl8p , sc2copcl , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 8, UK, Protocol) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-751-628 +GAMEL( 199?, sc2copcl8 , sc2copcl , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 8, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-628 +GAMEL( 199?, sc2copcl8p , sc2copcl , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 8, UK, Protocol) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-751-628 // PROJECT NUMBER PR6231 CLUB COPS AND ROBBERS 25P/#250 - 2-SEP-1996 17:17:50 -GAMEL( 199?, sc2copcl , 0 , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 9, UK, 250GBP Jackpot) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-859 -GAMEL( 199?, sc2copclp , sc2copcl , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 9, UK, 250GBP Jackpot, Protocol) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-751-859 +GAMEL( 199?, sc2copcl , 0 , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 9, UK, 250GBP Jackpot) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-859 +GAMEL( 199?, sc2copclp , sc2copcl , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 9, UK, 250GBP Jackpot, Protocol) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-751-859 // PROJECT NUMBER PR6231 CLUB COPS AND ROBBERS 20P/#250 - 2-SEP-1996 17:26:44 -GAMEL( 199?, sc2copcl2 , sc2copcl , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 10, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-858 -GAMEL( 199?, sc2copcl12 , sc2copcl , scorpion2_3m , drwho , bfm_sc2_state, prom , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 10, UK, Protocol) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-751-858 +GAMEL( 199?, sc2copcl2 , sc2copcl , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 10, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-750-858 +GAMEL( 199?, sc2copcl12 , sc2copcl , scorpion2_dm01_3m , drwho , bfm_sc2_state, prom , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 10, UK, Protocol) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-751-858 // PROJECT PR6231 CLUB COPS AND ROBBERS NPO 63% SEALINK VERSION - 5-JAN-1998 11:53:49 -GAMEL( 199?, sc2copcl5 , sc2copcl , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 11, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-752-015 -GAMEL( 199?, sc2copcl11p , sc2copcl , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 11, UK, Protocol) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-753-015 +GAMEL( 199?, sc2copcl5 , sc2copcl , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 11, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-752-015 +GAMEL( 199?, sc2copcl11p , sc2copcl , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 11, UK, Protocol) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-753-015 // PROJECT PR6231 CLUB COPS AND ROBBERS NPO 67% SEALINK VERSION - 5-JAN-1998 11:56:01 -GAMEL( 199?, sc2copcl3 , sc2copcl , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 12, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-752-014 -GAMEL( 199?, sc2copcl3p , sc2copcl , scorpion2 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 12, UK, Protocol) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-753-014 +GAMEL( 199?, sc2copcl3 , sc2copcl , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 12, UK) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-752-014 +GAMEL( 199?, sc2copcl3p , sc2copcl , scorpion2_dm01 , drwho , bfm_sc2_state, drwho , 0, "BFM", "Cops 'n' Robbers Club (Bellfruit) (set 12, UK, Protocol) (Scorpion 2/3)", GAME_FLAGS, layout_sc2copcl7) // GAME No 95-753-014 /******************************************************************************************************************************************************************************************************************** diff --git a/src/mame/layout/sc2copcl7.lay b/src/mame/layout/sc2copcl7.lay index c4bd7941344..b821075347d 100644 --- a/src/mame/layout/sc2copcl7.lay +++ b/src/mame/layout/sc2copcl7.lay @@ -4320,22 +4320,6 @@ </color> </led7seg> </element> - <element name="dmd_dot" defstate="0"> - <rect state="1"> - <color red="1.0" green="0.5" blue="0.0"> - </color> - </rect> - <rect state="0"> - <color red="0.4" green="0.2" blue="0.0"> - </color> - </rect> - </element> - <element name="dmd_background"> - <rect> - <color red="0.0" green="0.0" blue="0.0"> - </color> - </rect> - </element> <element name="reel_lamp_layer_0" defstate="0"> <rect> <color red="0.40" green="0.40" blue="0.40"> @@ -8792,5470 +8776,12 @@ <bounds x="682" y="133" width="4" height="3"> </bounds> </backdrop> - <backdrop element="dmd_background"> - <bounds x="261" y="29" width="262" height="86"> - </bounds> - </backdrop> - <backdrop name="dotmatrix0" element="dmd_dot" state="0"> - <bounds x="261" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1" element="dmd_dot" state="0"> - <bounds x="265" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix2" element="dmd_dot" state="0"> - <bounds x="269" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix3" element="dmd_dot" state="0"> - <bounds x="273" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix4" element="dmd_dot" state="0"> - <bounds x="277" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix5" element="dmd_dot" state="0"> - <bounds x="281" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix6" element="dmd_dot" state="0"> - <bounds x="285" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix7" element="dmd_dot" state="0"> - <bounds x="289" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix8" element="dmd_dot" state="0"> - <bounds x="293" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix9" element="dmd_dot" state="0"> - <bounds x="297" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix10" element="dmd_dot" state="0"> - <bounds x="301" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix11" element="dmd_dot" state="0"> - <bounds x="305" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix12" element="dmd_dot" state="0"> - <bounds x="309" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix13" element="dmd_dot" state="0"> - <bounds x="313" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix14" element="dmd_dot" state="0"> - <bounds x="317" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix15" element="dmd_dot" state="0"> - <bounds x="321" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix16" element="dmd_dot" state="0"> - <bounds x="325" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix17" element="dmd_dot" state="0"> - <bounds x="329" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix18" element="dmd_dot" state="0"> - <bounds x="333" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix19" element="dmd_dot" state="0"> - <bounds x="337" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix20" element="dmd_dot" state="0"> - <bounds x="341" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix21" element="dmd_dot" state="0"> - <bounds x="345" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix22" element="dmd_dot" state="0"> - <bounds x="349" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix23" element="dmd_dot" state="0"> - <bounds x="353" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix24" element="dmd_dot" state="0"> - <bounds x="357" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix25" element="dmd_dot" state="0"> - <bounds x="361" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix26" element="dmd_dot" state="0"> - <bounds x="365" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix27" element="dmd_dot" state="0"> - <bounds x="369" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix28" element="dmd_dot" state="0"> - <bounds x="373" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix29" element="dmd_dot" state="0"> - <bounds x="377" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix30" element="dmd_dot" state="0"> - <bounds x="381" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix31" element="dmd_dot" state="0"> - <bounds x="385" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix32" element="dmd_dot" state="0"> - <bounds x="389" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix33" element="dmd_dot" state="0"> - <bounds x="393" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix34" element="dmd_dot" state="0"> - <bounds x="397" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix35" element="dmd_dot" state="0"> - <bounds x="401" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix36" element="dmd_dot" state="0"> - <bounds x="405" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix37" element="dmd_dot" state="0"> - <bounds x="409" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix38" element="dmd_dot" state="0"> - <bounds x="413" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix39" element="dmd_dot" state="0"> - <bounds x="417" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix40" element="dmd_dot" state="0"> - <bounds x="421" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix41" element="dmd_dot" state="0"> - <bounds x="425" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix42" element="dmd_dot" state="0"> - <bounds x="429" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix43" element="dmd_dot" state="0"> - <bounds x="433" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix44" element="dmd_dot" state="0"> - <bounds x="437" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix45" element="dmd_dot" state="0"> - <bounds x="441" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix46" element="dmd_dot" state="0"> - <bounds x="445" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix47" element="dmd_dot" state="0"> - <bounds x="449" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix48" element="dmd_dot" state="0"> - <bounds x="453" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix49" element="dmd_dot" state="0"> - <bounds x="457" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix50" element="dmd_dot" state="0"> - <bounds x="461" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix51" element="dmd_dot" state="0"> - <bounds x="465" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix52" element="dmd_dot" state="0"> - <bounds x="469" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix53" element="dmd_dot" state="0"> - <bounds x="473" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix54" element="dmd_dot" state="0"> - <bounds x="477" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix55" element="dmd_dot" state="0"> - <bounds x="481" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix56" element="dmd_dot" state="0"> - <bounds x="485" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix57" element="dmd_dot" state="0"> - <bounds x="489" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix58" element="dmd_dot" state="0"> - <bounds x="493" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix59" element="dmd_dot" state="0"> - <bounds x="497" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix60" element="dmd_dot" state="0"> - <bounds x="501" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix61" element="dmd_dot" state="0"> - <bounds x="505" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix62" element="dmd_dot" state="0"> - <bounds x="509" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix63" element="dmd_dot" state="0"> - <bounds x="513" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix64" element="dmd_dot" state="0"> - <bounds x="517" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix65" element="dmd_dot" state="0"> - <bounds x="261" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix66" element="dmd_dot" state="0"> - <bounds x="265" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix67" element="dmd_dot" state="0"> - <bounds x="269" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix68" element="dmd_dot" state="0"> - <bounds x="273" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix69" element="dmd_dot" state="0"> - <bounds x="277" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix70" element="dmd_dot" state="0"> - <bounds x="281" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix71" element="dmd_dot" state="0"> - <bounds x="285" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix72" element="dmd_dot" state="0"> - <bounds x="289" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix73" element="dmd_dot" state="0"> - <bounds x="293" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix74" element="dmd_dot" state="0"> - <bounds x="297" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix75" element="dmd_dot" state="0"> - <bounds x="301" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix76" element="dmd_dot" state="0"> - <bounds x="305" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix77" element="dmd_dot" state="0"> - <bounds x="309" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix78" element="dmd_dot" state="0"> - <bounds x="313" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix79" element="dmd_dot" state="0"> - <bounds x="317" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix80" element="dmd_dot" state="0"> - <bounds x="321" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix81" element="dmd_dot" state="0"> - <bounds x="325" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix82" element="dmd_dot" state="0"> - <bounds x="329" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix83" element="dmd_dot" state="0"> - <bounds x="333" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix84" element="dmd_dot" state="0"> - <bounds x="337" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix85" element="dmd_dot" state="0"> - <bounds x="341" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix86" element="dmd_dot" state="0"> - <bounds x="345" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix87" element="dmd_dot" state="0"> - <bounds x="349" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix88" element="dmd_dot" state="0"> - <bounds x="353" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix89" element="dmd_dot" state="0"> - <bounds x="357" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix90" element="dmd_dot" state="0"> - <bounds x="361" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix91" element="dmd_dot" state="0"> - <bounds x="365" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix92" element="dmd_dot" state="0"> - <bounds x="369" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix93" element="dmd_dot" state="0"> - <bounds x="373" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix94" element="dmd_dot" state="0"> - <bounds x="377" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix95" element="dmd_dot" state="0"> - <bounds x="381" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix96" element="dmd_dot" state="0"> - <bounds x="385" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix97" element="dmd_dot" state="0"> - <bounds x="389" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix98" element="dmd_dot" state="0"> - <bounds x="393" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix99" element="dmd_dot" state="0"> - <bounds x="397" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix100" element="dmd_dot" state="0"> - <bounds x="401" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix101" element="dmd_dot" state="0"> - <bounds x="405" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix102" element="dmd_dot" state="0"> - <bounds x="409" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix103" element="dmd_dot" state="0"> - <bounds x="413" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix104" element="dmd_dot" state="0"> - <bounds x="417" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix105" element="dmd_dot" state="0"> - <bounds x="421" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix106" element="dmd_dot" state="0"> - <bounds x="425" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix107" element="dmd_dot" state="0"> - <bounds x="429" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix108" element="dmd_dot" state="0"> - <bounds x="433" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix109" element="dmd_dot" state="0"> - <bounds x="437" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix110" element="dmd_dot" state="0"> - <bounds x="441" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix111" element="dmd_dot" state="0"> - <bounds x="445" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix112" element="dmd_dot" state="0"> - <bounds x="449" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix113" element="dmd_dot" state="0"> - <bounds x="453" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix114" element="dmd_dot" state="0"> - <bounds x="457" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix115" element="dmd_dot" state="0"> - <bounds x="461" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix116" element="dmd_dot" state="0"> - <bounds x="465" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix117" element="dmd_dot" state="0"> - <bounds x="469" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix118" element="dmd_dot" state="0"> - <bounds x="473" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix119" element="dmd_dot" state="0"> - <bounds x="477" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix120" element="dmd_dot" state="0"> - <bounds x="481" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix121" element="dmd_dot" state="0"> - <bounds x="485" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix122" element="dmd_dot" state="0"> - <bounds x="489" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix123" element="dmd_dot" state="0"> - <bounds x="493" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix124" element="dmd_dot" state="0"> - <bounds x="497" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix125" element="dmd_dot" state="0"> - <bounds x="501" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix126" element="dmd_dot" state="0"> - <bounds x="505" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix127" element="dmd_dot" state="0"> - <bounds x="509" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix128" element="dmd_dot" state="0"> - <bounds x="513" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix129" element="dmd_dot" state="0"> - <bounds x="517" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix130" element="dmd_dot" state="0"> - <bounds x="261" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix131" element="dmd_dot" state="0"> - <bounds x="265" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix132" element="dmd_dot" state="0"> - <bounds x="269" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix133" element="dmd_dot" state="0"> - <bounds x="273" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix134" element="dmd_dot" state="0"> - <bounds x="277" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix135" element="dmd_dot" state="0"> - <bounds x="281" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix136" element="dmd_dot" state="0"> - <bounds x="285" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix137" element="dmd_dot" state="0"> - <bounds x="289" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix138" element="dmd_dot" state="0"> - <bounds x="293" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix139" element="dmd_dot" state="0"> - <bounds x="297" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix140" element="dmd_dot" state="0"> - <bounds x="301" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix141" element="dmd_dot" state="0"> - <bounds x="305" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix142" element="dmd_dot" state="0"> - <bounds x="309" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix143" element="dmd_dot" state="0"> - <bounds x="313" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix144" element="dmd_dot" state="0"> - <bounds x="317" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix145" element="dmd_dot" state="0"> - <bounds x="321" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix146" element="dmd_dot" state="0"> - <bounds x="325" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix147" element="dmd_dot" state="0"> - <bounds x="329" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix148" element="dmd_dot" state="0"> - <bounds x="333" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix149" element="dmd_dot" state="0"> - <bounds x="337" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix150" element="dmd_dot" state="0"> - <bounds x="341" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix151" element="dmd_dot" state="0"> - <bounds x="345" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix152" element="dmd_dot" state="0"> - <bounds x="349" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix153" element="dmd_dot" state="0"> - <bounds x="353" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix154" element="dmd_dot" state="0"> - <bounds x="357" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix155" element="dmd_dot" state="0"> - <bounds x="361" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix156" element="dmd_dot" state="0"> - <bounds x="365" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix157" element="dmd_dot" state="0"> - <bounds x="369" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix158" element="dmd_dot" state="0"> - <bounds x="373" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix159" element="dmd_dot" state="0"> - <bounds x="377" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix160" element="dmd_dot" state="0"> - <bounds x="381" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix161" element="dmd_dot" state="0"> - <bounds x="385" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix162" element="dmd_dot" state="0"> - <bounds x="389" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix163" element="dmd_dot" state="0"> - <bounds x="393" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix164" element="dmd_dot" state="0"> - <bounds x="397" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix165" element="dmd_dot" state="0"> - <bounds x="401" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix166" element="dmd_dot" state="0"> - <bounds x="405" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix167" element="dmd_dot" state="0"> - <bounds x="409" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix168" element="dmd_dot" state="0"> - <bounds x="413" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix169" element="dmd_dot" state="0"> - <bounds x="417" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix170" element="dmd_dot" state="0"> - <bounds x="421" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix171" element="dmd_dot" state="0"> - <bounds x="425" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix172" element="dmd_dot" state="0"> - <bounds x="429" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix173" element="dmd_dot" state="0"> - <bounds x="433" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix174" element="dmd_dot" state="0"> - <bounds x="437" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix175" element="dmd_dot" state="0"> - <bounds x="441" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix176" element="dmd_dot" state="0"> - <bounds x="445" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix177" element="dmd_dot" state="0"> - <bounds x="449" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix178" element="dmd_dot" state="0"> - <bounds x="453" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix179" element="dmd_dot" state="0"> - <bounds x="457" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix180" element="dmd_dot" state="0"> - <bounds x="461" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix181" element="dmd_dot" state="0"> - <bounds x="465" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix182" element="dmd_dot" state="0"> - <bounds x="469" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix183" element="dmd_dot" state="0"> - <bounds x="473" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix184" element="dmd_dot" state="0"> - <bounds x="477" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix185" element="dmd_dot" state="0"> - <bounds x="481" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix186" element="dmd_dot" state="0"> - <bounds x="485" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix187" element="dmd_dot" state="0"> - <bounds x="489" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix188" element="dmd_dot" state="0"> - <bounds x="493" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix189" element="dmd_dot" state="0"> - <bounds x="497" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix190" element="dmd_dot" state="0"> - <bounds x="501" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix191" element="dmd_dot" state="0"> - <bounds x="505" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix192" element="dmd_dot" state="0"> - <bounds x="509" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix193" element="dmd_dot" state="0"> - <bounds x="513" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix194" element="dmd_dot" state="0"> - <bounds x="517" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix195" element="dmd_dot" state="0"> - <bounds x="261" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix196" element="dmd_dot" state="0"> - <bounds x="265" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix197" element="dmd_dot" state="0"> - <bounds x="269" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix198" element="dmd_dot" state="0"> - <bounds x="273" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix199" element="dmd_dot" state="0"> - <bounds x="277" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix200" element="dmd_dot" state="0"> - <bounds x="281" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix201" element="dmd_dot" state="0"> - <bounds x="285" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix202" element="dmd_dot" state="0"> - <bounds x="289" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix203" element="dmd_dot" state="0"> - <bounds x="293" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix204" element="dmd_dot" state="0"> - <bounds x="297" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix205" element="dmd_dot" state="0"> - <bounds x="301" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix206" element="dmd_dot" state="0"> - <bounds x="305" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix207" element="dmd_dot" state="0"> - <bounds x="309" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix208" element="dmd_dot" state="0"> - <bounds x="313" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix209" element="dmd_dot" state="0"> - <bounds x="317" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix210" element="dmd_dot" state="0"> - <bounds x="321" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix211" element="dmd_dot" state="0"> - <bounds x="325" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix212" element="dmd_dot" state="0"> - <bounds x="329" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix213" element="dmd_dot" state="0"> - <bounds x="333" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix214" element="dmd_dot" state="0"> - <bounds x="337" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix215" element="dmd_dot" state="0"> - <bounds x="341" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix216" element="dmd_dot" state="0"> - <bounds x="345" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix217" element="dmd_dot" state="0"> - <bounds x="349" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix218" element="dmd_dot" state="0"> - <bounds x="353" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix219" element="dmd_dot" state="0"> - <bounds x="357" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix220" element="dmd_dot" state="0"> - <bounds x="361" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix221" element="dmd_dot" state="0"> - <bounds x="365" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix222" element="dmd_dot" state="0"> - <bounds x="369" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix223" element="dmd_dot" state="0"> - <bounds x="373" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix224" element="dmd_dot" state="0"> - <bounds x="377" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix225" element="dmd_dot" state="0"> - <bounds x="381" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix226" element="dmd_dot" state="0"> - <bounds x="385" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix227" element="dmd_dot" state="0"> - <bounds x="389" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix228" element="dmd_dot" state="0"> - <bounds x="393" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix229" element="dmd_dot" state="0"> - <bounds x="397" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix230" element="dmd_dot" state="0"> - <bounds x="401" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix231" element="dmd_dot" state="0"> - <bounds x="405" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix232" element="dmd_dot" state="0"> - <bounds x="409" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix233" element="dmd_dot" state="0"> - <bounds x="413" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix234" element="dmd_dot" state="0"> - <bounds x="417" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix235" element="dmd_dot" state="0"> - <bounds x="421" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix236" element="dmd_dot" state="0"> - <bounds x="425" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix237" element="dmd_dot" state="0"> - <bounds x="429" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix238" element="dmd_dot" state="0"> - <bounds x="433" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix239" element="dmd_dot" state="0"> - <bounds x="437" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix240" element="dmd_dot" state="0"> - <bounds x="441" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix241" element="dmd_dot" state="0"> - <bounds x="445" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix242" element="dmd_dot" state="0"> - <bounds x="449" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix243" element="dmd_dot" state="0"> - <bounds x="453" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix244" element="dmd_dot" state="0"> - <bounds x="457" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix245" element="dmd_dot" state="0"> - <bounds x="461" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix246" element="dmd_dot" state="0"> - <bounds x="465" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix247" element="dmd_dot" state="0"> - <bounds x="469" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix248" element="dmd_dot" state="0"> - <bounds x="473" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix249" element="dmd_dot" state="0"> - <bounds x="477" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix250" element="dmd_dot" state="0"> - <bounds x="481" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix251" element="dmd_dot" state="0"> - <bounds x="485" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix252" element="dmd_dot" state="0"> - <bounds x="489" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix253" element="dmd_dot" state="0"> - <bounds x="493" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix254" element="dmd_dot" state="0"> - <bounds x="497" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix255" element="dmd_dot" state="0"> - <bounds x="501" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix256" element="dmd_dot" state="0"> - <bounds x="505" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix257" element="dmd_dot" state="0"> - <bounds x="509" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix258" element="dmd_dot" state="0"> - <bounds x="513" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix259" element="dmd_dot" state="0"> - <bounds x="517" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix260" element="dmd_dot" state="0"> - <bounds x="261" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix261" element="dmd_dot" state="0"> - <bounds x="265" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix262" element="dmd_dot" state="0"> - <bounds x="269" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix263" element="dmd_dot" state="0"> - <bounds x="273" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix264" element="dmd_dot" state="0"> - <bounds x="277" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix265" element="dmd_dot" state="0"> - <bounds x="281" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix266" element="dmd_dot" state="0"> - <bounds x="285" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix267" element="dmd_dot" state="0"> - <bounds x="289" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix268" element="dmd_dot" state="0"> - <bounds x="293" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix269" element="dmd_dot" state="0"> - <bounds x="297" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix270" element="dmd_dot" state="0"> - <bounds x="301" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix271" element="dmd_dot" state="0"> - <bounds x="305" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix272" element="dmd_dot" state="0"> - <bounds x="309" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix273" element="dmd_dot" state="0"> - <bounds x="313" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix274" element="dmd_dot" state="0"> - <bounds x="317" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix275" element="dmd_dot" state="0"> - <bounds x="321" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix276" element="dmd_dot" state="0"> - <bounds x="325" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix277" element="dmd_dot" state="0"> - <bounds x="329" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix278" element="dmd_dot" state="0"> - <bounds x="333" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix279" element="dmd_dot" state="0"> - <bounds x="337" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix280" element="dmd_dot" state="0"> - <bounds x="341" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix281" element="dmd_dot" state="0"> - <bounds x="345" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix282" element="dmd_dot" state="0"> - <bounds x="349" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix283" element="dmd_dot" state="0"> - <bounds x="353" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix284" element="dmd_dot" state="0"> - <bounds x="357" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix285" element="dmd_dot" state="0"> - <bounds x="361" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix286" element="dmd_dot" state="0"> - <bounds x="365" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix287" element="dmd_dot" state="0"> - <bounds x="369" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix288" element="dmd_dot" state="0"> - <bounds x="373" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix289" element="dmd_dot" state="0"> - <bounds x="377" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix290" element="dmd_dot" state="0"> - <bounds x="381" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix291" element="dmd_dot" state="0"> - <bounds x="385" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix292" element="dmd_dot" state="0"> - <bounds x="389" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix293" element="dmd_dot" state="0"> - <bounds x="393" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix294" element="dmd_dot" state="0"> - <bounds x="397" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix295" element="dmd_dot" state="0"> - <bounds x="401" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix296" element="dmd_dot" state="0"> - <bounds x="405" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix297" element="dmd_dot" state="0"> - <bounds x="409" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix298" element="dmd_dot" state="0"> - <bounds x="413" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix299" element="dmd_dot" state="0"> - <bounds x="417" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix300" element="dmd_dot" state="0"> - <bounds x="421" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix301" element="dmd_dot" state="0"> - <bounds x="425" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix302" element="dmd_dot" state="0"> - <bounds x="429" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix303" element="dmd_dot" state="0"> - <bounds x="433" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix304" element="dmd_dot" state="0"> - <bounds x="437" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix305" element="dmd_dot" state="0"> - <bounds x="441" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix306" element="dmd_dot" state="0"> - <bounds x="445" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix307" element="dmd_dot" state="0"> - <bounds x="449" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix308" element="dmd_dot" state="0"> - <bounds x="453" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix309" element="dmd_dot" state="0"> - <bounds x="457" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix310" element="dmd_dot" state="0"> - <bounds x="461" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix311" element="dmd_dot" state="0"> - <bounds x="465" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix312" element="dmd_dot" state="0"> - <bounds x="469" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix313" element="dmd_dot" state="0"> - <bounds x="473" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix314" element="dmd_dot" state="0"> - <bounds x="477" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix315" element="dmd_dot" state="0"> - <bounds x="481" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix316" element="dmd_dot" state="0"> - <bounds x="485" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix317" element="dmd_dot" state="0"> - <bounds x="489" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix318" element="dmd_dot" state="0"> - <bounds x="493" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix319" element="dmd_dot" state="0"> - <bounds x="497" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix320" element="dmd_dot" state="0"> - <bounds x="501" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix321" element="dmd_dot" state="0"> - <bounds x="505" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix322" element="dmd_dot" state="0"> - <bounds x="509" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix323" element="dmd_dot" state="0"> - <bounds x="513" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix324" element="dmd_dot" state="0"> - <bounds x="517" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix325" element="dmd_dot" state="0"> - <bounds x="261" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix326" element="dmd_dot" state="0"> - <bounds x="265" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix327" element="dmd_dot" state="0"> - <bounds x="269" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix328" element="dmd_dot" state="0"> - <bounds x="273" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix329" element="dmd_dot" state="0"> - <bounds x="277" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix330" element="dmd_dot" state="0"> - <bounds x="281" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix331" element="dmd_dot" state="0"> - <bounds x="285" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix332" element="dmd_dot" state="0"> - <bounds x="289" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix333" element="dmd_dot" state="0"> - <bounds x="293" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix334" element="dmd_dot" state="0"> - <bounds x="297" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix335" element="dmd_dot" state="0"> - <bounds x="301" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix336" element="dmd_dot" state="0"> - <bounds x="305" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix337" element="dmd_dot" state="0"> - <bounds x="309" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix338" element="dmd_dot" state="0"> - <bounds x="313" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix339" element="dmd_dot" state="0"> - <bounds x="317" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix340" element="dmd_dot" state="0"> - <bounds x="321" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix341" element="dmd_dot" state="0"> - <bounds x="325" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix342" element="dmd_dot" state="0"> - <bounds x="329" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix343" element="dmd_dot" state="0"> - <bounds x="333" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix344" element="dmd_dot" state="0"> - <bounds x="337" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix345" element="dmd_dot" state="0"> - <bounds x="341" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix346" element="dmd_dot" state="0"> - <bounds x="345" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix347" element="dmd_dot" state="0"> - <bounds x="349" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix348" element="dmd_dot" state="0"> - <bounds x="353" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix349" element="dmd_dot" state="0"> - <bounds x="357" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix350" element="dmd_dot" state="0"> - <bounds x="361" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix351" element="dmd_dot" state="0"> - <bounds x="365" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix352" element="dmd_dot" state="0"> - <bounds x="369" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix353" element="dmd_dot" state="0"> - <bounds x="373" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix354" element="dmd_dot" state="0"> - <bounds x="377" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix355" element="dmd_dot" state="0"> - <bounds x="381" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix356" element="dmd_dot" state="0"> - <bounds x="385" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix357" element="dmd_dot" state="0"> - <bounds x="389" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix358" element="dmd_dot" state="0"> - <bounds x="393" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix359" element="dmd_dot" state="0"> - <bounds x="397" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix360" element="dmd_dot" state="0"> - <bounds x="401" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix361" element="dmd_dot" state="0"> - <bounds x="405" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix362" element="dmd_dot" state="0"> - <bounds x="409" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix363" element="dmd_dot" state="0"> - <bounds x="413" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix364" element="dmd_dot" state="0"> - <bounds x="417" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix365" element="dmd_dot" state="0"> - <bounds x="421" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix366" element="dmd_dot" state="0"> - <bounds x="425" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix367" element="dmd_dot" state="0"> - <bounds x="429" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix368" element="dmd_dot" state="0"> - <bounds x="433" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix369" element="dmd_dot" state="0"> - <bounds x="437" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix370" element="dmd_dot" state="0"> - <bounds x="441" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix371" element="dmd_dot" state="0"> - <bounds x="445" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix372" element="dmd_dot" state="0"> - <bounds x="449" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix373" element="dmd_dot" state="0"> - <bounds x="453" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix374" element="dmd_dot" state="0"> - <bounds x="457" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix375" element="dmd_dot" state="0"> - <bounds x="461" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix376" element="dmd_dot" state="0"> - <bounds x="465" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix377" element="dmd_dot" state="0"> - <bounds x="469" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix378" element="dmd_dot" state="0"> - <bounds x="473" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix379" element="dmd_dot" state="0"> - <bounds x="477" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix380" element="dmd_dot" state="0"> - <bounds x="481" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix381" element="dmd_dot" state="0"> - <bounds x="485" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix382" element="dmd_dot" state="0"> - <bounds x="489" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix383" element="dmd_dot" state="0"> - <bounds x="493" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix384" element="dmd_dot" state="0"> - <bounds x="497" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix385" element="dmd_dot" state="0"> - <bounds x="501" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix386" element="dmd_dot" state="0"> - <bounds x="505" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix387" element="dmd_dot" state="0"> - <bounds x="509" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix388" element="dmd_dot" state="0"> - <bounds x="513" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix389" element="dmd_dot" state="0"> - <bounds x="517" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix390" element="dmd_dot" state="0"> - <bounds x="261" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix391" element="dmd_dot" state="0"> - <bounds x="265" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix392" element="dmd_dot" state="0"> - <bounds x="269" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix393" element="dmd_dot" state="0"> - <bounds x="273" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix394" element="dmd_dot" state="0"> - <bounds x="277" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix395" element="dmd_dot" state="0"> - <bounds x="281" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix396" element="dmd_dot" state="0"> - <bounds x="285" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix397" element="dmd_dot" state="0"> - <bounds x="289" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix398" element="dmd_dot" state="0"> - <bounds x="293" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix399" element="dmd_dot" state="0"> - <bounds x="297" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix400" element="dmd_dot" state="0"> - <bounds x="301" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix401" element="dmd_dot" state="0"> - <bounds x="305" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix402" element="dmd_dot" state="0"> - <bounds x="309" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix403" element="dmd_dot" state="0"> - <bounds x="313" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix404" element="dmd_dot" state="0"> - <bounds x="317" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix405" element="dmd_dot" state="0"> - <bounds x="321" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix406" element="dmd_dot" state="0"> - <bounds x="325" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix407" element="dmd_dot" state="0"> - <bounds x="329" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix408" element="dmd_dot" state="0"> - <bounds x="333" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix409" element="dmd_dot" state="0"> - <bounds x="337" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix410" element="dmd_dot" state="0"> - <bounds x="341" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix411" element="dmd_dot" state="0"> - <bounds x="345" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix412" element="dmd_dot" state="0"> - <bounds x="349" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix413" element="dmd_dot" state="0"> - <bounds x="353" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix414" element="dmd_dot" state="0"> - <bounds x="357" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix415" element="dmd_dot" state="0"> - <bounds x="361" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix416" element="dmd_dot" state="0"> - <bounds x="365" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix417" element="dmd_dot" state="0"> - <bounds x="369" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix418" element="dmd_dot" state="0"> - <bounds x="373" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix419" element="dmd_dot" state="0"> - <bounds x="377" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix420" element="dmd_dot" state="0"> - <bounds x="381" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix421" element="dmd_dot" state="0"> - <bounds x="385" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix422" element="dmd_dot" state="0"> - <bounds x="389" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix423" element="dmd_dot" state="0"> - <bounds x="393" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix424" element="dmd_dot" state="0"> - <bounds x="397" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix425" element="dmd_dot" state="0"> - <bounds x="401" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix426" element="dmd_dot" state="0"> - <bounds x="405" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix427" element="dmd_dot" state="0"> - <bounds x="409" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix428" element="dmd_dot" state="0"> - <bounds x="413" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix429" element="dmd_dot" state="0"> - <bounds x="417" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix430" element="dmd_dot" state="0"> - <bounds x="421" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix431" element="dmd_dot" state="0"> - <bounds x="425" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix432" element="dmd_dot" state="0"> - <bounds x="429" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix433" element="dmd_dot" state="0"> - <bounds x="433" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix434" element="dmd_dot" state="0"> - <bounds x="437" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix435" element="dmd_dot" state="0"> - <bounds x="441" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix436" element="dmd_dot" state="0"> - <bounds x="445" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix437" element="dmd_dot" state="0"> - <bounds x="449" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix438" element="dmd_dot" state="0"> - <bounds x="453" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix439" element="dmd_dot" state="0"> - <bounds x="457" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix440" element="dmd_dot" state="0"> - <bounds x="461" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix441" element="dmd_dot" state="0"> - <bounds x="465" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix442" element="dmd_dot" state="0"> - <bounds x="469" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix443" element="dmd_dot" state="0"> - <bounds x="473" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix444" element="dmd_dot" state="0"> - <bounds x="477" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix445" element="dmd_dot" state="0"> - <bounds x="481" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix446" element="dmd_dot" state="0"> - <bounds x="485" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix447" element="dmd_dot" state="0"> - <bounds x="489" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix448" element="dmd_dot" state="0"> - <bounds x="493" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix449" element="dmd_dot" state="0"> - <bounds x="497" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix450" element="dmd_dot" state="0"> - <bounds x="501" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix451" element="dmd_dot" state="0"> - <bounds x="505" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix452" element="dmd_dot" state="0"> - <bounds x="509" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix453" element="dmd_dot" state="0"> - <bounds x="513" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix454" element="dmd_dot" state="0"> - <bounds x="517" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix455" element="dmd_dot" state="0"> - <bounds x="261" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix456" element="dmd_dot" state="0"> - <bounds x="265" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix457" element="dmd_dot" state="0"> - <bounds x="269" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix458" element="dmd_dot" state="0"> - <bounds x="273" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix459" element="dmd_dot" state="0"> - <bounds x="277" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix460" element="dmd_dot" state="0"> - <bounds x="281" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix461" element="dmd_dot" state="0"> - <bounds x="285" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix462" element="dmd_dot" state="0"> - <bounds x="289" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix463" element="dmd_dot" state="0"> - <bounds x="293" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix464" element="dmd_dot" state="0"> - <bounds x="297" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix465" element="dmd_dot" state="0"> - <bounds x="301" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix466" element="dmd_dot" state="0"> - <bounds x="305" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix467" element="dmd_dot" state="0"> - <bounds x="309" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix468" element="dmd_dot" state="0"> - <bounds x="313" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix469" element="dmd_dot" state="0"> - <bounds x="317" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix470" element="dmd_dot" state="0"> - <bounds x="321" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix471" element="dmd_dot" state="0"> - <bounds x="325" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix472" element="dmd_dot" state="0"> - <bounds x="329" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix473" element="dmd_dot" state="0"> - <bounds x="333" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix474" element="dmd_dot" state="0"> - <bounds x="337" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix475" element="dmd_dot" state="0"> - <bounds x="341" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix476" element="dmd_dot" state="0"> - <bounds x="345" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix477" element="dmd_dot" state="0"> - <bounds x="349" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix478" element="dmd_dot" state="0"> - <bounds x="353" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix479" element="dmd_dot" state="0"> - <bounds x="357" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix480" element="dmd_dot" state="0"> - <bounds x="361" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix481" element="dmd_dot" state="0"> - <bounds x="365" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix482" element="dmd_dot" state="0"> - <bounds x="369" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix483" element="dmd_dot" state="0"> - <bounds x="373" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix484" element="dmd_dot" state="0"> - <bounds x="377" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix485" element="dmd_dot" state="0"> - <bounds x="381" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix486" element="dmd_dot" state="0"> - <bounds x="385" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix487" element="dmd_dot" state="0"> - <bounds x="389" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix488" element="dmd_dot" state="0"> - <bounds x="393" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix489" element="dmd_dot" state="0"> - <bounds x="397" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix490" element="dmd_dot" state="0"> - <bounds x="401" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix491" element="dmd_dot" state="0"> - <bounds x="405" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix492" element="dmd_dot" state="0"> - <bounds x="409" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix493" element="dmd_dot" state="0"> - <bounds x="413" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix494" element="dmd_dot" state="0"> - <bounds x="417" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix495" element="dmd_dot" state="0"> - <bounds x="421" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix496" element="dmd_dot" state="0"> - <bounds x="425" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix497" element="dmd_dot" state="0"> - <bounds x="429" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix498" element="dmd_dot" state="0"> - <bounds x="433" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix499" element="dmd_dot" state="0"> - <bounds x="437" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix500" element="dmd_dot" state="0"> - <bounds x="441" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix501" element="dmd_dot" state="0"> - <bounds x="445" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix502" element="dmd_dot" state="0"> - <bounds x="449" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix503" element="dmd_dot" state="0"> - <bounds x="453" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix504" element="dmd_dot" state="0"> - <bounds x="457" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix505" element="dmd_dot" state="0"> - <bounds x="461" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix506" element="dmd_dot" state="0"> - <bounds x="465" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix507" element="dmd_dot" state="0"> - <bounds x="469" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix508" element="dmd_dot" state="0"> - <bounds x="473" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix509" element="dmd_dot" state="0"> - <bounds x="477" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix510" element="dmd_dot" state="0"> - <bounds x="481" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix511" element="dmd_dot" state="0"> - <bounds x="485" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix512" element="dmd_dot" state="0"> - <bounds x="489" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix513" element="dmd_dot" state="0"> - <bounds x="493" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix514" element="dmd_dot" state="0"> - <bounds x="497" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix515" element="dmd_dot" state="0"> - <bounds x="501" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix516" element="dmd_dot" state="0"> - <bounds x="505" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix517" element="dmd_dot" state="0"> - <bounds x="509" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix518" element="dmd_dot" state="0"> - <bounds x="513" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix519" element="dmd_dot" state="0"> - <bounds x="517" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix520" element="dmd_dot" state="0"> - <bounds x="261" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix521" element="dmd_dot" state="0"> - <bounds x="265" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix522" element="dmd_dot" state="0"> - <bounds x="269" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix523" element="dmd_dot" state="0"> - <bounds x="273" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix524" element="dmd_dot" state="0"> - <bounds x="277" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix525" element="dmd_dot" state="0"> - <bounds x="281" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix526" element="dmd_dot" state="0"> - <bounds x="285" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix527" element="dmd_dot" state="0"> - <bounds x="289" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix528" element="dmd_dot" state="0"> - <bounds x="293" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix529" element="dmd_dot" state="0"> - <bounds x="297" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix530" element="dmd_dot" state="0"> - <bounds x="301" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix531" element="dmd_dot" state="0"> - <bounds x="305" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix532" element="dmd_dot" state="0"> - <bounds x="309" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix533" element="dmd_dot" state="0"> - <bounds x="313" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix534" element="dmd_dot" state="0"> - <bounds x="317" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix535" element="dmd_dot" state="0"> - <bounds x="321" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix536" element="dmd_dot" state="0"> - <bounds x="325" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix537" element="dmd_dot" state="0"> - <bounds x="329" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix538" element="dmd_dot" state="0"> - <bounds x="333" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix539" element="dmd_dot" state="0"> - <bounds x="337" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix540" element="dmd_dot" state="0"> - <bounds x="341" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix541" element="dmd_dot" state="0"> - <bounds x="345" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix542" element="dmd_dot" state="0"> - <bounds x="349" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix543" element="dmd_dot" state="0"> - <bounds x="353" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix544" element="dmd_dot" state="0"> - <bounds x="357" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix545" element="dmd_dot" state="0"> - <bounds x="361" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix546" element="dmd_dot" state="0"> - <bounds x="365" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix547" element="dmd_dot" state="0"> - <bounds x="369" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix548" element="dmd_dot" state="0"> - <bounds x="373" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix549" element="dmd_dot" state="0"> - <bounds x="377" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix550" element="dmd_dot" state="0"> - <bounds x="381" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix551" element="dmd_dot" state="0"> - <bounds x="385" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix552" element="dmd_dot" state="0"> - <bounds x="389" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix553" element="dmd_dot" state="0"> - <bounds x="393" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix554" element="dmd_dot" state="0"> - <bounds x="397" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix555" element="dmd_dot" state="0"> - <bounds x="401" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix556" element="dmd_dot" state="0"> - <bounds x="405" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix557" element="dmd_dot" state="0"> - <bounds x="409" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix558" element="dmd_dot" state="0"> - <bounds x="413" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix559" element="dmd_dot" state="0"> - <bounds x="417" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix560" element="dmd_dot" state="0"> - <bounds x="421" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix561" element="dmd_dot" state="0"> - <bounds x="425" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix562" element="dmd_dot" state="0"> - <bounds x="429" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix563" element="dmd_dot" state="0"> - <bounds x="433" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix564" element="dmd_dot" state="0"> - <bounds x="437" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix565" element="dmd_dot" state="0"> - <bounds x="441" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix566" element="dmd_dot" state="0"> - <bounds x="445" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix567" element="dmd_dot" state="0"> - <bounds x="449" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix568" element="dmd_dot" state="0"> - <bounds x="453" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix569" element="dmd_dot" state="0"> - <bounds x="457" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix570" element="dmd_dot" state="0"> - <bounds x="461" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix571" element="dmd_dot" state="0"> - <bounds x="465" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix572" element="dmd_dot" state="0"> - <bounds x="469" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix573" element="dmd_dot" state="0"> - <bounds x="473" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix574" element="dmd_dot" state="0"> - <bounds x="477" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix575" element="dmd_dot" state="0"> - <bounds x="481" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix576" element="dmd_dot" state="0"> - <bounds x="485" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix577" element="dmd_dot" state="0"> - <bounds x="489" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix578" element="dmd_dot" state="0"> - <bounds x="493" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix579" element="dmd_dot" state="0"> - <bounds x="497" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix580" element="dmd_dot" state="0"> - <bounds x="501" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix581" element="dmd_dot" state="0"> - <bounds x="505" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix582" element="dmd_dot" state="0"> - <bounds x="509" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix583" element="dmd_dot" state="0"> - <bounds x="513" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix584" element="dmd_dot" state="0"> - <bounds x="517" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix585" element="dmd_dot" state="0"> - <bounds x="261" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix586" element="dmd_dot" state="0"> - <bounds x="265" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix587" element="dmd_dot" state="0"> - <bounds x="269" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix588" element="dmd_dot" state="0"> - <bounds x="273" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix589" element="dmd_dot" state="0"> - <bounds x="277" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix590" element="dmd_dot" state="0"> - <bounds x="281" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix591" element="dmd_dot" state="0"> - <bounds x="285" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix592" element="dmd_dot" state="0"> - <bounds x="289" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix593" element="dmd_dot" state="0"> - <bounds x="293" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix594" element="dmd_dot" state="0"> - <bounds x="297" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix595" element="dmd_dot" state="0"> - <bounds x="301" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix596" element="dmd_dot" state="0"> - <bounds x="305" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix597" element="dmd_dot" state="0"> - <bounds x="309" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix598" element="dmd_dot" state="0"> - <bounds x="313" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix599" element="dmd_dot" state="0"> - <bounds x="317" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix600" element="dmd_dot" state="0"> - <bounds x="321" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix601" element="dmd_dot" state="0"> - <bounds x="325" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix602" element="dmd_dot" state="0"> - <bounds x="329" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix603" element="dmd_dot" state="0"> - <bounds x="333" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix604" element="dmd_dot" state="0"> - <bounds x="337" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix605" element="dmd_dot" state="0"> - <bounds x="341" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix606" element="dmd_dot" state="0"> - <bounds x="345" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix607" element="dmd_dot" state="0"> - <bounds x="349" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix608" element="dmd_dot" state="0"> - <bounds x="353" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix609" element="dmd_dot" state="0"> - <bounds x="357" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix610" element="dmd_dot" state="0"> - <bounds x="361" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix611" element="dmd_dot" state="0"> - <bounds x="365" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix612" element="dmd_dot" state="0"> - <bounds x="369" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix613" element="dmd_dot" state="0"> - <bounds x="373" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix614" element="dmd_dot" state="0"> - <bounds x="377" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix615" element="dmd_dot" state="0"> - <bounds x="381" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix616" element="dmd_dot" state="0"> - <bounds x="385" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix617" element="dmd_dot" state="0"> - <bounds x="389" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix618" element="dmd_dot" state="0"> - <bounds x="393" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix619" element="dmd_dot" state="0"> - <bounds x="397" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix620" element="dmd_dot" state="0"> - <bounds x="401" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix621" element="dmd_dot" state="0"> - <bounds x="405" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix622" element="dmd_dot" state="0"> - <bounds x="409" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix623" element="dmd_dot" state="0"> - <bounds x="413" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix624" element="dmd_dot" state="0"> - <bounds x="417" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix625" element="dmd_dot" state="0"> - <bounds x="421" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix626" element="dmd_dot" state="0"> - <bounds x="425" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix627" element="dmd_dot" state="0"> - <bounds x="429" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix628" element="dmd_dot" state="0"> - <bounds x="433" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix629" element="dmd_dot" state="0"> - <bounds x="437" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix630" element="dmd_dot" state="0"> - <bounds x="441" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix631" element="dmd_dot" state="0"> - <bounds x="445" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix632" element="dmd_dot" state="0"> - <bounds x="449" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix633" element="dmd_dot" state="0"> - <bounds x="453" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix634" element="dmd_dot" state="0"> - <bounds x="457" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix635" element="dmd_dot" state="0"> - <bounds x="461" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix636" element="dmd_dot" state="0"> - <bounds x="465" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix637" element="dmd_dot" state="0"> - <bounds x="469" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix638" element="dmd_dot" state="0"> - <bounds x="473" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix639" element="dmd_dot" state="0"> - <bounds x="477" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix640" element="dmd_dot" state="0"> - <bounds x="481" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix641" element="dmd_dot" state="0"> - <bounds x="485" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix642" element="dmd_dot" state="0"> - <bounds x="489" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix643" element="dmd_dot" state="0"> - <bounds x="493" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix644" element="dmd_dot" state="0"> - <bounds x="497" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix645" element="dmd_dot" state="0"> - <bounds x="501" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix646" element="dmd_dot" state="0"> - <bounds x="505" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix647" element="dmd_dot" state="0"> - <bounds x="509" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix648" element="dmd_dot" state="0"> - <bounds x="513" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix649" element="dmd_dot" state="0"> - <bounds x="517" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix650" element="dmd_dot" state="0"> - <bounds x="261" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix651" element="dmd_dot" state="0"> - <bounds x="265" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix652" element="dmd_dot" state="0"> - <bounds x="269" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix653" element="dmd_dot" state="0"> - <bounds x="273" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix654" element="dmd_dot" state="0"> - <bounds x="277" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix655" element="dmd_dot" state="0"> - <bounds x="281" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix656" element="dmd_dot" state="0"> - <bounds x="285" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix657" element="dmd_dot" state="0"> - <bounds x="289" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix658" element="dmd_dot" state="0"> - <bounds x="293" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix659" element="dmd_dot" state="0"> - <bounds x="297" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix660" element="dmd_dot" state="0"> - <bounds x="301" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix661" element="dmd_dot" state="0"> - <bounds x="305" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix662" element="dmd_dot" state="0"> - <bounds x="309" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix663" element="dmd_dot" state="0"> - <bounds x="313" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix664" element="dmd_dot" state="0"> - <bounds x="317" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix665" element="dmd_dot" state="0"> - <bounds x="321" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix666" element="dmd_dot" state="0"> - <bounds x="325" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix667" element="dmd_dot" state="0"> - <bounds x="329" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix668" element="dmd_dot" state="0"> - <bounds x="333" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix669" element="dmd_dot" state="0"> - <bounds x="337" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix670" element="dmd_dot" state="0"> - <bounds x="341" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix671" element="dmd_dot" state="0"> - <bounds x="345" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix672" element="dmd_dot" state="0"> - <bounds x="349" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix673" element="dmd_dot" state="0"> - <bounds x="353" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix674" element="dmd_dot" state="0"> - <bounds x="357" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix675" element="dmd_dot" state="0"> - <bounds x="361" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix676" element="dmd_dot" state="0"> - <bounds x="365" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix677" element="dmd_dot" state="0"> - <bounds x="369" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix678" element="dmd_dot" state="0"> - <bounds x="373" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix679" element="dmd_dot" state="0"> - <bounds x="377" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix680" element="dmd_dot" state="0"> - <bounds x="381" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix681" element="dmd_dot" state="0"> - <bounds x="385" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix682" element="dmd_dot" state="0"> - <bounds x="389" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix683" element="dmd_dot" state="0"> - <bounds x="393" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix684" element="dmd_dot" state="0"> - <bounds x="397" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix685" element="dmd_dot" state="0"> - <bounds x="401" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix686" element="dmd_dot" state="0"> - <bounds x="405" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix687" element="dmd_dot" state="0"> - <bounds x="409" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix688" element="dmd_dot" state="0"> - <bounds x="413" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix689" element="dmd_dot" state="0"> - <bounds x="417" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix690" element="dmd_dot" state="0"> - <bounds x="421" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix691" element="dmd_dot" state="0"> - <bounds x="425" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix692" element="dmd_dot" state="0"> - <bounds x="429" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix693" element="dmd_dot" state="0"> - <bounds x="433" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix694" element="dmd_dot" state="0"> - <bounds x="437" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix695" element="dmd_dot" state="0"> - <bounds x="441" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix696" element="dmd_dot" state="0"> - <bounds x="445" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix697" element="dmd_dot" state="0"> - <bounds x="449" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix698" element="dmd_dot" state="0"> - <bounds x="453" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix699" element="dmd_dot" state="0"> - <bounds x="457" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix700" element="dmd_dot" state="0"> - <bounds x="461" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix701" element="dmd_dot" state="0"> - <bounds x="465" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix702" element="dmd_dot" state="0"> - <bounds x="469" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix703" element="dmd_dot" state="0"> - <bounds x="473" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix704" element="dmd_dot" state="0"> - <bounds x="477" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix705" element="dmd_dot" state="0"> - <bounds x="481" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix706" element="dmd_dot" state="0"> - <bounds x="485" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix707" element="dmd_dot" state="0"> - <bounds x="489" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix708" element="dmd_dot" state="0"> - <bounds x="493" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix709" element="dmd_dot" state="0"> - <bounds x="497" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix710" element="dmd_dot" state="0"> - <bounds x="501" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix711" element="dmd_dot" state="0"> - <bounds x="505" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix712" element="dmd_dot" state="0"> - <bounds x="509" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix713" element="dmd_dot" state="0"> - <bounds x="513" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix714" element="dmd_dot" state="0"> - <bounds x="517" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix715" element="dmd_dot" state="0"> - <bounds x="261" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix716" element="dmd_dot" state="0"> - <bounds x="265" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix717" element="dmd_dot" state="0"> - <bounds x="269" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix718" element="dmd_dot" state="0"> - <bounds x="273" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix719" element="dmd_dot" state="0"> - <bounds x="277" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix720" element="dmd_dot" state="0"> - <bounds x="281" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix721" element="dmd_dot" state="0"> - <bounds x="285" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix722" element="dmd_dot" state="0"> - <bounds x="289" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix723" element="dmd_dot" state="0"> - <bounds x="293" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix724" element="dmd_dot" state="0"> - <bounds x="297" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix725" element="dmd_dot" state="0"> - <bounds x="301" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix726" element="dmd_dot" state="0"> - <bounds x="305" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix727" element="dmd_dot" state="0"> - <bounds x="309" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix728" element="dmd_dot" state="0"> - <bounds x="313" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix729" element="dmd_dot" state="0"> - <bounds x="317" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix730" element="dmd_dot" state="0"> - <bounds x="321" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix731" element="dmd_dot" state="0"> - <bounds x="325" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix732" element="dmd_dot" state="0"> - <bounds x="329" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix733" element="dmd_dot" state="0"> - <bounds x="333" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix734" element="dmd_dot" state="0"> - <bounds x="337" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix735" element="dmd_dot" state="0"> - <bounds x="341" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix736" element="dmd_dot" state="0"> - <bounds x="345" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix737" element="dmd_dot" state="0"> - <bounds x="349" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix738" element="dmd_dot" state="0"> - <bounds x="353" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix739" element="dmd_dot" state="0"> - <bounds x="357" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix740" element="dmd_dot" state="0"> - <bounds x="361" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix741" element="dmd_dot" state="0"> - <bounds x="365" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix742" element="dmd_dot" state="0"> - <bounds x="369" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix743" element="dmd_dot" state="0"> - <bounds x="373" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix744" element="dmd_dot" state="0"> - <bounds x="377" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix745" element="dmd_dot" state="0"> - <bounds x="381" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix746" element="dmd_dot" state="0"> - <bounds x="385" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix747" element="dmd_dot" state="0"> - <bounds x="389" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix748" element="dmd_dot" state="0"> - <bounds x="393" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix749" element="dmd_dot" state="0"> - <bounds x="397" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix750" element="dmd_dot" state="0"> - <bounds x="401" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix751" element="dmd_dot" state="0"> - <bounds x="405" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix752" element="dmd_dot" state="0"> - <bounds x="409" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix753" element="dmd_dot" state="0"> - <bounds x="413" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix754" element="dmd_dot" state="0"> - <bounds x="417" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix755" element="dmd_dot" state="0"> - <bounds x="421" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix756" element="dmd_dot" state="0"> - <bounds x="425" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix757" element="dmd_dot" state="0"> - <bounds x="429" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix758" element="dmd_dot" state="0"> - <bounds x="433" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix759" element="dmd_dot" state="0"> - <bounds x="437" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix760" element="dmd_dot" state="0"> - <bounds x="441" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix761" element="dmd_dot" state="0"> - <bounds x="445" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix762" element="dmd_dot" state="0"> - <bounds x="449" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix763" element="dmd_dot" state="0"> - <bounds x="453" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix764" element="dmd_dot" state="0"> - <bounds x="457" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix765" element="dmd_dot" state="0"> - <bounds x="461" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix766" element="dmd_dot" state="0"> - <bounds x="465" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix767" element="dmd_dot" state="0"> - <bounds x="469" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix768" element="dmd_dot" state="0"> - <bounds x="473" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix769" element="dmd_dot" state="0"> - <bounds x="477" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix770" element="dmd_dot" state="0"> - <bounds x="481" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix771" element="dmd_dot" state="0"> - <bounds x="485" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix772" element="dmd_dot" state="0"> - <bounds x="489" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix773" element="dmd_dot" state="0"> - <bounds x="493" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix774" element="dmd_dot" state="0"> - <bounds x="497" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix775" element="dmd_dot" state="0"> - <bounds x="501" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix776" element="dmd_dot" state="0"> - <bounds x="505" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix777" element="dmd_dot" state="0"> - <bounds x="509" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix778" element="dmd_dot" state="0"> - <bounds x="513" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix779" element="dmd_dot" state="0"> - <bounds x="517" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix780" element="dmd_dot" state="0"> - <bounds x="261" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix781" element="dmd_dot" state="0"> - <bounds x="265" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix782" element="dmd_dot" state="0"> - <bounds x="269" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix783" element="dmd_dot" state="0"> - <bounds x="273" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix784" element="dmd_dot" state="0"> - <bounds x="277" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix785" element="dmd_dot" state="0"> - <bounds x="281" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix786" element="dmd_dot" state="0"> - <bounds x="285" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix787" element="dmd_dot" state="0"> - <bounds x="289" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix788" element="dmd_dot" state="0"> - <bounds x="293" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix789" element="dmd_dot" state="0"> - <bounds x="297" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix790" element="dmd_dot" state="0"> - <bounds x="301" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix791" element="dmd_dot" state="0"> - <bounds x="305" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix792" element="dmd_dot" state="0"> - <bounds x="309" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix793" element="dmd_dot" state="0"> - <bounds x="313" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix794" element="dmd_dot" state="0"> - <bounds x="317" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix795" element="dmd_dot" state="0"> - <bounds x="321" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix796" element="dmd_dot" state="0"> - <bounds x="325" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix797" element="dmd_dot" state="0"> - <bounds x="329" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix798" element="dmd_dot" state="0"> - <bounds x="333" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix799" element="dmd_dot" state="0"> - <bounds x="337" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix800" element="dmd_dot" state="0"> - <bounds x="341" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix801" element="dmd_dot" state="0"> - <bounds x="345" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix802" element="dmd_dot" state="0"> - <bounds x="349" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix803" element="dmd_dot" state="0"> - <bounds x="353" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix804" element="dmd_dot" state="0"> - <bounds x="357" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix805" element="dmd_dot" state="0"> - <bounds x="361" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix806" element="dmd_dot" state="0"> - <bounds x="365" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix807" element="dmd_dot" state="0"> - <bounds x="369" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix808" element="dmd_dot" state="0"> - <bounds x="373" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix809" element="dmd_dot" state="0"> - <bounds x="377" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix810" element="dmd_dot" state="0"> - <bounds x="381" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix811" element="dmd_dot" state="0"> - <bounds x="385" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix812" element="dmd_dot" state="0"> - <bounds x="389" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix813" element="dmd_dot" state="0"> - <bounds x="393" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix814" element="dmd_dot" state="0"> - <bounds x="397" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix815" element="dmd_dot" state="0"> - <bounds x="401" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix816" element="dmd_dot" state="0"> - <bounds x="405" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix817" element="dmd_dot" state="0"> - <bounds x="409" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix818" element="dmd_dot" state="0"> - <bounds x="413" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix819" element="dmd_dot" state="0"> - <bounds x="417" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix820" element="dmd_dot" state="0"> - <bounds x="421" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix821" element="dmd_dot" state="0"> - <bounds x="425" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix822" element="dmd_dot" state="0"> - <bounds x="429" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix823" element="dmd_dot" state="0"> - <bounds x="433" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix824" element="dmd_dot" state="0"> - <bounds x="437" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix825" element="dmd_dot" state="0"> - <bounds x="441" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix826" element="dmd_dot" state="0"> - <bounds x="445" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix827" element="dmd_dot" state="0"> - <bounds x="449" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix828" element="dmd_dot" state="0"> - <bounds x="453" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix829" element="dmd_dot" state="0"> - <bounds x="457" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix830" element="dmd_dot" state="0"> - <bounds x="461" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix831" element="dmd_dot" state="0"> - <bounds x="465" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix832" element="dmd_dot" state="0"> - <bounds x="469" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix833" element="dmd_dot" state="0"> - <bounds x="473" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix834" element="dmd_dot" state="0"> - <bounds x="477" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix835" element="dmd_dot" state="0"> - <bounds x="481" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix836" element="dmd_dot" state="0"> - <bounds x="485" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix837" element="dmd_dot" state="0"> - <bounds x="489" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix838" element="dmd_dot" state="0"> - <bounds x="493" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix839" element="dmd_dot" state="0"> - <bounds x="497" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix840" element="dmd_dot" state="0"> - <bounds x="501" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix841" element="dmd_dot" state="0"> - <bounds x="505" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix842" element="dmd_dot" state="0"> - <bounds x="509" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix843" element="dmd_dot" state="0"> - <bounds x="513" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix844" element="dmd_dot" state="0"> - <bounds x="517" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix845" element="dmd_dot" state="0"> - <bounds x="261" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix846" element="dmd_dot" state="0"> - <bounds x="265" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix847" element="dmd_dot" state="0"> - <bounds x="269" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix848" element="dmd_dot" state="0"> - <bounds x="273" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix849" element="dmd_dot" state="0"> - <bounds x="277" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix850" element="dmd_dot" state="0"> - <bounds x="281" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix851" element="dmd_dot" state="0"> - <bounds x="285" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix852" element="dmd_dot" state="0"> - <bounds x="289" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix853" element="dmd_dot" state="0"> - <bounds x="293" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix854" element="dmd_dot" state="0"> - <bounds x="297" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix855" element="dmd_dot" state="0"> - <bounds x="301" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix856" element="dmd_dot" state="0"> - <bounds x="305" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix857" element="dmd_dot" state="0"> - <bounds x="309" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix858" element="dmd_dot" state="0"> - <bounds x="313" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix859" element="dmd_dot" state="0"> - <bounds x="317" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix860" element="dmd_dot" state="0"> - <bounds x="321" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix861" element="dmd_dot" state="0"> - <bounds x="325" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix862" element="dmd_dot" state="0"> - <bounds x="329" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix863" element="dmd_dot" state="0"> - <bounds x="333" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix864" element="dmd_dot" state="0"> - <bounds x="337" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix865" element="dmd_dot" state="0"> - <bounds x="341" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix866" element="dmd_dot" state="0"> - <bounds x="345" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix867" element="dmd_dot" state="0"> - <bounds x="349" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix868" element="dmd_dot" state="0"> - <bounds x="353" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix869" element="dmd_dot" state="0"> - <bounds x="357" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix870" element="dmd_dot" state="0"> - <bounds x="361" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix871" element="dmd_dot" state="0"> - <bounds x="365" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix872" element="dmd_dot" state="0"> - <bounds x="369" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix873" element="dmd_dot" state="0"> - <bounds x="373" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix874" element="dmd_dot" state="0"> - <bounds x="377" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix875" element="dmd_dot" state="0"> - <bounds x="381" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix876" element="dmd_dot" state="0"> - <bounds x="385" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix877" element="dmd_dot" state="0"> - <bounds x="389" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix878" element="dmd_dot" state="0"> - <bounds x="393" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix879" element="dmd_dot" state="0"> - <bounds x="397" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix880" element="dmd_dot" state="0"> - <bounds x="401" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix881" element="dmd_dot" state="0"> - <bounds x="405" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix882" element="dmd_dot" state="0"> - <bounds x="409" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix883" element="dmd_dot" state="0"> - <bounds x="413" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix884" element="dmd_dot" state="0"> - <bounds x="417" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix885" element="dmd_dot" state="0"> - <bounds x="421" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix886" element="dmd_dot" state="0"> - <bounds x="425" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix887" element="dmd_dot" state="0"> - <bounds x="429" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix888" element="dmd_dot" state="0"> - <bounds x="433" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix889" element="dmd_dot" state="0"> - <bounds x="437" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix890" element="dmd_dot" state="0"> - <bounds x="441" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix891" element="dmd_dot" state="0"> - <bounds x="445" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix892" element="dmd_dot" state="0"> - <bounds x="449" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix893" element="dmd_dot" state="0"> - <bounds x="453" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix894" element="dmd_dot" state="0"> - <bounds x="457" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix895" element="dmd_dot" state="0"> - <bounds x="461" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix896" element="dmd_dot" state="0"> - <bounds x="465" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix897" element="dmd_dot" state="0"> - <bounds x="469" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix898" element="dmd_dot" state="0"> - <bounds x="473" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix899" element="dmd_dot" state="0"> - <bounds x="477" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix900" element="dmd_dot" state="0"> - <bounds x="481" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix901" element="dmd_dot" state="0"> - <bounds x="485" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix902" element="dmd_dot" state="0"> - <bounds x="489" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix903" element="dmd_dot" state="0"> - <bounds x="493" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix904" element="dmd_dot" state="0"> - <bounds x="497" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix905" element="dmd_dot" state="0"> - <bounds x="501" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix906" element="dmd_dot" state="0"> - <bounds x="505" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix907" element="dmd_dot" state="0"> - <bounds x="509" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix908" element="dmd_dot" state="0"> - <bounds x="513" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix909" element="dmd_dot" state="0"> - <bounds x="517" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix910" element="dmd_dot" state="0"> - <bounds x="261" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix911" element="dmd_dot" state="0"> - <bounds x="265" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix912" element="dmd_dot" state="0"> - <bounds x="269" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix913" element="dmd_dot" state="0"> - <bounds x="273" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix914" element="dmd_dot" state="0"> - <bounds x="277" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix915" element="dmd_dot" state="0"> - <bounds x="281" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix916" element="dmd_dot" state="0"> - <bounds x="285" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix917" element="dmd_dot" state="0"> - <bounds x="289" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix918" element="dmd_dot" state="0"> - <bounds x="293" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix919" element="dmd_dot" state="0"> - <bounds x="297" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix920" element="dmd_dot" state="0"> - <bounds x="301" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix921" element="dmd_dot" state="0"> - <bounds x="305" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix922" element="dmd_dot" state="0"> - <bounds x="309" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix923" element="dmd_dot" state="0"> - <bounds x="313" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix924" element="dmd_dot" state="0"> - <bounds x="317" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix925" element="dmd_dot" state="0"> - <bounds x="321" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix926" element="dmd_dot" state="0"> - <bounds x="325" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix927" element="dmd_dot" state="0"> - <bounds x="329" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix928" element="dmd_dot" state="0"> - <bounds x="333" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix929" element="dmd_dot" state="0"> - <bounds x="337" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix930" element="dmd_dot" state="0"> - <bounds x="341" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix931" element="dmd_dot" state="0"> - <bounds x="345" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix932" element="dmd_dot" state="0"> - <bounds x="349" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix933" element="dmd_dot" state="0"> - <bounds x="353" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix934" element="dmd_dot" state="0"> - <bounds x="357" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix935" element="dmd_dot" state="0"> - <bounds x="361" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix936" element="dmd_dot" state="0"> - <bounds x="365" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix937" element="dmd_dot" state="0"> - <bounds x="369" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix938" element="dmd_dot" state="0"> - <bounds x="373" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix939" element="dmd_dot" state="0"> - <bounds x="377" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix940" element="dmd_dot" state="0"> - <bounds x="381" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix941" element="dmd_dot" state="0"> - <bounds x="385" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix942" element="dmd_dot" state="0"> - <bounds x="389" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix943" element="dmd_dot" state="0"> - <bounds x="393" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix944" element="dmd_dot" state="0"> - <bounds x="397" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix945" element="dmd_dot" state="0"> - <bounds x="401" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix946" element="dmd_dot" state="0"> - <bounds x="405" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix947" element="dmd_dot" state="0"> - <bounds x="409" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix948" element="dmd_dot" state="0"> - <bounds x="413" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix949" element="dmd_dot" state="0"> - <bounds x="417" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix950" element="dmd_dot" state="0"> - <bounds x="421" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix951" element="dmd_dot" state="0"> - <bounds x="425" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix952" element="dmd_dot" state="0"> - <bounds x="429" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix953" element="dmd_dot" state="0"> - <bounds x="433" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix954" element="dmd_dot" state="0"> - <bounds x="437" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix955" element="dmd_dot" state="0"> - <bounds x="441" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix956" element="dmd_dot" state="0"> - <bounds x="445" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix957" element="dmd_dot" state="0"> - <bounds x="449" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix958" element="dmd_dot" state="0"> - <bounds x="453" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix959" element="dmd_dot" state="0"> - <bounds x="457" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix960" element="dmd_dot" state="0"> - <bounds x="461" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix961" element="dmd_dot" state="0"> - <bounds x="465" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix962" element="dmd_dot" state="0"> - <bounds x="469" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix963" element="dmd_dot" state="0"> - <bounds x="473" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix964" element="dmd_dot" state="0"> - <bounds x="477" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix965" element="dmd_dot" state="0"> - <bounds x="481" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix966" element="dmd_dot" state="0"> - <bounds x="485" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix967" element="dmd_dot" state="0"> - <bounds x="489" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix968" element="dmd_dot" state="0"> - <bounds x="493" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix969" element="dmd_dot" state="0"> - <bounds x="497" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix970" element="dmd_dot" state="0"> - <bounds x="501" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix971" element="dmd_dot" state="0"> - <bounds x="505" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix972" element="dmd_dot" state="0"> - <bounds x="509" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix973" element="dmd_dot" state="0"> - <bounds x="513" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix974" element="dmd_dot" state="0"> - <bounds x="517" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix975" element="dmd_dot" state="0"> - <bounds x="261" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix976" element="dmd_dot" state="0"> - <bounds x="265" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix977" element="dmd_dot" state="0"> - <bounds x="269" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix978" element="dmd_dot" state="0"> - <bounds x="273" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix979" element="dmd_dot" state="0"> - <bounds x="277" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix980" element="dmd_dot" state="0"> - <bounds x="281" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix981" element="dmd_dot" state="0"> - <bounds x="285" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix982" element="dmd_dot" state="0"> - <bounds x="289" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix983" element="dmd_dot" state="0"> - <bounds x="293" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix984" element="dmd_dot" state="0"> - <bounds x="297" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix985" element="dmd_dot" state="0"> - <bounds x="301" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix986" element="dmd_dot" state="0"> - <bounds x="305" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix987" element="dmd_dot" state="0"> - <bounds x="309" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix988" element="dmd_dot" state="0"> - <bounds x="313" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix989" element="dmd_dot" state="0"> - <bounds x="317" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix990" element="dmd_dot" state="0"> - <bounds x="321" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix991" element="dmd_dot" state="0"> - <bounds x="325" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix992" element="dmd_dot" state="0"> - <bounds x="329" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix993" element="dmd_dot" state="0"> - <bounds x="333" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix994" element="dmd_dot" state="0"> - <bounds x="337" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix995" element="dmd_dot" state="0"> - <bounds x="341" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix996" element="dmd_dot" state="0"> - <bounds x="345" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix997" element="dmd_dot" state="0"> - <bounds x="349" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix998" element="dmd_dot" state="0"> - <bounds x="353" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix999" element="dmd_dot" state="0"> - <bounds x="357" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1000" element="dmd_dot" state="0"> - <bounds x="361" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1001" element="dmd_dot" state="0"> - <bounds x="365" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1002" element="dmd_dot" state="0"> - <bounds x="369" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1003" element="dmd_dot" state="0"> - <bounds x="373" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1004" element="dmd_dot" state="0"> - <bounds x="377" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1005" element="dmd_dot" state="0"> - <bounds x="381" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1006" element="dmd_dot" state="0"> - <bounds x="385" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1007" element="dmd_dot" state="0"> - <bounds x="389" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1008" element="dmd_dot" state="0"> - <bounds x="393" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1009" element="dmd_dot" state="0"> - <bounds x="397" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1010" element="dmd_dot" state="0"> - <bounds x="401" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1011" element="dmd_dot" state="0"> - <bounds x="405" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1012" element="dmd_dot" state="0"> - <bounds x="409" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1013" element="dmd_dot" state="0"> - <bounds x="413" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1014" element="dmd_dot" state="0"> - <bounds x="417" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1015" element="dmd_dot" state="0"> - <bounds x="421" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1016" element="dmd_dot" state="0"> - <bounds x="425" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1017" element="dmd_dot" state="0"> - <bounds x="429" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1018" element="dmd_dot" state="0"> - <bounds x="433" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1019" element="dmd_dot" state="0"> - <bounds x="437" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1020" element="dmd_dot" state="0"> - <bounds x="441" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1021" element="dmd_dot" state="0"> - <bounds x="445" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1022" element="dmd_dot" state="0"> - <bounds x="449" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1023" element="dmd_dot" state="0"> - <bounds x="453" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1024" element="dmd_dot" state="0"> - <bounds x="457" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1025" element="dmd_dot" state="0"> - <bounds x="461" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1026" element="dmd_dot" state="0"> - <bounds x="465" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1027" element="dmd_dot" state="0"> - <bounds x="469" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1028" element="dmd_dot" state="0"> - <bounds x="473" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1029" element="dmd_dot" state="0"> - <bounds x="477" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1030" element="dmd_dot" state="0"> - <bounds x="481" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1031" element="dmd_dot" state="0"> - <bounds x="485" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1032" element="dmd_dot" state="0"> - <bounds x="489" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1033" element="dmd_dot" state="0"> - <bounds x="493" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1034" element="dmd_dot" state="0"> - <bounds x="497" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1035" element="dmd_dot" state="0"> - <bounds x="501" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1036" element="dmd_dot" state="0"> - <bounds x="505" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1037" element="dmd_dot" state="0"> - <bounds x="509" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1038" element="dmd_dot" state="0"> - <bounds x="513" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1039" element="dmd_dot" state="0"> - <bounds x="517" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1040" element="dmd_dot" state="0"> - <bounds x="261" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1041" element="dmd_dot" state="0"> - <bounds x="265" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1042" element="dmd_dot" state="0"> - <bounds x="269" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1043" element="dmd_dot" state="0"> - <bounds x="273" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1044" element="dmd_dot" state="0"> - <bounds x="277" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1045" element="dmd_dot" state="0"> - <bounds x="281" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1046" element="dmd_dot" state="0"> - <bounds x="285" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1047" element="dmd_dot" state="0"> - <bounds x="289" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1048" element="dmd_dot" state="0"> - <bounds x="293" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1049" element="dmd_dot" state="0"> - <bounds x="297" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1050" element="dmd_dot" state="0"> - <bounds x="301" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1051" element="dmd_dot" state="0"> - <bounds x="305" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1052" element="dmd_dot" state="0"> - <bounds x="309" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1053" element="dmd_dot" state="0"> - <bounds x="313" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1054" element="dmd_dot" state="0"> - <bounds x="317" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1055" element="dmd_dot" state="0"> - <bounds x="321" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1056" element="dmd_dot" state="0"> - <bounds x="325" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1057" element="dmd_dot" state="0"> - <bounds x="329" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1058" element="dmd_dot" state="0"> - <bounds x="333" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1059" element="dmd_dot" state="0"> - <bounds x="337" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1060" element="dmd_dot" state="0"> - <bounds x="341" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1061" element="dmd_dot" state="0"> - <bounds x="345" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1062" element="dmd_dot" state="0"> - <bounds x="349" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1063" element="dmd_dot" state="0"> - <bounds x="353" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1064" element="dmd_dot" state="0"> - <bounds x="357" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1065" element="dmd_dot" state="0"> - <bounds x="361" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1066" element="dmd_dot" state="0"> - <bounds x="365" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1067" element="dmd_dot" state="0"> - <bounds x="369" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1068" element="dmd_dot" state="0"> - <bounds x="373" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1069" element="dmd_dot" state="0"> - <bounds x="377" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1070" element="dmd_dot" state="0"> - <bounds x="381" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1071" element="dmd_dot" state="0"> - <bounds x="385" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1072" element="dmd_dot" state="0"> - <bounds x="389" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1073" element="dmd_dot" state="0"> - <bounds x="393" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1074" element="dmd_dot" state="0"> - <bounds x="397" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1075" element="dmd_dot" state="0"> - <bounds x="401" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1076" element="dmd_dot" state="0"> - <bounds x="405" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1077" element="dmd_dot" state="0"> - <bounds x="409" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1078" element="dmd_dot" state="0"> - <bounds x="413" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1079" element="dmd_dot" state="0"> - <bounds x="417" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1080" element="dmd_dot" state="0"> - <bounds x="421" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1081" element="dmd_dot" state="0"> - <bounds x="425" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1082" element="dmd_dot" state="0"> - <bounds x="429" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1083" element="dmd_dot" state="0"> - <bounds x="433" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1084" element="dmd_dot" state="0"> - <bounds x="437" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1085" element="dmd_dot" state="0"> - <bounds x="441" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1086" element="dmd_dot" state="0"> - <bounds x="445" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1087" element="dmd_dot" state="0"> - <bounds x="449" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1088" element="dmd_dot" state="0"> - <bounds x="453" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1089" element="dmd_dot" state="0"> - <bounds x="457" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1090" element="dmd_dot" state="0"> - <bounds x="461" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1091" element="dmd_dot" state="0"> - <bounds x="465" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1092" element="dmd_dot" state="0"> - <bounds x="469" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1093" element="dmd_dot" state="0"> - <bounds x="473" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1094" element="dmd_dot" state="0"> - <bounds x="477" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1095" element="dmd_dot" state="0"> - <bounds x="481" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1096" element="dmd_dot" state="0"> - <bounds x="485" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1097" element="dmd_dot" state="0"> - <bounds x="489" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1098" element="dmd_dot" state="0"> - <bounds x="493" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1099" element="dmd_dot" state="0"> - <bounds x="497" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1100" element="dmd_dot" state="0"> - <bounds x="501" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1101" element="dmd_dot" state="0"> - <bounds x="505" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1102" element="dmd_dot" state="0"> - <bounds x="509" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1103" element="dmd_dot" state="0"> - <bounds x="513" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1104" element="dmd_dot" state="0"> - <bounds x="517" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1105" element="dmd_dot" state="0"> - <bounds x="261" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1106" element="dmd_dot" state="0"> - <bounds x="265" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1107" element="dmd_dot" state="0"> - <bounds x="269" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1108" element="dmd_dot" state="0"> - <bounds x="273" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1109" element="dmd_dot" state="0"> - <bounds x="277" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1110" element="dmd_dot" state="0"> - <bounds x="281" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1111" element="dmd_dot" state="0"> - <bounds x="285" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1112" element="dmd_dot" state="0"> - <bounds x="289" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1113" element="dmd_dot" state="0"> - <bounds x="293" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1114" element="dmd_dot" state="0"> - <bounds x="297" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1115" element="dmd_dot" state="0"> - <bounds x="301" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1116" element="dmd_dot" state="0"> - <bounds x="305" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1117" element="dmd_dot" state="0"> - <bounds x="309" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1118" element="dmd_dot" state="0"> - <bounds x="313" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1119" element="dmd_dot" state="0"> - <bounds x="317" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1120" element="dmd_dot" state="0"> - <bounds x="321" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1121" element="dmd_dot" state="0"> - <bounds x="325" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1122" element="dmd_dot" state="0"> - <bounds x="329" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1123" element="dmd_dot" state="0"> - <bounds x="333" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1124" element="dmd_dot" state="0"> - <bounds x="337" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1125" element="dmd_dot" state="0"> - <bounds x="341" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1126" element="dmd_dot" state="0"> - <bounds x="345" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1127" element="dmd_dot" state="0"> - <bounds x="349" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1128" element="dmd_dot" state="0"> - <bounds x="353" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1129" element="dmd_dot" state="0"> - <bounds x="357" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1130" element="dmd_dot" state="0"> - <bounds x="361" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1131" element="dmd_dot" state="0"> - <bounds x="365" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1132" element="dmd_dot" state="0"> - <bounds x="369" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1133" element="dmd_dot" state="0"> - <bounds x="373" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1134" element="dmd_dot" state="0"> - <bounds x="377" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1135" element="dmd_dot" state="0"> - <bounds x="381" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1136" element="dmd_dot" state="0"> - <bounds x="385" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1137" element="dmd_dot" state="0"> - <bounds x="389" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1138" element="dmd_dot" state="0"> - <bounds x="393" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1139" element="dmd_dot" state="0"> - <bounds x="397" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1140" element="dmd_dot" state="0"> - <bounds x="401" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1141" element="dmd_dot" state="0"> - <bounds x="405" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1142" element="dmd_dot" state="0"> - <bounds x="409" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1143" element="dmd_dot" state="0"> - <bounds x="413" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1144" element="dmd_dot" state="0"> - <bounds x="417" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1145" element="dmd_dot" state="0"> - <bounds x="421" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1146" element="dmd_dot" state="0"> - <bounds x="425" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1147" element="dmd_dot" state="0"> - <bounds x="429" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1148" element="dmd_dot" state="0"> - <bounds x="433" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1149" element="dmd_dot" state="0"> - <bounds x="437" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1150" element="dmd_dot" state="0"> - <bounds x="441" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1151" element="dmd_dot" state="0"> - <bounds x="445" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1152" element="dmd_dot" state="0"> - <bounds x="449" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1153" element="dmd_dot" state="0"> - <bounds x="453" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1154" element="dmd_dot" state="0"> - <bounds x="457" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1155" element="dmd_dot" state="0"> - <bounds x="461" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1156" element="dmd_dot" state="0"> - <bounds x="465" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1157" element="dmd_dot" state="0"> - <bounds x="469" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1158" element="dmd_dot" state="0"> - <bounds x="473" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1159" element="dmd_dot" state="0"> - <bounds x="477" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1160" element="dmd_dot" state="0"> - <bounds x="481" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1161" element="dmd_dot" state="0"> - <bounds x="485" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1162" element="dmd_dot" state="0"> - <bounds x="489" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1163" element="dmd_dot" state="0"> - <bounds x="493" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1164" element="dmd_dot" state="0"> - <bounds x="497" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1165" element="dmd_dot" state="0"> - <bounds x="501" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1166" element="dmd_dot" state="0"> - <bounds x="505" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1167" element="dmd_dot" state="0"> - <bounds x="509" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1168" element="dmd_dot" state="0"> - <bounds x="513" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1169" element="dmd_dot" state="0"> - <bounds x="517" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1170" element="dmd_dot" state="0"> - <bounds x="261" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1171" element="dmd_dot" state="0"> - <bounds x="265" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1172" element="dmd_dot" state="0"> - <bounds x="269" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1173" element="dmd_dot" state="0"> - <bounds x="273" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1174" element="dmd_dot" state="0"> - <bounds x="277" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1175" element="dmd_dot" state="0"> - <bounds x="281" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1176" element="dmd_dot" state="0"> - <bounds x="285" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1177" element="dmd_dot" state="0"> - <bounds x="289" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1178" element="dmd_dot" state="0"> - <bounds x="293" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1179" element="dmd_dot" state="0"> - <bounds x="297" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1180" element="dmd_dot" state="0"> - <bounds x="301" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1181" element="dmd_dot" state="0"> - <bounds x="305" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1182" element="dmd_dot" state="0"> - <bounds x="309" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1183" element="dmd_dot" state="0"> - <bounds x="313" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1184" element="dmd_dot" state="0"> - <bounds x="317" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1185" element="dmd_dot" state="0"> - <bounds x="321" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1186" element="dmd_dot" state="0"> - <bounds x="325" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1187" element="dmd_dot" state="0"> - <bounds x="329" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1188" element="dmd_dot" state="0"> - <bounds x="333" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1189" element="dmd_dot" state="0"> - <bounds x="337" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1190" element="dmd_dot" state="0"> - <bounds x="341" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1191" element="dmd_dot" state="0"> - <bounds x="345" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1192" element="dmd_dot" state="0"> - <bounds x="349" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1193" element="dmd_dot" state="0"> - <bounds x="353" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1194" element="dmd_dot" state="0"> - <bounds x="357" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1195" element="dmd_dot" state="0"> - <bounds x="361" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1196" element="dmd_dot" state="0"> - <bounds x="365" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1197" element="dmd_dot" state="0"> - <bounds x="369" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1198" element="dmd_dot" state="0"> - <bounds x="373" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1199" element="dmd_dot" state="0"> - <bounds x="377" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1200" element="dmd_dot" state="0"> - <bounds x="381" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1201" element="dmd_dot" state="0"> - <bounds x="385" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1202" element="dmd_dot" state="0"> - <bounds x="389" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1203" element="dmd_dot" state="0"> - <bounds x="393" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1204" element="dmd_dot" state="0"> - <bounds x="397" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1205" element="dmd_dot" state="0"> - <bounds x="401" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1206" element="dmd_dot" state="0"> - <bounds x="405" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1207" element="dmd_dot" state="0"> - <bounds x="409" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1208" element="dmd_dot" state="0"> - <bounds x="413" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1209" element="dmd_dot" state="0"> - <bounds x="417" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1210" element="dmd_dot" state="0"> - <bounds x="421" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1211" element="dmd_dot" state="0"> - <bounds x="425" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1212" element="dmd_dot" state="0"> - <bounds x="429" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1213" element="dmd_dot" state="0"> - <bounds x="433" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1214" element="dmd_dot" state="0"> - <bounds x="437" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1215" element="dmd_dot" state="0"> - <bounds x="441" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1216" element="dmd_dot" state="0"> - <bounds x="445" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1217" element="dmd_dot" state="0"> - <bounds x="449" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1218" element="dmd_dot" state="0"> - <bounds x="453" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1219" element="dmd_dot" state="0"> - <bounds x="457" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1220" element="dmd_dot" state="0"> - <bounds x="461" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1221" element="dmd_dot" state="0"> - <bounds x="465" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1222" element="dmd_dot" state="0"> - <bounds x="469" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1223" element="dmd_dot" state="0"> - <bounds x="473" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1224" element="dmd_dot" state="0"> - <bounds x="477" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1225" element="dmd_dot" state="0"> - <bounds x="481" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1226" element="dmd_dot" state="0"> - <bounds x="485" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1227" element="dmd_dot" state="0"> - <bounds x="489" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1228" element="dmd_dot" state="0"> - <bounds x="493" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1229" element="dmd_dot" state="0"> - <bounds x="497" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1230" element="dmd_dot" state="0"> - <bounds x="501" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1231" element="dmd_dot" state="0"> - <bounds x="505" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1232" element="dmd_dot" state="0"> - <bounds x="509" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1233" element="dmd_dot" state="0"> - <bounds x="513" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1234" element="dmd_dot" state="0"> - <bounds x="517" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1235" element="dmd_dot" state="0"> - <bounds x="261" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1236" element="dmd_dot" state="0"> - <bounds x="265" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1237" element="dmd_dot" state="0"> - <bounds x="269" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1238" element="dmd_dot" state="0"> - <bounds x="273" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1239" element="dmd_dot" state="0"> - <bounds x="277" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1240" element="dmd_dot" state="0"> - <bounds x="281" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1241" element="dmd_dot" state="0"> - <bounds x="285" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1242" element="dmd_dot" state="0"> - <bounds x="289" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1243" element="dmd_dot" state="0"> - <bounds x="293" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1244" element="dmd_dot" state="0"> - <bounds x="297" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1245" element="dmd_dot" state="0"> - <bounds x="301" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1246" element="dmd_dot" state="0"> - <bounds x="305" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1247" element="dmd_dot" state="0"> - <bounds x="309" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1248" element="dmd_dot" state="0"> - <bounds x="313" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1249" element="dmd_dot" state="0"> - <bounds x="317" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1250" element="dmd_dot" state="0"> - <bounds x="321" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1251" element="dmd_dot" state="0"> - <bounds x="325" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1252" element="dmd_dot" state="0"> - <bounds x="329" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1253" element="dmd_dot" state="0"> - <bounds x="333" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1254" element="dmd_dot" state="0"> - <bounds x="337" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1255" element="dmd_dot" state="0"> - <bounds x="341" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1256" element="dmd_dot" state="0"> - <bounds x="345" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1257" element="dmd_dot" state="0"> - <bounds x="349" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1258" element="dmd_dot" state="0"> - <bounds x="353" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1259" element="dmd_dot" state="0"> - <bounds x="357" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1260" element="dmd_dot" state="0"> - <bounds x="361" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1261" element="dmd_dot" state="0"> - <bounds x="365" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1262" element="dmd_dot" state="0"> - <bounds x="369" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1263" element="dmd_dot" state="0"> - <bounds x="373" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1264" element="dmd_dot" state="0"> - <bounds x="377" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1265" element="dmd_dot" state="0"> - <bounds x="381" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1266" element="dmd_dot" state="0"> - <bounds x="385" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1267" element="dmd_dot" state="0"> - <bounds x="389" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1268" element="dmd_dot" state="0"> - <bounds x="393" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1269" element="dmd_dot" state="0"> - <bounds x="397" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1270" element="dmd_dot" state="0"> - <bounds x="401" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1271" element="dmd_dot" state="0"> - <bounds x="405" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1272" element="dmd_dot" state="0"> - <bounds x="409" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1273" element="dmd_dot" state="0"> - <bounds x="413" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1274" element="dmd_dot" state="0"> - <bounds x="417" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1275" element="dmd_dot" state="0"> - <bounds x="421" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1276" element="dmd_dot" state="0"> - <bounds x="425" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1277" element="dmd_dot" state="0"> - <bounds x="429" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1278" element="dmd_dot" state="0"> - <bounds x="433" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1279" element="dmd_dot" state="0"> - <bounds x="437" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1280" element="dmd_dot" state="0"> - <bounds x="441" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1281" element="dmd_dot" state="0"> - <bounds x="445" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1282" element="dmd_dot" state="0"> - <bounds x="449" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1283" element="dmd_dot" state="0"> - <bounds x="453" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1284" element="dmd_dot" state="0"> - <bounds x="457" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1285" element="dmd_dot" state="0"> - <bounds x="461" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1286" element="dmd_dot" state="0"> - <bounds x="465" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1287" element="dmd_dot" state="0"> - <bounds x="469" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1288" element="dmd_dot" state="0"> - <bounds x="473" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1289" element="dmd_dot" state="0"> - <bounds x="477" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1290" element="dmd_dot" state="0"> - <bounds x="481" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1291" element="dmd_dot" state="0"> - <bounds x="485" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1292" element="dmd_dot" state="0"> - <bounds x="489" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1293" element="dmd_dot" state="0"> - <bounds x="493" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1294" element="dmd_dot" state="0"> - <bounds x="497" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1295" element="dmd_dot" state="0"> - <bounds x="501" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1296" element="dmd_dot" state="0"> - <bounds x="505" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1297" element="dmd_dot" state="0"> - <bounds x="509" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1298" element="dmd_dot" state="0"> - <bounds x="513" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1299" element="dmd_dot" state="0"> - <bounds x="517" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1300" element="dmd_dot" state="0"> - <bounds x="261" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1301" element="dmd_dot" state="0"> - <bounds x="265" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1302" element="dmd_dot" state="0"> - <bounds x="269" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1303" element="dmd_dot" state="0"> - <bounds x="273" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1304" element="dmd_dot" state="0"> - <bounds x="277" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1305" element="dmd_dot" state="0"> - <bounds x="281" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1306" element="dmd_dot" state="0"> - <bounds x="285" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1307" element="dmd_dot" state="0"> - <bounds x="289" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1308" element="dmd_dot" state="0"> - <bounds x="293" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1309" element="dmd_dot" state="0"> - <bounds x="297" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1310" element="dmd_dot" state="0"> - <bounds x="301" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1311" element="dmd_dot" state="0"> - <bounds x="305" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1312" element="dmd_dot" state="0"> - <bounds x="309" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1313" element="dmd_dot" state="0"> - <bounds x="313" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1314" element="dmd_dot" state="0"> - <bounds x="317" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1315" element="dmd_dot" state="0"> - <bounds x="321" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1316" element="dmd_dot" state="0"> - <bounds x="325" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1317" element="dmd_dot" state="0"> - <bounds x="329" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1318" element="dmd_dot" state="0"> - <bounds x="333" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1319" element="dmd_dot" state="0"> - <bounds x="337" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1320" element="dmd_dot" state="0"> - <bounds x="341" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1321" element="dmd_dot" state="0"> - <bounds x="345" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1322" element="dmd_dot" state="0"> - <bounds x="349" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1323" element="dmd_dot" state="0"> - <bounds x="353" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1324" element="dmd_dot" state="0"> - <bounds x="357" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1325" element="dmd_dot" state="0"> - <bounds x="361" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1326" element="dmd_dot" state="0"> - <bounds x="365" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1327" element="dmd_dot" state="0"> - <bounds x="369" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1328" element="dmd_dot" state="0"> - <bounds x="373" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1329" element="dmd_dot" state="0"> - <bounds x="377" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1330" element="dmd_dot" state="0"> - <bounds x="381" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1331" element="dmd_dot" state="0"> - <bounds x="385" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1332" element="dmd_dot" state="0"> - <bounds x="389" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1333" element="dmd_dot" state="0"> - <bounds x="393" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1334" element="dmd_dot" state="0"> - <bounds x="397" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1335" element="dmd_dot" state="0"> - <bounds x="401" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1336" element="dmd_dot" state="0"> - <bounds x="405" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1337" element="dmd_dot" state="0"> - <bounds x="409" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1338" element="dmd_dot" state="0"> - <bounds x="413" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1339" element="dmd_dot" state="0"> - <bounds x="417" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1340" element="dmd_dot" state="0"> - <bounds x="421" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1341" element="dmd_dot" state="0"> - <bounds x="425" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1342" element="dmd_dot" state="0"> - <bounds x="429" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1343" element="dmd_dot" state="0"> - <bounds x="433" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1344" element="dmd_dot" state="0"> - <bounds x="437" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1345" element="dmd_dot" state="0"> - <bounds x="441" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1346" element="dmd_dot" state="0"> - <bounds x="445" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1347" element="dmd_dot" state="0"> - <bounds x="449" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1348" element="dmd_dot" state="0"> - <bounds x="453" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1349" element="dmd_dot" state="0"> - <bounds x="457" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1350" element="dmd_dot" state="0"> - <bounds x="461" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1351" element="dmd_dot" state="0"> - <bounds x="465" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1352" element="dmd_dot" state="0"> - <bounds x="469" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1353" element="dmd_dot" state="0"> - <bounds x="473" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1354" element="dmd_dot" state="0"> - <bounds x="477" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1355" element="dmd_dot" state="0"> - <bounds x="481" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1356" element="dmd_dot" state="0"> - <bounds x="485" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1357" element="dmd_dot" state="0"> - <bounds x="489" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1358" element="dmd_dot" state="0"> - <bounds x="493" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1359" element="dmd_dot" state="0"> - <bounds x="497" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1360" element="dmd_dot" state="0"> - <bounds x="501" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1361" element="dmd_dot" state="0"> - <bounds x="505" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1362" element="dmd_dot" state="0"> - <bounds x="509" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1363" element="dmd_dot" state="0"> - <bounds x="513" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1364" element="dmd_dot" state="0"> - <bounds x="517" y="109" width="2" height="2"> - </bounds> - </backdrop> + + <!-- The DMD --> + <screen index="0"> + <bounds left="261" top="29" right="523" bottom="115" /> + </screen> + <backdrop name="label5" element="label_5"> <bounds x="668" y="5" width="84" height="24"> </bounds> diff --git a/src/mame/layout/sc2cpe.lay b/src/mame/layout/sc2cpe.lay index 7843389a928..8a435d0ea98 100644 --- a/src/mame/layout/sc2cpe.lay +++ b/src/mame/layout/sc2cpe.lay @@ -4380,22 +4380,6 @@ </color> </led7seg> </element> - <element name="dmd_dot" defstate="0"> - <rect state="1"> - <color red="1.0" green="0.5" blue="0.0"> - </color> - </rect> - <rect state="0"> - <color red="0.4" green="0.2" blue="0.0"> - </color> - </rect> - </element> - <element name="dmd_background"> - <rect> - <color red="0.0" green="0.0" blue="0.0"> - </color> - </rect> - </element> <element name="reel_lamp_layer_0" defstate="0"> <rect> <color red="0.40" green="0.40" blue="0.40"> @@ -8836,5470 +8820,12 @@ <bounds x="682" y="130" width="4" height="3"> </bounds> </backdrop> - <backdrop element="dmd_background"> - <bounds x="261" y="29" width="262" height="86"> - </bounds> - </backdrop> - <backdrop name="dotmatrix0" element="dmd_dot" state="0"> - <bounds x="261" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1" element="dmd_dot" state="0"> - <bounds x="265" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix2" element="dmd_dot" state="0"> - <bounds x="269" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix3" element="dmd_dot" state="0"> - <bounds x="273" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix4" element="dmd_dot" state="0"> - <bounds x="277" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix5" element="dmd_dot" state="0"> - <bounds x="281" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix6" element="dmd_dot" state="0"> - <bounds x="285" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix7" element="dmd_dot" state="0"> - <bounds x="289" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix8" element="dmd_dot" state="0"> - <bounds x="293" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix9" element="dmd_dot" state="0"> - <bounds x="297" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix10" element="dmd_dot" state="0"> - <bounds x="301" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix11" element="dmd_dot" state="0"> - <bounds x="305" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix12" element="dmd_dot" state="0"> - <bounds x="309" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix13" element="dmd_dot" state="0"> - <bounds x="313" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix14" element="dmd_dot" state="0"> - <bounds x="317" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix15" element="dmd_dot" state="0"> - <bounds x="321" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix16" element="dmd_dot" state="0"> - <bounds x="325" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix17" element="dmd_dot" state="0"> - <bounds x="329" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix18" element="dmd_dot" state="0"> - <bounds x="333" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix19" element="dmd_dot" state="0"> - <bounds x="337" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix20" element="dmd_dot" state="0"> - <bounds x="341" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix21" element="dmd_dot" state="0"> - <bounds x="345" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix22" element="dmd_dot" state="0"> - <bounds x="349" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix23" element="dmd_dot" state="0"> - <bounds x="353" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix24" element="dmd_dot" state="0"> - <bounds x="357" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix25" element="dmd_dot" state="0"> - <bounds x="361" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix26" element="dmd_dot" state="0"> - <bounds x="365" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix27" element="dmd_dot" state="0"> - <bounds x="369" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix28" element="dmd_dot" state="0"> - <bounds x="373" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix29" element="dmd_dot" state="0"> - <bounds x="377" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix30" element="dmd_dot" state="0"> - <bounds x="381" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix31" element="dmd_dot" state="0"> - <bounds x="385" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix32" element="dmd_dot" state="0"> - <bounds x="389" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix33" element="dmd_dot" state="0"> - <bounds x="393" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix34" element="dmd_dot" state="0"> - <bounds x="397" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix35" element="dmd_dot" state="0"> - <bounds x="401" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix36" element="dmd_dot" state="0"> - <bounds x="405" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix37" element="dmd_dot" state="0"> - <bounds x="409" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix38" element="dmd_dot" state="0"> - <bounds x="413" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix39" element="dmd_dot" state="0"> - <bounds x="417" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix40" element="dmd_dot" state="0"> - <bounds x="421" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix41" element="dmd_dot" state="0"> - <bounds x="425" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix42" element="dmd_dot" state="0"> - <bounds x="429" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix43" element="dmd_dot" state="0"> - <bounds x="433" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix44" element="dmd_dot" state="0"> - <bounds x="437" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix45" element="dmd_dot" state="0"> - <bounds x="441" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix46" element="dmd_dot" state="0"> - <bounds x="445" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix47" element="dmd_dot" state="0"> - <bounds x="449" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix48" element="dmd_dot" state="0"> - <bounds x="453" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix49" element="dmd_dot" state="0"> - <bounds x="457" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix50" element="dmd_dot" state="0"> - <bounds x="461" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix51" element="dmd_dot" state="0"> - <bounds x="465" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix52" element="dmd_dot" state="0"> - <bounds x="469" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix53" element="dmd_dot" state="0"> - <bounds x="473" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix54" element="dmd_dot" state="0"> - <bounds x="477" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix55" element="dmd_dot" state="0"> - <bounds x="481" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix56" element="dmd_dot" state="0"> - <bounds x="485" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix57" element="dmd_dot" state="0"> - <bounds x="489" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix58" element="dmd_dot" state="0"> - <bounds x="493" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix59" element="dmd_dot" state="0"> - <bounds x="497" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix60" element="dmd_dot" state="0"> - <bounds x="501" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix61" element="dmd_dot" state="0"> - <bounds x="505" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix62" element="dmd_dot" state="0"> - <bounds x="509" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix63" element="dmd_dot" state="0"> - <bounds x="513" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix64" element="dmd_dot" state="0"> - <bounds x="517" y="29" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix65" element="dmd_dot" state="0"> - <bounds x="261" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix66" element="dmd_dot" state="0"> - <bounds x="265" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix67" element="dmd_dot" state="0"> - <bounds x="269" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix68" element="dmd_dot" state="0"> - <bounds x="273" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix69" element="dmd_dot" state="0"> - <bounds x="277" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix70" element="dmd_dot" state="0"> - <bounds x="281" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix71" element="dmd_dot" state="0"> - <bounds x="285" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix72" element="dmd_dot" state="0"> - <bounds x="289" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix73" element="dmd_dot" state="0"> - <bounds x="293" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix74" element="dmd_dot" state="0"> - <bounds x="297" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix75" element="dmd_dot" state="0"> - <bounds x="301" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix76" element="dmd_dot" state="0"> - <bounds x="305" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix77" element="dmd_dot" state="0"> - <bounds x="309" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix78" element="dmd_dot" state="0"> - <bounds x="313" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix79" element="dmd_dot" state="0"> - <bounds x="317" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix80" element="dmd_dot" state="0"> - <bounds x="321" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix81" element="dmd_dot" state="0"> - <bounds x="325" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix82" element="dmd_dot" state="0"> - <bounds x="329" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix83" element="dmd_dot" state="0"> - <bounds x="333" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix84" element="dmd_dot" state="0"> - <bounds x="337" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix85" element="dmd_dot" state="0"> - <bounds x="341" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix86" element="dmd_dot" state="0"> - <bounds x="345" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix87" element="dmd_dot" state="0"> - <bounds x="349" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix88" element="dmd_dot" state="0"> - <bounds x="353" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix89" element="dmd_dot" state="0"> - <bounds x="357" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix90" element="dmd_dot" state="0"> - <bounds x="361" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix91" element="dmd_dot" state="0"> - <bounds x="365" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix92" element="dmd_dot" state="0"> - <bounds x="369" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix93" element="dmd_dot" state="0"> - <bounds x="373" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix94" element="dmd_dot" state="0"> - <bounds x="377" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix95" element="dmd_dot" state="0"> - <bounds x="381" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix96" element="dmd_dot" state="0"> - <bounds x="385" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix97" element="dmd_dot" state="0"> - <bounds x="389" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix98" element="dmd_dot" state="0"> - <bounds x="393" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix99" element="dmd_dot" state="0"> - <bounds x="397" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix100" element="dmd_dot" state="0"> - <bounds x="401" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix101" element="dmd_dot" state="0"> - <bounds x="405" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix102" element="dmd_dot" state="0"> - <bounds x="409" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix103" element="dmd_dot" state="0"> - <bounds x="413" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix104" element="dmd_dot" state="0"> - <bounds x="417" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix105" element="dmd_dot" state="0"> - <bounds x="421" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix106" element="dmd_dot" state="0"> - <bounds x="425" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix107" element="dmd_dot" state="0"> - <bounds x="429" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix108" element="dmd_dot" state="0"> - <bounds x="433" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix109" element="dmd_dot" state="0"> - <bounds x="437" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix110" element="dmd_dot" state="0"> - <bounds x="441" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix111" element="dmd_dot" state="0"> - <bounds x="445" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix112" element="dmd_dot" state="0"> - <bounds x="449" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix113" element="dmd_dot" state="0"> - <bounds x="453" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix114" element="dmd_dot" state="0"> - <bounds x="457" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix115" element="dmd_dot" state="0"> - <bounds x="461" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix116" element="dmd_dot" state="0"> - <bounds x="465" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix117" element="dmd_dot" state="0"> - <bounds x="469" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix118" element="dmd_dot" state="0"> - <bounds x="473" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix119" element="dmd_dot" state="0"> - <bounds x="477" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix120" element="dmd_dot" state="0"> - <bounds x="481" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix121" element="dmd_dot" state="0"> - <bounds x="485" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix122" element="dmd_dot" state="0"> - <bounds x="489" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix123" element="dmd_dot" state="0"> - <bounds x="493" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix124" element="dmd_dot" state="0"> - <bounds x="497" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix125" element="dmd_dot" state="0"> - <bounds x="501" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix126" element="dmd_dot" state="0"> - <bounds x="505" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix127" element="dmd_dot" state="0"> - <bounds x="509" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix128" element="dmd_dot" state="0"> - <bounds x="513" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix129" element="dmd_dot" state="0"> - <bounds x="517" y="33" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix130" element="dmd_dot" state="0"> - <bounds x="261" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix131" element="dmd_dot" state="0"> - <bounds x="265" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix132" element="dmd_dot" state="0"> - <bounds x="269" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix133" element="dmd_dot" state="0"> - <bounds x="273" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix134" element="dmd_dot" state="0"> - <bounds x="277" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix135" element="dmd_dot" state="0"> - <bounds x="281" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix136" element="dmd_dot" state="0"> - <bounds x="285" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix137" element="dmd_dot" state="0"> - <bounds x="289" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix138" element="dmd_dot" state="0"> - <bounds x="293" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix139" element="dmd_dot" state="0"> - <bounds x="297" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix140" element="dmd_dot" state="0"> - <bounds x="301" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix141" element="dmd_dot" state="0"> - <bounds x="305" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix142" element="dmd_dot" state="0"> - <bounds x="309" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix143" element="dmd_dot" state="0"> - <bounds x="313" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix144" element="dmd_dot" state="0"> - <bounds x="317" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix145" element="dmd_dot" state="0"> - <bounds x="321" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix146" element="dmd_dot" state="0"> - <bounds x="325" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix147" element="dmd_dot" state="0"> - <bounds x="329" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix148" element="dmd_dot" state="0"> - <bounds x="333" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix149" element="dmd_dot" state="0"> - <bounds x="337" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix150" element="dmd_dot" state="0"> - <bounds x="341" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix151" element="dmd_dot" state="0"> - <bounds x="345" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix152" element="dmd_dot" state="0"> - <bounds x="349" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix153" element="dmd_dot" state="0"> - <bounds x="353" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix154" element="dmd_dot" state="0"> - <bounds x="357" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix155" element="dmd_dot" state="0"> - <bounds x="361" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix156" element="dmd_dot" state="0"> - <bounds x="365" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix157" element="dmd_dot" state="0"> - <bounds x="369" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix158" element="dmd_dot" state="0"> - <bounds x="373" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix159" element="dmd_dot" state="0"> - <bounds x="377" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix160" element="dmd_dot" state="0"> - <bounds x="381" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix161" element="dmd_dot" state="0"> - <bounds x="385" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix162" element="dmd_dot" state="0"> - <bounds x="389" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix163" element="dmd_dot" state="0"> - <bounds x="393" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix164" element="dmd_dot" state="0"> - <bounds x="397" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix165" element="dmd_dot" state="0"> - <bounds x="401" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix166" element="dmd_dot" state="0"> - <bounds x="405" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix167" element="dmd_dot" state="0"> - <bounds x="409" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix168" element="dmd_dot" state="0"> - <bounds x="413" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix169" element="dmd_dot" state="0"> - <bounds x="417" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix170" element="dmd_dot" state="0"> - <bounds x="421" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix171" element="dmd_dot" state="0"> - <bounds x="425" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix172" element="dmd_dot" state="0"> - <bounds x="429" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix173" element="dmd_dot" state="0"> - <bounds x="433" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix174" element="dmd_dot" state="0"> - <bounds x="437" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix175" element="dmd_dot" state="0"> - <bounds x="441" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix176" element="dmd_dot" state="0"> - <bounds x="445" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix177" element="dmd_dot" state="0"> - <bounds x="449" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix178" element="dmd_dot" state="0"> - <bounds x="453" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix179" element="dmd_dot" state="0"> - <bounds x="457" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix180" element="dmd_dot" state="0"> - <bounds x="461" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix181" element="dmd_dot" state="0"> - <bounds x="465" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix182" element="dmd_dot" state="0"> - <bounds x="469" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix183" element="dmd_dot" state="0"> - <bounds x="473" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix184" element="dmd_dot" state="0"> - <bounds x="477" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix185" element="dmd_dot" state="0"> - <bounds x="481" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix186" element="dmd_dot" state="0"> - <bounds x="485" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix187" element="dmd_dot" state="0"> - <bounds x="489" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix188" element="dmd_dot" state="0"> - <bounds x="493" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix189" element="dmd_dot" state="0"> - <bounds x="497" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix190" element="dmd_dot" state="0"> - <bounds x="501" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix191" element="dmd_dot" state="0"> - <bounds x="505" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix192" element="dmd_dot" state="0"> - <bounds x="509" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix193" element="dmd_dot" state="0"> - <bounds x="513" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix194" element="dmd_dot" state="0"> - <bounds x="517" y="37" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix195" element="dmd_dot" state="0"> - <bounds x="261" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix196" element="dmd_dot" state="0"> - <bounds x="265" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix197" element="dmd_dot" state="0"> - <bounds x="269" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix198" element="dmd_dot" state="0"> - <bounds x="273" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix199" element="dmd_dot" state="0"> - <bounds x="277" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix200" element="dmd_dot" state="0"> - <bounds x="281" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix201" element="dmd_dot" state="0"> - <bounds x="285" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix202" element="dmd_dot" state="0"> - <bounds x="289" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix203" element="dmd_dot" state="0"> - <bounds x="293" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix204" element="dmd_dot" state="0"> - <bounds x="297" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix205" element="dmd_dot" state="0"> - <bounds x="301" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix206" element="dmd_dot" state="0"> - <bounds x="305" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix207" element="dmd_dot" state="0"> - <bounds x="309" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix208" element="dmd_dot" state="0"> - <bounds x="313" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix209" element="dmd_dot" state="0"> - <bounds x="317" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix210" element="dmd_dot" state="0"> - <bounds x="321" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix211" element="dmd_dot" state="0"> - <bounds x="325" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix212" element="dmd_dot" state="0"> - <bounds x="329" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix213" element="dmd_dot" state="0"> - <bounds x="333" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix214" element="dmd_dot" state="0"> - <bounds x="337" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix215" element="dmd_dot" state="0"> - <bounds x="341" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix216" element="dmd_dot" state="0"> - <bounds x="345" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix217" element="dmd_dot" state="0"> - <bounds x="349" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix218" element="dmd_dot" state="0"> - <bounds x="353" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix219" element="dmd_dot" state="0"> - <bounds x="357" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix220" element="dmd_dot" state="0"> - <bounds x="361" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix221" element="dmd_dot" state="0"> - <bounds x="365" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix222" element="dmd_dot" state="0"> - <bounds x="369" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix223" element="dmd_dot" state="0"> - <bounds x="373" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix224" element="dmd_dot" state="0"> - <bounds x="377" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix225" element="dmd_dot" state="0"> - <bounds x="381" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix226" element="dmd_dot" state="0"> - <bounds x="385" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix227" element="dmd_dot" state="0"> - <bounds x="389" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix228" element="dmd_dot" state="0"> - <bounds x="393" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix229" element="dmd_dot" state="0"> - <bounds x="397" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix230" element="dmd_dot" state="0"> - <bounds x="401" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix231" element="dmd_dot" state="0"> - <bounds x="405" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix232" element="dmd_dot" state="0"> - <bounds x="409" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix233" element="dmd_dot" state="0"> - <bounds x="413" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix234" element="dmd_dot" state="0"> - <bounds x="417" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix235" element="dmd_dot" state="0"> - <bounds x="421" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix236" element="dmd_dot" state="0"> - <bounds x="425" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix237" element="dmd_dot" state="0"> - <bounds x="429" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix238" element="dmd_dot" state="0"> - <bounds x="433" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix239" element="dmd_dot" state="0"> - <bounds x="437" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix240" element="dmd_dot" state="0"> - <bounds x="441" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix241" element="dmd_dot" state="0"> - <bounds x="445" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix242" element="dmd_dot" state="0"> - <bounds x="449" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix243" element="dmd_dot" state="0"> - <bounds x="453" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix244" element="dmd_dot" state="0"> - <bounds x="457" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix245" element="dmd_dot" state="0"> - <bounds x="461" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix246" element="dmd_dot" state="0"> - <bounds x="465" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix247" element="dmd_dot" state="0"> - <bounds x="469" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix248" element="dmd_dot" state="0"> - <bounds x="473" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix249" element="dmd_dot" state="0"> - <bounds x="477" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix250" element="dmd_dot" state="0"> - <bounds x="481" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix251" element="dmd_dot" state="0"> - <bounds x="485" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix252" element="dmd_dot" state="0"> - <bounds x="489" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix253" element="dmd_dot" state="0"> - <bounds x="493" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix254" element="dmd_dot" state="0"> - <bounds x="497" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix255" element="dmd_dot" state="0"> - <bounds x="501" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix256" element="dmd_dot" state="0"> - <bounds x="505" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix257" element="dmd_dot" state="0"> - <bounds x="509" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix258" element="dmd_dot" state="0"> - <bounds x="513" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix259" element="dmd_dot" state="0"> - <bounds x="517" y="41" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix260" element="dmd_dot" state="0"> - <bounds x="261" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix261" element="dmd_dot" state="0"> - <bounds x="265" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix262" element="dmd_dot" state="0"> - <bounds x="269" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix263" element="dmd_dot" state="0"> - <bounds x="273" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix264" element="dmd_dot" state="0"> - <bounds x="277" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix265" element="dmd_dot" state="0"> - <bounds x="281" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix266" element="dmd_dot" state="0"> - <bounds x="285" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix267" element="dmd_dot" state="0"> - <bounds x="289" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix268" element="dmd_dot" state="0"> - <bounds x="293" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix269" element="dmd_dot" state="0"> - <bounds x="297" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix270" element="dmd_dot" state="0"> - <bounds x="301" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix271" element="dmd_dot" state="0"> - <bounds x="305" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix272" element="dmd_dot" state="0"> - <bounds x="309" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix273" element="dmd_dot" state="0"> - <bounds x="313" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix274" element="dmd_dot" state="0"> - <bounds x="317" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix275" element="dmd_dot" state="0"> - <bounds x="321" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix276" element="dmd_dot" state="0"> - <bounds x="325" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix277" element="dmd_dot" state="0"> - <bounds x="329" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix278" element="dmd_dot" state="0"> - <bounds x="333" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix279" element="dmd_dot" state="0"> - <bounds x="337" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix280" element="dmd_dot" state="0"> - <bounds x="341" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix281" element="dmd_dot" state="0"> - <bounds x="345" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix282" element="dmd_dot" state="0"> - <bounds x="349" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix283" element="dmd_dot" state="0"> - <bounds x="353" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix284" element="dmd_dot" state="0"> - <bounds x="357" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix285" element="dmd_dot" state="0"> - <bounds x="361" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix286" element="dmd_dot" state="0"> - <bounds x="365" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix287" element="dmd_dot" state="0"> - <bounds x="369" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix288" element="dmd_dot" state="0"> - <bounds x="373" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix289" element="dmd_dot" state="0"> - <bounds x="377" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix290" element="dmd_dot" state="0"> - <bounds x="381" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix291" element="dmd_dot" state="0"> - <bounds x="385" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix292" element="dmd_dot" state="0"> - <bounds x="389" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix293" element="dmd_dot" state="0"> - <bounds x="393" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix294" element="dmd_dot" state="0"> - <bounds x="397" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix295" element="dmd_dot" state="0"> - <bounds x="401" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix296" element="dmd_dot" state="0"> - <bounds x="405" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix297" element="dmd_dot" state="0"> - <bounds x="409" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix298" element="dmd_dot" state="0"> - <bounds x="413" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix299" element="dmd_dot" state="0"> - <bounds x="417" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix300" element="dmd_dot" state="0"> - <bounds x="421" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix301" element="dmd_dot" state="0"> - <bounds x="425" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix302" element="dmd_dot" state="0"> - <bounds x="429" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix303" element="dmd_dot" state="0"> - <bounds x="433" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix304" element="dmd_dot" state="0"> - <bounds x="437" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix305" element="dmd_dot" state="0"> - <bounds x="441" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix306" element="dmd_dot" state="0"> - <bounds x="445" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix307" element="dmd_dot" state="0"> - <bounds x="449" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix308" element="dmd_dot" state="0"> - <bounds x="453" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix309" element="dmd_dot" state="0"> - <bounds x="457" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix310" element="dmd_dot" state="0"> - <bounds x="461" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix311" element="dmd_dot" state="0"> - <bounds x="465" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix312" element="dmd_dot" state="0"> - <bounds x="469" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix313" element="dmd_dot" state="0"> - <bounds x="473" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix314" element="dmd_dot" state="0"> - <bounds x="477" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix315" element="dmd_dot" state="0"> - <bounds x="481" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix316" element="dmd_dot" state="0"> - <bounds x="485" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix317" element="dmd_dot" state="0"> - <bounds x="489" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix318" element="dmd_dot" state="0"> - <bounds x="493" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix319" element="dmd_dot" state="0"> - <bounds x="497" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix320" element="dmd_dot" state="0"> - <bounds x="501" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix321" element="dmd_dot" state="0"> - <bounds x="505" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix322" element="dmd_dot" state="0"> - <bounds x="509" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix323" element="dmd_dot" state="0"> - <bounds x="513" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix324" element="dmd_dot" state="0"> - <bounds x="517" y="45" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix325" element="dmd_dot" state="0"> - <bounds x="261" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix326" element="dmd_dot" state="0"> - <bounds x="265" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix327" element="dmd_dot" state="0"> - <bounds x="269" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix328" element="dmd_dot" state="0"> - <bounds x="273" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix329" element="dmd_dot" state="0"> - <bounds x="277" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix330" element="dmd_dot" state="0"> - <bounds x="281" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix331" element="dmd_dot" state="0"> - <bounds x="285" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix332" element="dmd_dot" state="0"> - <bounds x="289" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix333" element="dmd_dot" state="0"> - <bounds x="293" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix334" element="dmd_dot" state="0"> - <bounds x="297" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix335" element="dmd_dot" state="0"> - <bounds x="301" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix336" element="dmd_dot" state="0"> - <bounds x="305" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix337" element="dmd_dot" state="0"> - <bounds x="309" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix338" element="dmd_dot" state="0"> - <bounds x="313" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix339" element="dmd_dot" state="0"> - <bounds x="317" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix340" element="dmd_dot" state="0"> - <bounds x="321" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix341" element="dmd_dot" state="0"> - <bounds x="325" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix342" element="dmd_dot" state="0"> - <bounds x="329" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix343" element="dmd_dot" state="0"> - <bounds x="333" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix344" element="dmd_dot" state="0"> - <bounds x="337" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix345" element="dmd_dot" state="0"> - <bounds x="341" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix346" element="dmd_dot" state="0"> - <bounds x="345" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix347" element="dmd_dot" state="0"> - <bounds x="349" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix348" element="dmd_dot" state="0"> - <bounds x="353" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix349" element="dmd_dot" state="0"> - <bounds x="357" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix350" element="dmd_dot" state="0"> - <bounds x="361" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix351" element="dmd_dot" state="0"> - <bounds x="365" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix352" element="dmd_dot" state="0"> - <bounds x="369" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix353" element="dmd_dot" state="0"> - <bounds x="373" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix354" element="dmd_dot" state="0"> - <bounds x="377" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix355" element="dmd_dot" state="0"> - <bounds x="381" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix356" element="dmd_dot" state="0"> - <bounds x="385" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix357" element="dmd_dot" state="0"> - <bounds x="389" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix358" element="dmd_dot" state="0"> - <bounds x="393" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix359" element="dmd_dot" state="0"> - <bounds x="397" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix360" element="dmd_dot" state="0"> - <bounds x="401" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix361" element="dmd_dot" state="0"> - <bounds x="405" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix362" element="dmd_dot" state="0"> - <bounds x="409" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix363" element="dmd_dot" state="0"> - <bounds x="413" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix364" element="dmd_dot" state="0"> - <bounds x="417" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix365" element="dmd_dot" state="0"> - <bounds x="421" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix366" element="dmd_dot" state="0"> - <bounds x="425" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix367" element="dmd_dot" state="0"> - <bounds x="429" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix368" element="dmd_dot" state="0"> - <bounds x="433" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix369" element="dmd_dot" state="0"> - <bounds x="437" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix370" element="dmd_dot" state="0"> - <bounds x="441" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix371" element="dmd_dot" state="0"> - <bounds x="445" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix372" element="dmd_dot" state="0"> - <bounds x="449" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix373" element="dmd_dot" state="0"> - <bounds x="453" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix374" element="dmd_dot" state="0"> - <bounds x="457" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix375" element="dmd_dot" state="0"> - <bounds x="461" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix376" element="dmd_dot" state="0"> - <bounds x="465" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix377" element="dmd_dot" state="0"> - <bounds x="469" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix378" element="dmd_dot" state="0"> - <bounds x="473" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix379" element="dmd_dot" state="0"> - <bounds x="477" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix380" element="dmd_dot" state="0"> - <bounds x="481" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix381" element="dmd_dot" state="0"> - <bounds x="485" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix382" element="dmd_dot" state="0"> - <bounds x="489" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix383" element="dmd_dot" state="0"> - <bounds x="493" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix384" element="dmd_dot" state="0"> - <bounds x="497" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix385" element="dmd_dot" state="0"> - <bounds x="501" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix386" element="dmd_dot" state="0"> - <bounds x="505" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix387" element="dmd_dot" state="0"> - <bounds x="509" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix388" element="dmd_dot" state="0"> - <bounds x="513" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix389" element="dmd_dot" state="0"> - <bounds x="517" y="49" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix390" element="dmd_dot" state="0"> - <bounds x="261" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix391" element="dmd_dot" state="0"> - <bounds x="265" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix392" element="dmd_dot" state="0"> - <bounds x="269" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix393" element="dmd_dot" state="0"> - <bounds x="273" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix394" element="dmd_dot" state="0"> - <bounds x="277" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix395" element="dmd_dot" state="0"> - <bounds x="281" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix396" element="dmd_dot" state="0"> - <bounds x="285" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix397" element="dmd_dot" state="0"> - <bounds x="289" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix398" element="dmd_dot" state="0"> - <bounds x="293" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix399" element="dmd_dot" state="0"> - <bounds x="297" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix400" element="dmd_dot" state="0"> - <bounds x="301" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix401" element="dmd_dot" state="0"> - <bounds x="305" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix402" element="dmd_dot" state="0"> - <bounds x="309" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix403" element="dmd_dot" state="0"> - <bounds x="313" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix404" element="dmd_dot" state="0"> - <bounds x="317" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix405" element="dmd_dot" state="0"> - <bounds x="321" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix406" element="dmd_dot" state="0"> - <bounds x="325" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix407" element="dmd_dot" state="0"> - <bounds x="329" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix408" element="dmd_dot" state="0"> - <bounds x="333" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix409" element="dmd_dot" state="0"> - <bounds x="337" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix410" element="dmd_dot" state="0"> - <bounds x="341" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix411" element="dmd_dot" state="0"> - <bounds x="345" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix412" element="dmd_dot" state="0"> - <bounds x="349" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix413" element="dmd_dot" state="0"> - <bounds x="353" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix414" element="dmd_dot" state="0"> - <bounds x="357" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix415" element="dmd_dot" state="0"> - <bounds x="361" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix416" element="dmd_dot" state="0"> - <bounds x="365" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix417" element="dmd_dot" state="0"> - <bounds x="369" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix418" element="dmd_dot" state="0"> - <bounds x="373" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix419" element="dmd_dot" state="0"> - <bounds x="377" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix420" element="dmd_dot" state="0"> - <bounds x="381" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix421" element="dmd_dot" state="0"> - <bounds x="385" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix422" element="dmd_dot" state="0"> - <bounds x="389" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix423" element="dmd_dot" state="0"> - <bounds x="393" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix424" element="dmd_dot" state="0"> - <bounds x="397" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix425" element="dmd_dot" state="0"> - <bounds x="401" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix426" element="dmd_dot" state="0"> - <bounds x="405" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix427" element="dmd_dot" state="0"> - <bounds x="409" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix428" element="dmd_dot" state="0"> - <bounds x="413" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix429" element="dmd_dot" state="0"> - <bounds x="417" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix430" element="dmd_dot" state="0"> - <bounds x="421" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix431" element="dmd_dot" state="0"> - <bounds x="425" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix432" element="dmd_dot" state="0"> - <bounds x="429" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix433" element="dmd_dot" state="0"> - <bounds x="433" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix434" element="dmd_dot" state="0"> - <bounds x="437" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix435" element="dmd_dot" state="0"> - <bounds x="441" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix436" element="dmd_dot" state="0"> - <bounds x="445" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix437" element="dmd_dot" state="0"> - <bounds x="449" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix438" element="dmd_dot" state="0"> - <bounds x="453" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix439" element="dmd_dot" state="0"> - <bounds x="457" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix440" element="dmd_dot" state="0"> - <bounds x="461" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix441" element="dmd_dot" state="0"> - <bounds x="465" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix442" element="dmd_dot" state="0"> - <bounds x="469" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix443" element="dmd_dot" state="0"> - <bounds x="473" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix444" element="dmd_dot" state="0"> - <bounds x="477" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix445" element="dmd_dot" state="0"> - <bounds x="481" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix446" element="dmd_dot" state="0"> - <bounds x="485" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix447" element="dmd_dot" state="0"> - <bounds x="489" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix448" element="dmd_dot" state="0"> - <bounds x="493" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix449" element="dmd_dot" state="0"> - <bounds x="497" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix450" element="dmd_dot" state="0"> - <bounds x="501" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix451" element="dmd_dot" state="0"> - <bounds x="505" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix452" element="dmd_dot" state="0"> - <bounds x="509" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix453" element="dmd_dot" state="0"> - <bounds x="513" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix454" element="dmd_dot" state="0"> - <bounds x="517" y="53" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix455" element="dmd_dot" state="0"> - <bounds x="261" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix456" element="dmd_dot" state="0"> - <bounds x="265" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix457" element="dmd_dot" state="0"> - <bounds x="269" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix458" element="dmd_dot" state="0"> - <bounds x="273" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix459" element="dmd_dot" state="0"> - <bounds x="277" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix460" element="dmd_dot" state="0"> - <bounds x="281" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix461" element="dmd_dot" state="0"> - <bounds x="285" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix462" element="dmd_dot" state="0"> - <bounds x="289" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix463" element="dmd_dot" state="0"> - <bounds x="293" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix464" element="dmd_dot" state="0"> - <bounds x="297" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix465" element="dmd_dot" state="0"> - <bounds x="301" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix466" element="dmd_dot" state="0"> - <bounds x="305" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix467" element="dmd_dot" state="0"> - <bounds x="309" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix468" element="dmd_dot" state="0"> - <bounds x="313" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix469" element="dmd_dot" state="0"> - <bounds x="317" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix470" element="dmd_dot" state="0"> - <bounds x="321" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix471" element="dmd_dot" state="0"> - <bounds x="325" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix472" element="dmd_dot" state="0"> - <bounds x="329" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix473" element="dmd_dot" state="0"> - <bounds x="333" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix474" element="dmd_dot" state="0"> - <bounds x="337" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix475" element="dmd_dot" state="0"> - <bounds x="341" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix476" element="dmd_dot" state="0"> - <bounds x="345" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix477" element="dmd_dot" state="0"> - <bounds x="349" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix478" element="dmd_dot" state="0"> - <bounds x="353" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix479" element="dmd_dot" state="0"> - <bounds x="357" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix480" element="dmd_dot" state="0"> - <bounds x="361" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix481" element="dmd_dot" state="0"> - <bounds x="365" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix482" element="dmd_dot" state="0"> - <bounds x="369" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix483" element="dmd_dot" state="0"> - <bounds x="373" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix484" element="dmd_dot" state="0"> - <bounds x="377" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix485" element="dmd_dot" state="0"> - <bounds x="381" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix486" element="dmd_dot" state="0"> - <bounds x="385" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix487" element="dmd_dot" state="0"> - <bounds x="389" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix488" element="dmd_dot" state="0"> - <bounds x="393" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix489" element="dmd_dot" state="0"> - <bounds x="397" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix490" element="dmd_dot" state="0"> - <bounds x="401" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix491" element="dmd_dot" state="0"> - <bounds x="405" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix492" element="dmd_dot" state="0"> - <bounds x="409" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix493" element="dmd_dot" state="0"> - <bounds x="413" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix494" element="dmd_dot" state="0"> - <bounds x="417" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix495" element="dmd_dot" state="0"> - <bounds x="421" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix496" element="dmd_dot" state="0"> - <bounds x="425" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix497" element="dmd_dot" state="0"> - <bounds x="429" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix498" element="dmd_dot" state="0"> - <bounds x="433" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix499" element="dmd_dot" state="0"> - <bounds x="437" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix500" element="dmd_dot" state="0"> - <bounds x="441" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix501" element="dmd_dot" state="0"> - <bounds x="445" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix502" element="dmd_dot" state="0"> - <bounds x="449" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix503" element="dmd_dot" state="0"> - <bounds x="453" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix504" element="dmd_dot" state="0"> - <bounds x="457" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix505" element="dmd_dot" state="0"> - <bounds x="461" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix506" element="dmd_dot" state="0"> - <bounds x="465" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix507" element="dmd_dot" state="0"> - <bounds x="469" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix508" element="dmd_dot" state="0"> - <bounds x="473" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix509" element="dmd_dot" state="0"> - <bounds x="477" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix510" element="dmd_dot" state="0"> - <bounds x="481" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix511" element="dmd_dot" state="0"> - <bounds x="485" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix512" element="dmd_dot" state="0"> - <bounds x="489" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix513" element="dmd_dot" state="0"> - <bounds x="493" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix514" element="dmd_dot" state="0"> - <bounds x="497" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix515" element="dmd_dot" state="0"> - <bounds x="501" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix516" element="dmd_dot" state="0"> - <bounds x="505" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix517" element="dmd_dot" state="0"> - <bounds x="509" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix518" element="dmd_dot" state="0"> - <bounds x="513" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix519" element="dmd_dot" state="0"> - <bounds x="517" y="57" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix520" element="dmd_dot" state="0"> - <bounds x="261" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix521" element="dmd_dot" state="0"> - <bounds x="265" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix522" element="dmd_dot" state="0"> - <bounds x="269" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix523" element="dmd_dot" state="0"> - <bounds x="273" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix524" element="dmd_dot" state="0"> - <bounds x="277" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix525" element="dmd_dot" state="0"> - <bounds x="281" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix526" element="dmd_dot" state="0"> - <bounds x="285" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix527" element="dmd_dot" state="0"> - <bounds x="289" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix528" element="dmd_dot" state="0"> - <bounds x="293" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix529" element="dmd_dot" state="0"> - <bounds x="297" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix530" element="dmd_dot" state="0"> - <bounds x="301" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix531" element="dmd_dot" state="0"> - <bounds x="305" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix532" element="dmd_dot" state="0"> - <bounds x="309" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix533" element="dmd_dot" state="0"> - <bounds x="313" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix534" element="dmd_dot" state="0"> - <bounds x="317" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix535" element="dmd_dot" state="0"> - <bounds x="321" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix536" element="dmd_dot" state="0"> - <bounds x="325" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix537" element="dmd_dot" state="0"> - <bounds x="329" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix538" element="dmd_dot" state="0"> - <bounds x="333" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix539" element="dmd_dot" state="0"> - <bounds x="337" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix540" element="dmd_dot" state="0"> - <bounds x="341" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix541" element="dmd_dot" state="0"> - <bounds x="345" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix542" element="dmd_dot" state="0"> - <bounds x="349" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix543" element="dmd_dot" state="0"> - <bounds x="353" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix544" element="dmd_dot" state="0"> - <bounds x="357" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix545" element="dmd_dot" state="0"> - <bounds x="361" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix546" element="dmd_dot" state="0"> - <bounds x="365" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix547" element="dmd_dot" state="0"> - <bounds x="369" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix548" element="dmd_dot" state="0"> - <bounds x="373" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix549" element="dmd_dot" state="0"> - <bounds x="377" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix550" element="dmd_dot" state="0"> - <bounds x="381" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix551" element="dmd_dot" state="0"> - <bounds x="385" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix552" element="dmd_dot" state="0"> - <bounds x="389" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix553" element="dmd_dot" state="0"> - <bounds x="393" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix554" element="dmd_dot" state="0"> - <bounds x="397" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix555" element="dmd_dot" state="0"> - <bounds x="401" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix556" element="dmd_dot" state="0"> - <bounds x="405" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix557" element="dmd_dot" state="0"> - <bounds x="409" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix558" element="dmd_dot" state="0"> - <bounds x="413" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix559" element="dmd_dot" state="0"> - <bounds x="417" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix560" element="dmd_dot" state="0"> - <bounds x="421" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix561" element="dmd_dot" state="0"> - <bounds x="425" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix562" element="dmd_dot" state="0"> - <bounds x="429" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix563" element="dmd_dot" state="0"> - <bounds x="433" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix564" element="dmd_dot" state="0"> - <bounds x="437" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix565" element="dmd_dot" state="0"> - <bounds x="441" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix566" element="dmd_dot" state="0"> - <bounds x="445" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix567" element="dmd_dot" state="0"> - <bounds x="449" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix568" element="dmd_dot" state="0"> - <bounds x="453" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix569" element="dmd_dot" state="0"> - <bounds x="457" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix570" element="dmd_dot" state="0"> - <bounds x="461" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix571" element="dmd_dot" state="0"> - <bounds x="465" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix572" element="dmd_dot" state="0"> - <bounds x="469" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix573" element="dmd_dot" state="0"> - <bounds x="473" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix574" element="dmd_dot" state="0"> - <bounds x="477" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix575" element="dmd_dot" state="0"> - <bounds x="481" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix576" element="dmd_dot" state="0"> - <bounds x="485" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix577" element="dmd_dot" state="0"> - <bounds x="489" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix578" element="dmd_dot" state="0"> - <bounds x="493" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix579" element="dmd_dot" state="0"> - <bounds x="497" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix580" element="dmd_dot" state="0"> - <bounds x="501" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix581" element="dmd_dot" state="0"> - <bounds x="505" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix582" element="dmd_dot" state="0"> - <bounds x="509" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix583" element="dmd_dot" state="0"> - <bounds x="513" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix584" element="dmd_dot" state="0"> - <bounds x="517" y="61" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix585" element="dmd_dot" state="0"> - <bounds x="261" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix586" element="dmd_dot" state="0"> - <bounds x="265" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix587" element="dmd_dot" state="0"> - <bounds x="269" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix588" element="dmd_dot" state="0"> - <bounds x="273" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix589" element="dmd_dot" state="0"> - <bounds x="277" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix590" element="dmd_dot" state="0"> - <bounds x="281" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix591" element="dmd_dot" state="0"> - <bounds x="285" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix592" element="dmd_dot" state="0"> - <bounds x="289" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix593" element="dmd_dot" state="0"> - <bounds x="293" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix594" element="dmd_dot" state="0"> - <bounds x="297" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix595" element="dmd_dot" state="0"> - <bounds x="301" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix596" element="dmd_dot" state="0"> - <bounds x="305" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix597" element="dmd_dot" state="0"> - <bounds x="309" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix598" element="dmd_dot" state="0"> - <bounds x="313" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix599" element="dmd_dot" state="0"> - <bounds x="317" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix600" element="dmd_dot" state="0"> - <bounds x="321" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix601" element="dmd_dot" state="0"> - <bounds x="325" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix602" element="dmd_dot" state="0"> - <bounds x="329" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix603" element="dmd_dot" state="0"> - <bounds x="333" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix604" element="dmd_dot" state="0"> - <bounds x="337" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix605" element="dmd_dot" state="0"> - <bounds x="341" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix606" element="dmd_dot" state="0"> - <bounds x="345" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix607" element="dmd_dot" state="0"> - <bounds x="349" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix608" element="dmd_dot" state="0"> - <bounds x="353" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix609" element="dmd_dot" state="0"> - <bounds x="357" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix610" element="dmd_dot" state="0"> - <bounds x="361" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix611" element="dmd_dot" state="0"> - <bounds x="365" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix612" element="dmd_dot" state="0"> - <bounds x="369" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix613" element="dmd_dot" state="0"> - <bounds x="373" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix614" element="dmd_dot" state="0"> - <bounds x="377" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix615" element="dmd_dot" state="0"> - <bounds x="381" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix616" element="dmd_dot" state="0"> - <bounds x="385" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix617" element="dmd_dot" state="0"> - <bounds x="389" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix618" element="dmd_dot" state="0"> - <bounds x="393" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix619" element="dmd_dot" state="0"> - <bounds x="397" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix620" element="dmd_dot" state="0"> - <bounds x="401" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix621" element="dmd_dot" state="0"> - <bounds x="405" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix622" element="dmd_dot" state="0"> - <bounds x="409" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix623" element="dmd_dot" state="0"> - <bounds x="413" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix624" element="dmd_dot" state="0"> - <bounds x="417" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix625" element="dmd_dot" state="0"> - <bounds x="421" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix626" element="dmd_dot" state="0"> - <bounds x="425" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix627" element="dmd_dot" state="0"> - <bounds x="429" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix628" element="dmd_dot" state="0"> - <bounds x="433" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix629" element="dmd_dot" state="0"> - <bounds x="437" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix630" element="dmd_dot" state="0"> - <bounds x="441" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix631" element="dmd_dot" state="0"> - <bounds x="445" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix632" element="dmd_dot" state="0"> - <bounds x="449" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix633" element="dmd_dot" state="0"> - <bounds x="453" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix634" element="dmd_dot" state="0"> - <bounds x="457" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix635" element="dmd_dot" state="0"> - <bounds x="461" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix636" element="dmd_dot" state="0"> - <bounds x="465" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix637" element="dmd_dot" state="0"> - <bounds x="469" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix638" element="dmd_dot" state="0"> - <bounds x="473" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix639" element="dmd_dot" state="0"> - <bounds x="477" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix640" element="dmd_dot" state="0"> - <bounds x="481" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix641" element="dmd_dot" state="0"> - <bounds x="485" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix642" element="dmd_dot" state="0"> - <bounds x="489" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix643" element="dmd_dot" state="0"> - <bounds x="493" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix644" element="dmd_dot" state="0"> - <bounds x="497" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix645" element="dmd_dot" state="0"> - <bounds x="501" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix646" element="dmd_dot" state="0"> - <bounds x="505" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix647" element="dmd_dot" state="0"> - <bounds x="509" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix648" element="dmd_dot" state="0"> - <bounds x="513" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix649" element="dmd_dot" state="0"> - <bounds x="517" y="65" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix650" element="dmd_dot" state="0"> - <bounds x="261" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix651" element="dmd_dot" state="0"> - <bounds x="265" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix652" element="dmd_dot" state="0"> - <bounds x="269" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix653" element="dmd_dot" state="0"> - <bounds x="273" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix654" element="dmd_dot" state="0"> - <bounds x="277" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix655" element="dmd_dot" state="0"> - <bounds x="281" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix656" element="dmd_dot" state="0"> - <bounds x="285" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix657" element="dmd_dot" state="0"> - <bounds x="289" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix658" element="dmd_dot" state="0"> - <bounds x="293" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix659" element="dmd_dot" state="0"> - <bounds x="297" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix660" element="dmd_dot" state="0"> - <bounds x="301" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix661" element="dmd_dot" state="0"> - <bounds x="305" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix662" element="dmd_dot" state="0"> - <bounds x="309" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix663" element="dmd_dot" state="0"> - <bounds x="313" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix664" element="dmd_dot" state="0"> - <bounds x="317" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix665" element="dmd_dot" state="0"> - <bounds x="321" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix666" element="dmd_dot" state="0"> - <bounds x="325" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix667" element="dmd_dot" state="0"> - <bounds x="329" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix668" element="dmd_dot" state="0"> - <bounds x="333" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix669" element="dmd_dot" state="0"> - <bounds x="337" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix670" element="dmd_dot" state="0"> - <bounds x="341" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix671" element="dmd_dot" state="0"> - <bounds x="345" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix672" element="dmd_dot" state="0"> - <bounds x="349" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix673" element="dmd_dot" state="0"> - <bounds x="353" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix674" element="dmd_dot" state="0"> - <bounds x="357" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix675" element="dmd_dot" state="0"> - <bounds x="361" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix676" element="dmd_dot" state="0"> - <bounds x="365" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix677" element="dmd_dot" state="0"> - <bounds x="369" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix678" element="dmd_dot" state="0"> - <bounds x="373" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix679" element="dmd_dot" state="0"> - <bounds x="377" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix680" element="dmd_dot" state="0"> - <bounds x="381" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix681" element="dmd_dot" state="0"> - <bounds x="385" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix682" element="dmd_dot" state="0"> - <bounds x="389" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix683" element="dmd_dot" state="0"> - <bounds x="393" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix684" element="dmd_dot" state="0"> - <bounds x="397" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix685" element="dmd_dot" state="0"> - <bounds x="401" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix686" element="dmd_dot" state="0"> - <bounds x="405" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix687" element="dmd_dot" state="0"> - <bounds x="409" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix688" element="dmd_dot" state="0"> - <bounds x="413" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix689" element="dmd_dot" state="0"> - <bounds x="417" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix690" element="dmd_dot" state="0"> - <bounds x="421" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix691" element="dmd_dot" state="0"> - <bounds x="425" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix692" element="dmd_dot" state="0"> - <bounds x="429" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix693" element="dmd_dot" state="0"> - <bounds x="433" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix694" element="dmd_dot" state="0"> - <bounds x="437" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix695" element="dmd_dot" state="0"> - <bounds x="441" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix696" element="dmd_dot" state="0"> - <bounds x="445" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix697" element="dmd_dot" state="0"> - <bounds x="449" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix698" element="dmd_dot" state="0"> - <bounds x="453" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix699" element="dmd_dot" state="0"> - <bounds x="457" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix700" element="dmd_dot" state="0"> - <bounds x="461" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix701" element="dmd_dot" state="0"> - <bounds x="465" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix702" element="dmd_dot" state="0"> - <bounds x="469" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix703" element="dmd_dot" state="0"> - <bounds x="473" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix704" element="dmd_dot" state="0"> - <bounds x="477" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix705" element="dmd_dot" state="0"> - <bounds x="481" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix706" element="dmd_dot" state="0"> - <bounds x="485" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix707" element="dmd_dot" state="0"> - <bounds x="489" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix708" element="dmd_dot" state="0"> - <bounds x="493" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix709" element="dmd_dot" state="0"> - <bounds x="497" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix710" element="dmd_dot" state="0"> - <bounds x="501" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix711" element="dmd_dot" state="0"> - <bounds x="505" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix712" element="dmd_dot" state="0"> - <bounds x="509" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix713" element="dmd_dot" state="0"> - <bounds x="513" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix714" element="dmd_dot" state="0"> - <bounds x="517" y="69" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix715" element="dmd_dot" state="0"> - <bounds x="261" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix716" element="dmd_dot" state="0"> - <bounds x="265" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix717" element="dmd_dot" state="0"> - <bounds x="269" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix718" element="dmd_dot" state="0"> - <bounds x="273" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix719" element="dmd_dot" state="0"> - <bounds x="277" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix720" element="dmd_dot" state="0"> - <bounds x="281" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix721" element="dmd_dot" state="0"> - <bounds x="285" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix722" element="dmd_dot" state="0"> - <bounds x="289" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix723" element="dmd_dot" state="0"> - <bounds x="293" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix724" element="dmd_dot" state="0"> - <bounds x="297" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix725" element="dmd_dot" state="0"> - <bounds x="301" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix726" element="dmd_dot" state="0"> - <bounds x="305" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix727" element="dmd_dot" state="0"> - <bounds x="309" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix728" element="dmd_dot" state="0"> - <bounds x="313" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix729" element="dmd_dot" state="0"> - <bounds x="317" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix730" element="dmd_dot" state="0"> - <bounds x="321" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix731" element="dmd_dot" state="0"> - <bounds x="325" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix732" element="dmd_dot" state="0"> - <bounds x="329" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix733" element="dmd_dot" state="0"> - <bounds x="333" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix734" element="dmd_dot" state="0"> - <bounds x="337" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix735" element="dmd_dot" state="0"> - <bounds x="341" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix736" element="dmd_dot" state="0"> - <bounds x="345" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix737" element="dmd_dot" state="0"> - <bounds x="349" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix738" element="dmd_dot" state="0"> - <bounds x="353" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix739" element="dmd_dot" state="0"> - <bounds x="357" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix740" element="dmd_dot" state="0"> - <bounds x="361" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix741" element="dmd_dot" state="0"> - <bounds x="365" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix742" element="dmd_dot" state="0"> - <bounds x="369" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix743" element="dmd_dot" state="0"> - <bounds x="373" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix744" element="dmd_dot" state="0"> - <bounds x="377" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix745" element="dmd_dot" state="0"> - <bounds x="381" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix746" element="dmd_dot" state="0"> - <bounds x="385" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix747" element="dmd_dot" state="0"> - <bounds x="389" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix748" element="dmd_dot" state="0"> - <bounds x="393" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix749" element="dmd_dot" state="0"> - <bounds x="397" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix750" element="dmd_dot" state="0"> - <bounds x="401" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix751" element="dmd_dot" state="0"> - <bounds x="405" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix752" element="dmd_dot" state="0"> - <bounds x="409" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix753" element="dmd_dot" state="0"> - <bounds x="413" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix754" element="dmd_dot" state="0"> - <bounds x="417" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix755" element="dmd_dot" state="0"> - <bounds x="421" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix756" element="dmd_dot" state="0"> - <bounds x="425" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix757" element="dmd_dot" state="0"> - <bounds x="429" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix758" element="dmd_dot" state="0"> - <bounds x="433" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix759" element="dmd_dot" state="0"> - <bounds x="437" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix760" element="dmd_dot" state="0"> - <bounds x="441" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix761" element="dmd_dot" state="0"> - <bounds x="445" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix762" element="dmd_dot" state="0"> - <bounds x="449" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix763" element="dmd_dot" state="0"> - <bounds x="453" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix764" element="dmd_dot" state="0"> - <bounds x="457" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix765" element="dmd_dot" state="0"> - <bounds x="461" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix766" element="dmd_dot" state="0"> - <bounds x="465" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix767" element="dmd_dot" state="0"> - <bounds x="469" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix768" element="dmd_dot" state="0"> - <bounds x="473" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix769" element="dmd_dot" state="0"> - <bounds x="477" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix770" element="dmd_dot" state="0"> - <bounds x="481" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix771" element="dmd_dot" state="0"> - <bounds x="485" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix772" element="dmd_dot" state="0"> - <bounds x="489" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix773" element="dmd_dot" state="0"> - <bounds x="493" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix774" element="dmd_dot" state="0"> - <bounds x="497" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix775" element="dmd_dot" state="0"> - <bounds x="501" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix776" element="dmd_dot" state="0"> - <bounds x="505" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix777" element="dmd_dot" state="0"> - <bounds x="509" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix778" element="dmd_dot" state="0"> - <bounds x="513" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix779" element="dmd_dot" state="0"> - <bounds x="517" y="73" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix780" element="dmd_dot" state="0"> - <bounds x="261" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix781" element="dmd_dot" state="0"> - <bounds x="265" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix782" element="dmd_dot" state="0"> - <bounds x="269" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix783" element="dmd_dot" state="0"> - <bounds x="273" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix784" element="dmd_dot" state="0"> - <bounds x="277" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix785" element="dmd_dot" state="0"> - <bounds x="281" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix786" element="dmd_dot" state="0"> - <bounds x="285" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix787" element="dmd_dot" state="0"> - <bounds x="289" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix788" element="dmd_dot" state="0"> - <bounds x="293" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix789" element="dmd_dot" state="0"> - <bounds x="297" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix790" element="dmd_dot" state="0"> - <bounds x="301" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix791" element="dmd_dot" state="0"> - <bounds x="305" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix792" element="dmd_dot" state="0"> - <bounds x="309" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix793" element="dmd_dot" state="0"> - <bounds x="313" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix794" element="dmd_dot" state="0"> - <bounds x="317" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix795" element="dmd_dot" state="0"> - <bounds x="321" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix796" element="dmd_dot" state="0"> - <bounds x="325" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix797" element="dmd_dot" state="0"> - <bounds x="329" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix798" element="dmd_dot" state="0"> - <bounds x="333" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix799" element="dmd_dot" state="0"> - <bounds x="337" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix800" element="dmd_dot" state="0"> - <bounds x="341" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix801" element="dmd_dot" state="0"> - <bounds x="345" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix802" element="dmd_dot" state="0"> - <bounds x="349" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix803" element="dmd_dot" state="0"> - <bounds x="353" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix804" element="dmd_dot" state="0"> - <bounds x="357" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix805" element="dmd_dot" state="0"> - <bounds x="361" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix806" element="dmd_dot" state="0"> - <bounds x="365" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix807" element="dmd_dot" state="0"> - <bounds x="369" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix808" element="dmd_dot" state="0"> - <bounds x="373" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix809" element="dmd_dot" state="0"> - <bounds x="377" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix810" element="dmd_dot" state="0"> - <bounds x="381" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix811" element="dmd_dot" state="0"> - <bounds x="385" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix812" element="dmd_dot" state="0"> - <bounds x="389" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix813" element="dmd_dot" state="0"> - <bounds x="393" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix814" element="dmd_dot" state="0"> - <bounds x="397" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix815" element="dmd_dot" state="0"> - <bounds x="401" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix816" element="dmd_dot" state="0"> - <bounds x="405" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix817" element="dmd_dot" state="0"> - <bounds x="409" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix818" element="dmd_dot" state="0"> - <bounds x="413" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix819" element="dmd_dot" state="0"> - <bounds x="417" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix820" element="dmd_dot" state="0"> - <bounds x="421" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix821" element="dmd_dot" state="0"> - <bounds x="425" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix822" element="dmd_dot" state="0"> - <bounds x="429" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix823" element="dmd_dot" state="0"> - <bounds x="433" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix824" element="dmd_dot" state="0"> - <bounds x="437" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix825" element="dmd_dot" state="0"> - <bounds x="441" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix826" element="dmd_dot" state="0"> - <bounds x="445" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix827" element="dmd_dot" state="0"> - <bounds x="449" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix828" element="dmd_dot" state="0"> - <bounds x="453" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix829" element="dmd_dot" state="0"> - <bounds x="457" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix830" element="dmd_dot" state="0"> - <bounds x="461" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix831" element="dmd_dot" state="0"> - <bounds x="465" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix832" element="dmd_dot" state="0"> - <bounds x="469" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix833" element="dmd_dot" state="0"> - <bounds x="473" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix834" element="dmd_dot" state="0"> - <bounds x="477" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix835" element="dmd_dot" state="0"> - <bounds x="481" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix836" element="dmd_dot" state="0"> - <bounds x="485" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix837" element="dmd_dot" state="0"> - <bounds x="489" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix838" element="dmd_dot" state="0"> - <bounds x="493" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix839" element="dmd_dot" state="0"> - <bounds x="497" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix840" element="dmd_dot" state="0"> - <bounds x="501" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix841" element="dmd_dot" state="0"> - <bounds x="505" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix842" element="dmd_dot" state="0"> - <bounds x="509" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix843" element="dmd_dot" state="0"> - <bounds x="513" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix844" element="dmd_dot" state="0"> - <bounds x="517" y="77" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix845" element="dmd_dot" state="0"> - <bounds x="261" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix846" element="dmd_dot" state="0"> - <bounds x="265" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix847" element="dmd_dot" state="0"> - <bounds x="269" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix848" element="dmd_dot" state="0"> - <bounds x="273" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix849" element="dmd_dot" state="0"> - <bounds x="277" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix850" element="dmd_dot" state="0"> - <bounds x="281" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix851" element="dmd_dot" state="0"> - <bounds x="285" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix852" element="dmd_dot" state="0"> - <bounds x="289" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix853" element="dmd_dot" state="0"> - <bounds x="293" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix854" element="dmd_dot" state="0"> - <bounds x="297" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix855" element="dmd_dot" state="0"> - <bounds x="301" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix856" element="dmd_dot" state="0"> - <bounds x="305" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix857" element="dmd_dot" state="0"> - <bounds x="309" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix858" element="dmd_dot" state="0"> - <bounds x="313" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix859" element="dmd_dot" state="0"> - <bounds x="317" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix860" element="dmd_dot" state="0"> - <bounds x="321" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix861" element="dmd_dot" state="0"> - <bounds x="325" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix862" element="dmd_dot" state="0"> - <bounds x="329" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix863" element="dmd_dot" state="0"> - <bounds x="333" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix864" element="dmd_dot" state="0"> - <bounds x="337" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix865" element="dmd_dot" state="0"> - <bounds x="341" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix866" element="dmd_dot" state="0"> - <bounds x="345" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix867" element="dmd_dot" state="0"> - <bounds x="349" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix868" element="dmd_dot" state="0"> - <bounds x="353" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix869" element="dmd_dot" state="0"> - <bounds x="357" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix870" element="dmd_dot" state="0"> - <bounds x="361" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix871" element="dmd_dot" state="0"> - <bounds x="365" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix872" element="dmd_dot" state="0"> - <bounds x="369" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix873" element="dmd_dot" state="0"> - <bounds x="373" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix874" element="dmd_dot" state="0"> - <bounds x="377" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix875" element="dmd_dot" state="0"> - <bounds x="381" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix876" element="dmd_dot" state="0"> - <bounds x="385" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix877" element="dmd_dot" state="0"> - <bounds x="389" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix878" element="dmd_dot" state="0"> - <bounds x="393" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix879" element="dmd_dot" state="0"> - <bounds x="397" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix880" element="dmd_dot" state="0"> - <bounds x="401" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix881" element="dmd_dot" state="0"> - <bounds x="405" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix882" element="dmd_dot" state="0"> - <bounds x="409" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix883" element="dmd_dot" state="0"> - <bounds x="413" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix884" element="dmd_dot" state="0"> - <bounds x="417" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix885" element="dmd_dot" state="0"> - <bounds x="421" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix886" element="dmd_dot" state="0"> - <bounds x="425" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix887" element="dmd_dot" state="0"> - <bounds x="429" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix888" element="dmd_dot" state="0"> - <bounds x="433" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix889" element="dmd_dot" state="0"> - <bounds x="437" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix890" element="dmd_dot" state="0"> - <bounds x="441" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix891" element="dmd_dot" state="0"> - <bounds x="445" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix892" element="dmd_dot" state="0"> - <bounds x="449" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix893" element="dmd_dot" state="0"> - <bounds x="453" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix894" element="dmd_dot" state="0"> - <bounds x="457" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix895" element="dmd_dot" state="0"> - <bounds x="461" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix896" element="dmd_dot" state="0"> - <bounds x="465" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix897" element="dmd_dot" state="0"> - <bounds x="469" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix898" element="dmd_dot" state="0"> - <bounds x="473" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix899" element="dmd_dot" state="0"> - <bounds x="477" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix900" element="dmd_dot" state="0"> - <bounds x="481" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix901" element="dmd_dot" state="0"> - <bounds x="485" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix902" element="dmd_dot" state="0"> - <bounds x="489" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix903" element="dmd_dot" state="0"> - <bounds x="493" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix904" element="dmd_dot" state="0"> - <bounds x="497" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix905" element="dmd_dot" state="0"> - <bounds x="501" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix906" element="dmd_dot" state="0"> - <bounds x="505" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix907" element="dmd_dot" state="0"> - <bounds x="509" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix908" element="dmd_dot" state="0"> - <bounds x="513" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix909" element="dmd_dot" state="0"> - <bounds x="517" y="81" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix910" element="dmd_dot" state="0"> - <bounds x="261" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix911" element="dmd_dot" state="0"> - <bounds x="265" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix912" element="dmd_dot" state="0"> - <bounds x="269" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix913" element="dmd_dot" state="0"> - <bounds x="273" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix914" element="dmd_dot" state="0"> - <bounds x="277" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix915" element="dmd_dot" state="0"> - <bounds x="281" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix916" element="dmd_dot" state="0"> - <bounds x="285" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix917" element="dmd_dot" state="0"> - <bounds x="289" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix918" element="dmd_dot" state="0"> - <bounds x="293" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix919" element="dmd_dot" state="0"> - <bounds x="297" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix920" element="dmd_dot" state="0"> - <bounds x="301" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix921" element="dmd_dot" state="0"> - <bounds x="305" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix922" element="dmd_dot" state="0"> - <bounds x="309" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix923" element="dmd_dot" state="0"> - <bounds x="313" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix924" element="dmd_dot" state="0"> - <bounds x="317" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix925" element="dmd_dot" state="0"> - <bounds x="321" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix926" element="dmd_dot" state="0"> - <bounds x="325" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix927" element="dmd_dot" state="0"> - <bounds x="329" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix928" element="dmd_dot" state="0"> - <bounds x="333" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix929" element="dmd_dot" state="0"> - <bounds x="337" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix930" element="dmd_dot" state="0"> - <bounds x="341" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix931" element="dmd_dot" state="0"> - <bounds x="345" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix932" element="dmd_dot" state="0"> - <bounds x="349" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix933" element="dmd_dot" state="0"> - <bounds x="353" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix934" element="dmd_dot" state="0"> - <bounds x="357" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix935" element="dmd_dot" state="0"> - <bounds x="361" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix936" element="dmd_dot" state="0"> - <bounds x="365" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix937" element="dmd_dot" state="0"> - <bounds x="369" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix938" element="dmd_dot" state="0"> - <bounds x="373" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix939" element="dmd_dot" state="0"> - <bounds x="377" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix940" element="dmd_dot" state="0"> - <bounds x="381" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix941" element="dmd_dot" state="0"> - <bounds x="385" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix942" element="dmd_dot" state="0"> - <bounds x="389" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix943" element="dmd_dot" state="0"> - <bounds x="393" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix944" element="dmd_dot" state="0"> - <bounds x="397" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix945" element="dmd_dot" state="0"> - <bounds x="401" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix946" element="dmd_dot" state="0"> - <bounds x="405" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix947" element="dmd_dot" state="0"> - <bounds x="409" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix948" element="dmd_dot" state="0"> - <bounds x="413" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix949" element="dmd_dot" state="0"> - <bounds x="417" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix950" element="dmd_dot" state="0"> - <bounds x="421" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix951" element="dmd_dot" state="0"> - <bounds x="425" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix952" element="dmd_dot" state="0"> - <bounds x="429" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix953" element="dmd_dot" state="0"> - <bounds x="433" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix954" element="dmd_dot" state="0"> - <bounds x="437" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix955" element="dmd_dot" state="0"> - <bounds x="441" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix956" element="dmd_dot" state="0"> - <bounds x="445" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix957" element="dmd_dot" state="0"> - <bounds x="449" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix958" element="dmd_dot" state="0"> - <bounds x="453" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix959" element="dmd_dot" state="0"> - <bounds x="457" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix960" element="dmd_dot" state="0"> - <bounds x="461" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix961" element="dmd_dot" state="0"> - <bounds x="465" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix962" element="dmd_dot" state="0"> - <bounds x="469" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix963" element="dmd_dot" state="0"> - <bounds x="473" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix964" element="dmd_dot" state="0"> - <bounds x="477" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix965" element="dmd_dot" state="0"> - <bounds x="481" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix966" element="dmd_dot" state="0"> - <bounds x="485" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix967" element="dmd_dot" state="0"> - <bounds x="489" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix968" element="dmd_dot" state="0"> - <bounds x="493" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix969" element="dmd_dot" state="0"> - <bounds x="497" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix970" element="dmd_dot" state="0"> - <bounds x="501" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix971" element="dmd_dot" state="0"> - <bounds x="505" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix972" element="dmd_dot" state="0"> - <bounds x="509" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix973" element="dmd_dot" state="0"> - <bounds x="513" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix974" element="dmd_dot" state="0"> - <bounds x="517" y="85" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix975" element="dmd_dot" state="0"> - <bounds x="261" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix976" element="dmd_dot" state="0"> - <bounds x="265" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix977" element="dmd_dot" state="0"> - <bounds x="269" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix978" element="dmd_dot" state="0"> - <bounds x="273" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix979" element="dmd_dot" state="0"> - <bounds x="277" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix980" element="dmd_dot" state="0"> - <bounds x="281" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix981" element="dmd_dot" state="0"> - <bounds x="285" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix982" element="dmd_dot" state="0"> - <bounds x="289" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix983" element="dmd_dot" state="0"> - <bounds x="293" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix984" element="dmd_dot" state="0"> - <bounds x="297" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix985" element="dmd_dot" state="0"> - <bounds x="301" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix986" element="dmd_dot" state="0"> - <bounds x="305" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix987" element="dmd_dot" state="0"> - <bounds x="309" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix988" element="dmd_dot" state="0"> - <bounds x="313" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix989" element="dmd_dot" state="0"> - <bounds x="317" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix990" element="dmd_dot" state="0"> - <bounds x="321" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix991" element="dmd_dot" state="0"> - <bounds x="325" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix992" element="dmd_dot" state="0"> - <bounds x="329" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix993" element="dmd_dot" state="0"> - <bounds x="333" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix994" element="dmd_dot" state="0"> - <bounds x="337" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix995" element="dmd_dot" state="0"> - <bounds x="341" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix996" element="dmd_dot" state="0"> - <bounds x="345" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix997" element="dmd_dot" state="0"> - <bounds x="349" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix998" element="dmd_dot" state="0"> - <bounds x="353" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix999" element="dmd_dot" state="0"> - <bounds x="357" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1000" element="dmd_dot" state="0"> - <bounds x="361" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1001" element="dmd_dot" state="0"> - <bounds x="365" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1002" element="dmd_dot" state="0"> - <bounds x="369" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1003" element="dmd_dot" state="0"> - <bounds x="373" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1004" element="dmd_dot" state="0"> - <bounds x="377" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1005" element="dmd_dot" state="0"> - <bounds x="381" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1006" element="dmd_dot" state="0"> - <bounds x="385" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1007" element="dmd_dot" state="0"> - <bounds x="389" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1008" element="dmd_dot" state="0"> - <bounds x="393" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1009" element="dmd_dot" state="0"> - <bounds x="397" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1010" element="dmd_dot" state="0"> - <bounds x="401" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1011" element="dmd_dot" state="0"> - <bounds x="405" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1012" element="dmd_dot" state="0"> - <bounds x="409" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1013" element="dmd_dot" state="0"> - <bounds x="413" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1014" element="dmd_dot" state="0"> - <bounds x="417" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1015" element="dmd_dot" state="0"> - <bounds x="421" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1016" element="dmd_dot" state="0"> - <bounds x="425" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1017" element="dmd_dot" state="0"> - <bounds x="429" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1018" element="dmd_dot" state="0"> - <bounds x="433" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1019" element="dmd_dot" state="0"> - <bounds x="437" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1020" element="dmd_dot" state="0"> - <bounds x="441" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1021" element="dmd_dot" state="0"> - <bounds x="445" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1022" element="dmd_dot" state="0"> - <bounds x="449" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1023" element="dmd_dot" state="0"> - <bounds x="453" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1024" element="dmd_dot" state="0"> - <bounds x="457" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1025" element="dmd_dot" state="0"> - <bounds x="461" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1026" element="dmd_dot" state="0"> - <bounds x="465" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1027" element="dmd_dot" state="0"> - <bounds x="469" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1028" element="dmd_dot" state="0"> - <bounds x="473" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1029" element="dmd_dot" state="0"> - <bounds x="477" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1030" element="dmd_dot" state="0"> - <bounds x="481" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1031" element="dmd_dot" state="0"> - <bounds x="485" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1032" element="dmd_dot" state="0"> - <bounds x="489" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1033" element="dmd_dot" state="0"> - <bounds x="493" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1034" element="dmd_dot" state="0"> - <bounds x="497" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1035" element="dmd_dot" state="0"> - <bounds x="501" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1036" element="dmd_dot" state="0"> - <bounds x="505" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1037" element="dmd_dot" state="0"> - <bounds x="509" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1038" element="dmd_dot" state="0"> - <bounds x="513" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1039" element="dmd_dot" state="0"> - <bounds x="517" y="89" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1040" element="dmd_dot" state="0"> - <bounds x="261" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1041" element="dmd_dot" state="0"> - <bounds x="265" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1042" element="dmd_dot" state="0"> - <bounds x="269" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1043" element="dmd_dot" state="0"> - <bounds x="273" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1044" element="dmd_dot" state="0"> - <bounds x="277" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1045" element="dmd_dot" state="0"> - <bounds x="281" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1046" element="dmd_dot" state="0"> - <bounds x="285" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1047" element="dmd_dot" state="0"> - <bounds x="289" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1048" element="dmd_dot" state="0"> - <bounds x="293" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1049" element="dmd_dot" state="0"> - <bounds x="297" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1050" element="dmd_dot" state="0"> - <bounds x="301" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1051" element="dmd_dot" state="0"> - <bounds x="305" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1052" element="dmd_dot" state="0"> - <bounds x="309" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1053" element="dmd_dot" state="0"> - <bounds x="313" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1054" element="dmd_dot" state="0"> - <bounds x="317" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1055" element="dmd_dot" state="0"> - <bounds x="321" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1056" element="dmd_dot" state="0"> - <bounds x="325" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1057" element="dmd_dot" state="0"> - <bounds x="329" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1058" element="dmd_dot" state="0"> - <bounds x="333" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1059" element="dmd_dot" state="0"> - <bounds x="337" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1060" element="dmd_dot" state="0"> - <bounds x="341" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1061" element="dmd_dot" state="0"> - <bounds x="345" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1062" element="dmd_dot" state="0"> - <bounds x="349" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1063" element="dmd_dot" state="0"> - <bounds x="353" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1064" element="dmd_dot" state="0"> - <bounds x="357" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1065" element="dmd_dot" state="0"> - <bounds x="361" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1066" element="dmd_dot" state="0"> - <bounds x="365" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1067" element="dmd_dot" state="0"> - <bounds x="369" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1068" element="dmd_dot" state="0"> - <bounds x="373" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1069" element="dmd_dot" state="0"> - <bounds x="377" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1070" element="dmd_dot" state="0"> - <bounds x="381" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1071" element="dmd_dot" state="0"> - <bounds x="385" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1072" element="dmd_dot" state="0"> - <bounds x="389" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1073" element="dmd_dot" state="0"> - <bounds x="393" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1074" element="dmd_dot" state="0"> - <bounds x="397" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1075" element="dmd_dot" state="0"> - <bounds x="401" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1076" element="dmd_dot" state="0"> - <bounds x="405" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1077" element="dmd_dot" state="0"> - <bounds x="409" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1078" element="dmd_dot" state="0"> - <bounds x="413" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1079" element="dmd_dot" state="0"> - <bounds x="417" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1080" element="dmd_dot" state="0"> - <bounds x="421" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1081" element="dmd_dot" state="0"> - <bounds x="425" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1082" element="dmd_dot" state="0"> - <bounds x="429" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1083" element="dmd_dot" state="0"> - <bounds x="433" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1084" element="dmd_dot" state="0"> - <bounds x="437" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1085" element="dmd_dot" state="0"> - <bounds x="441" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1086" element="dmd_dot" state="0"> - <bounds x="445" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1087" element="dmd_dot" state="0"> - <bounds x="449" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1088" element="dmd_dot" state="0"> - <bounds x="453" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1089" element="dmd_dot" state="0"> - <bounds x="457" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1090" element="dmd_dot" state="0"> - <bounds x="461" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1091" element="dmd_dot" state="0"> - <bounds x="465" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1092" element="dmd_dot" state="0"> - <bounds x="469" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1093" element="dmd_dot" state="0"> - <bounds x="473" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1094" element="dmd_dot" state="0"> - <bounds x="477" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1095" element="dmd_dot" state="0"> - <bounds x="481" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1096" element="dmd_dot" state="0"> - <bounds x="485" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1097" element="dmd_dot" state="0"> - <bounds x="489" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1098" element="dmd_dot" state="0"> - <bounds x="493" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1099" element="dmd_dot" state="0"> - <bounds x="497" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1100" element="dmd_dot" state="0"> - <bounds x="501" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1101" element="dmd_dot" state="0"> - <bounds x="505" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1102" element="dmd_dot" state="0"> - <bounds x="509" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1103" element="dmd_dot" state="0"> - <bounds x="513" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1104" element="dmd_dot" state="0"> - <bounds x="517" y="93" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1105" element="dmd_dot" state="0"> - <bounds x="261" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1106" element="dmd_dot" state="0"> - <bounds x="265" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1107" element="dmd_dot" state="0"> - <bounds x="269" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1108" element="dmd_dot" state="0"> - <bounds x="273" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1109" element="dmd_dot" state="0"> - <bounds x="277" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1110" element="dmd_dot" state="0"> - <bounds x="281" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1111" element="dmd_dot" state="0"> - <bounds x="285" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1112" element="dmd_dot" state="0"> - <bounds x="289" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1113" element="dmd_dot" state="0"> - <bounds x="293" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1114" element="dmd_dot" state="0"> - <bounds x="297" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1115" element="dmd_dot" state="0"> - <bounds x="301" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1116" element="dmd_dot" state="0"> - <bounds x="305" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1117" element="dmd_dot" state="0"> - <bounds x="309" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1118" element="dmd_dot" state="0"> - <bounds x="313" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1119" element="dmd_dot" state="0"> - <bounds x="317" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1120" element="dmd_dot" state="0"> - <bounds x="321" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1121" element="dmd_dot" state="0"> - <bounds x="325" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1122" element="dmd_dot" state="0"> - <bounds x="329" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1123" element="dmd_dot" state="0"> - <bounds x="333" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1124" element="dmd_dot" state="0"> - <bounds x="337" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1125" element="dmd_dot" state="0"> - <bounds x="341" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1126" element="dmd_dot" state="0"> - <bounds x="345" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1127" element="dmd_dot" state="0"> - <bounds x="349" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1128" element="dmd_dot" state="0"> - <bounds x="353" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1129" element="dmd_dot" state="0"> - <bounds x="357" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1130" element="dmd_dot" state="0"> - <bounds x="361" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1131" element="dmd_dot" state="0"> - <bounds x="365" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1132" element="dmd_dot" state="0"> - <bounds x="369" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1133" element="dmd_dot" state="0"> - <bounds x="373" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1134" element="dmd_dot" state="0"> - <bounds x="377" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1135" element="dmd_dot" state="0"> - <bounds x="381" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1136" element="dmd_dot" state="0"> - <bounds x="385" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1137" element="dmd_dot" state="0"> - <bounds x="389" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1138" element="dmd_dot" state="0"> - <bounds x="393" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1139" element="dmd_dot" state="0"> - <bounds x="397" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1140" element="dmd_dot" state="0"> - <bounds x="401" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1141" element="dmd_dot" state="0"> - <bounds x="405" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1142" element="dmd_dot" state="0"> - <bounds x="409" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1143" element="dmd_dot" state="0"> - <bounds x="413" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1144" element="dmd_dot" state="0"> - <bounds x="417" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1145" element="dmd_dot" state="0"> - <bounds x="421" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1146" element="dmd_dot" state="0"> - <bounds x="425" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1147" element="dmd_dot" state="0"> - <bounds x="429" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1148" element="dmd_dot" state="0"> - <bounds x="433" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1149" element="dmd_dot" state="0"> - <bounds x="437" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1150" element="dmd_dot" state="0"> - <bounds x="441" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1151" element="dmd_dot" state="0"> - <bounds x="445" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1152" element="dmd_dot" state="0"> - <bounds x="449" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1153" element="dmd_dot" state="0"> - <bounds x="453" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1154" element="dmd_dot" state="0"> - <bounds x="457" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1155" element="dmd_dot" state="0"> - <bounds x="461" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1156" element="dmd_dot" state="0"> - <bounds x="465" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1157" element="dmd_dot" state="0"> - <bounds x="469" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1158" element="dmd_dot" state="0"> - <bounds x="473" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1159" element="dmd_dot" state="0"> - <bounds x="477" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1160" element="dmd_dot" state="0"> - <bounds x="481" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1161" element="dmd_dot" state="0"> - <bounds x="485" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1162" element="dmd_dot" state="0"> - <bounds x="489" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1163" element="dmd_dot" state="0"> - <bounds x="493" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1164" element="dmd_dot" state="0"> - <bounds x="497" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1165" element="dmd_dot" state="0"> - <bounds x="501" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1166" element="dmd_dot" state="0"> - <bounds x="505" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1167" element="dmd_dot" state="0"> - <bounds x="509" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1168" element="dmd_dot" state="0"> - <bounds x="513" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1169" element="dmd_dot" state="0"> - <bounds x="517" y="97" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1170" element="dmd_dot" state="0"> - <bounds x="261" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1171" element="dmd_dot" state="0"> - <bounds x="265" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1172" element="dmd_dot" state="0"> - <bounds x="269" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1173" element="dmd_dot" state="0"> - <bounds x="273" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1174" element="dmd_dot" state="0"> - <bounds x="277" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1175" element="dmd_dot" state="0"> - <bounds x="281" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1176" element="dmd_dot" state="0"> - <bounds x="285" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1177" element="dmd_dot" state="0"> - <bounds x="289" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1178" element="dmd_dot" state="0"> - <bounds x="293" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1179" element="dmd_dot" state="0"> - <bounds x="297" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1180" element="dmd_dot" state="0"> - <bounds x="301" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1181" element="dmd_dot" state="0"> - <bounds x="305" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1182" element="dmd_dot" state="0"> - <bounds x="309" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1183" element="dmd_dot" state="0"> - <bounds x="313" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1184" element="dmd_dot" state="0"> - <bounds x="317" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1185" element="dmd_dot" state="0"> - <bounds x="321" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1186" element="dmd_dot" state="0"> - <bounds x="325" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1187" element="dmd_dot" state="0"> - <bounds x="329" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1188" element="dmd_dot" state="0"> - <bounds x="333" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1189" element="dmd_dot" state="0"> - <bounds x="337" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1190" element="dmd_dot" state="0"> - <bounds x="341" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1191" element="dmd_dot" state="0"> - <bounds x="345" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1192" element="dmd_dot" state="0"> - <bounds x="349" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1193" element="dmd_dot" state="0"> - <bounds x="353" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1194" element="dmd_dot" state="0"> - <bounds x="357" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1195" element="dmd_dot" state="0"> - <bounds x="361" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1196" element="dmd_dot" state="0"> - <bounds x="365" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1197" element="dmd_dot" state="0"> - <bounds x="369" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1198" element="dmd_dot" state="0"> - <bounds x="373" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1199" element="dmd_dot" state="0"> - <bounds x="377" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1200" element="dmd_dot" state="0"> - <bounds x="381" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1201" element="dmd_dot" state="0"> - <bounds x="385" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1202" element="dmd_dot" state="0"> - <bounds x="389" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1203" element="dmd_dot" state="0"> - <bounds x="393" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1204" element="dmd_dot" state="0"> - <bounds x="397" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1205" element="dmd_dot" state="0"> - <bounds x="401" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1206" element="dmd_dot" state="0"> - <bounds x="405" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1207" element="dmd_dot" state="0"> - <bounds x="409" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1208" element="dmd_dot" state="0"> - <bounds x="413" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1209" element="dmd_dot" state="0"> - <bounds x="417" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1210" element="dmd_dot" state="0"> - <bounds x="421" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1211" element="dmd_dot" state="0"> - <bounds x="425" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1212" element="dmd_dot" state="0"> - <bounds x="429" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1213" element="dmd_dot" state="0"> - <bounds x="433" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1214" element="dmd_dot" state="0"> - <bounds x="437" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1215" element="dmd_dot" state="0"> - <bounds x="441" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1216" element="dmd_dot" state="0"> - <bounds x="445" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1217" element="dmd_dot" state="0"> - <bounds x="449" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1218" element="dmd_dot" state="0"> - <bounds x="453" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1219" element="dmd_dot" state="0"> - <bounds x="457" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1220" element="dmd_dot" state="0"> - <bounds x="461" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1221" element="dmd_dot" state="0"> - <bounds x="465" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1222" element="dmd_dot" state="0"> - <bounds x="469" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1223" element="dmd_dot" state="0"> - <bounds x="473" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1224" element="dmd_dot" state="0"> - <bounds x="477" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1225" element="dmd_dot" state="0"> - <bounds x="481" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1226" element="dmd_dot" state="0"> - <bounds x="485" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1227" element="dmd_dot" state="0"> - <bounds x="489" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1228" element="dmd_dot" state="0"> - <bounds x="493" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1229" element="dmd_dot" state="0"> - <bounds x="497" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1230" element="dmd_dot" state="0"> - <bounds x="501" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1231" element="dmd_dot" state="0"> - <bounds x="505" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1232" element="dmd_dot" state="0"> - <bounds x="509" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1233" element="dmd_dot" state="0"> - <bounds x="513" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1234" element="dmd_dot" state="0"> - <bounds x="517" y="101" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1235" element="dmd_dot" state="0"> - <bounds x="261" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1236" element="dmd_dot" state="0"> - <bounds x="265" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1237" element="dmd_dot" state="0"> - <bounds x="269" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1238" element="dmd_dot" state="0"> - <bounds x="273" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1239" element="dmd_dot" state="0"> - <bounds x="277" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1240" element="dmd_dot" state="0"> - <bounds x="281" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1241" element="dmd_dot" state="0"> - <bounds x="285" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1242" element="dmd_dot" state="0"> - <bounds x="289" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1243" element="dmd_dot" state="0"> - <bounds x="293" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1244" element="dmd_dot" state="0"> - <bounds x="297" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1245" element="dmd_dot" state="0"> - <bounds x="301" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1246" element="dmd_dot" state="0"> - <bounds x="305" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1247" element="dmd_dot" state="0"> - <bounds x="309" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1248" element="dmd_dot" state="0"> - <bounds x="313" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1249" element="dmd_dot" state="0"> - <bounds x="317" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1250" element="dmd_dot" state="0"> - <bounds x="321" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1251" element="dmd_dot" state="0"> - <bounds x="325" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1252" element="dmd_dot" state="0"> - <bounds x="329" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1253" element="dmd_dot" state="0"> - <bounds x="333" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1254" element="dmd_dot" state="0"> - <bounds x="337" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1255" element="dmd_dot" state="0"> - <bounds x="341" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1256" element="dmd_dot" state="0"> - <bounds x="345" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1257" element="dmd_dot" state="0"> - <bounds x="349" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1258" element="dmd_dot" state="0"> - <bounds x="353" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1259" element="dmd_dot" state="0"> - <bounds x="357" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1260" element="dmd_dot" state="0"> - <bounds x="361" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1261" element="dmd_dot" state="0"> - <bounds x="365" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1262" element="dmd_dot" state="0"> - <bounds x="369" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1263" element="dmd_dot" state="0"> - <bounds x="373" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1264" element="dmd_dot" state="0"> - <bounds x="377" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1265" element="dmd_dot" state="0"> - <bounds x="381" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1266" element="dmd_dot" state="0"> - <bounds x="385" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1267" element="dmd_dot" state="0"> - <bounds x="389" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1268" element="dmd_dot" state="0"> - <bounds x="393" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1269" element="dmd_dot" state="0"> - <bounds x="397" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1270" element="dmd_dot" state="0"> - <bounds x="401" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1271" element="dmd_dot" state="0"> - <bounds x="405" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1272" element="dmd_dot" state="0"> - <bounds x="409" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1273" element="dmd_dot" state="0"> - <bounds x="413" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1274" element="dmd_dot" state="0"> - <bounds x="417" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1275" element="dmd_dot" state="0"> - <bounds x="421" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1276" element="dmd_dot" state="0"> - <bounds x="425" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1277" element="dmd_dot" state="0"> - <bounds x="429" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1278" element="dmd_dot" state="0"> - <bounds x="433" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1279" element="dmd_dot" state="0"> - <bounds x="437" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1280" element="dmd_dot" state="0"> - <bounds x="441" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1281" element="dmd_dot" state="0"> - <bounds x="445" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1282" element="dmd_dot" state="0"> - <bounds x="449" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1283" element="dmd_dot" state="0"> - <bounds x="453" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1284" element="dmd_dot" state="0"> - <bounds x="457" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1285" element="dmd_dot" state="0"> - <bounds x="461" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1286" element="dmd_dot" state="0"> - <bounds x="465" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1287" element="dmd_dot" state="0"> - <bounds x="469" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1288" element="dmd_dot" state="0"> - <bounds x="473" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1289" element="dmd_dot" state="0"> - <bounds x="477" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1290" element="dmd_dot" state="0"> - <bounds x="481" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1291" element="dmd_dot" state="0"> - <bounds x="485" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1292" element="dmd_dot" state="0"> - <bounds x="489" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1293" element="dmd_dot" state="0"> - <bounds x="493" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1294" element="dmd_dot" state="0"> - <bounds x="497" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1295" element="dmd_dot" state="0"> - <bounds x="501" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1296" element="dmd_dot" state="0"> - <bounds x="505" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1297" element="dmd_dot" state="0"> - <bounds x="509" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1298" element="dmd_dot" state="0"> - <bounds x="513" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1299" element="dmd_dot" state="0"> - <bounds x="517" y="105" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1300" element="dmd_dot" state="0"> - <bounds x="261" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1301" element="dmd_dot" state="0"> - <bounds x="265" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1302" element="dmd_dot" state="0"> - <bounds x="269" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1303" element="dmd_dot" state="0"> - <bounds x="273" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1304" element="dmd_dot" state="0"> - <bounds x="277" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1305" element="dmd_dot" state="0"> - <bounds x="281" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1306" element="dmd_dot" state="0"> - <bounds x="285" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1307" element="dmd_dot" state="0"> - <bounds x="289" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1308" element="dmd_dot" state="0"> - <bounds x="293" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1309" element="dmd_dot" state="0"> - <bounds x="297" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1310" element="dmd_dot" state="0"> - <bounds x="301" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1311" element="dmd_dot" state="0"> - <bounds x="305" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1312" element="dmd_dot" state="0"> - <bounds x="309" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1313" element="dmd_dot" state="0"> - <bounds x="313" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1314" element="dmd_dot" state="0"> - <bounds x="317" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1315" element="dmd_dot" state="0"> - <bounds x="321" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1316" element="dmd_dot" state="0"> - <bounds x="325" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1317" element="dmd_dot" state="0"> - <bounds x="329" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1318" element="dmd_dot" state="0"> - <bounds x="333" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1319" element="dmd_dot" state="0"> - <bounds x="337" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1320" element="dmd_dot" state="0"> - <bounds x="341" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1321" element="dmd_dot" state="0"> - <bounds x="345" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1322" element="dmd_dot" state="0"> - <bounds x="349" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1323" element="dmd_dot" state="0"> - <bounds x="353" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1324" element="dmd_dot" state="0"> - <bounds x="357" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1325" element="dmd_dot" state="0"> - <bounds x="361" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1326" element="dmd_dot" state="0"> - <bounds x="365" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1327" element="dmd_dot" state="0"> - <bounds x="369" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1328" element="dmd_dot" state="0"> - <bounds x="373" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1329" element="dmd_dot" state="0"> - <bounds x="377" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1330" element="dmd_dot" state="0"> - <bounds x="381" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1331" element="dmd_dot" state="0"> - <bounds x="385" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1332" element="dmd_dot" state="0"> - <bounds x="389" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1333" element="dmd_dot" state="0"> - <bounds x="393" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1334" element="dmd_dot" state="0"> - <bounds x="397" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1335" element="dmd_dot" state="0"> - <bounds x="401" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1336" element="dmd_dot" state="0"> - <bounds x="405" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1337" element="dmd_dot" state="0"> - <bounds x="409" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1338" element="dmd_dot" state="0"> - <bounds x="413" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1339" element="dmd_dot" state="0"> - <bounds x="417" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1340" element="dmd_dot" state="0"> - <bounds x="421" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1341" element="dmd_dot" state="0"> - <bounds x="425" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1342" element="dmd_dot" state="0"> - <bounds x="429" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1343" element="dmd_dot" state="0"> - <bounds x="433" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1344" element="dmd_dot" state="0"> - <bounds x="437" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1345" element="dmd_dot" state="0"> - <bounds x="441" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1346" element="dmd_dot" state="0"> - <bounds x="445" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1347" element="dmd_dot" state="0"> - <bounds x="449" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1348" element="dmd_dot" state="0"> - <bounds x="453" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1349" element="dmd_dot" state="0"> - <bounds x="457" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1350" element="dmd_dot" state="0"> - <bounds x="461" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1351" element="dmd_dot" state="0"> - <bounds x="465" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1352" element="dmd_dot" state="0"> - <bounds x="469" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1353" element="dmd_dot" state="0"> - <bounds x="473" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1354" element="dmd_dot" state="0"> - <bounds x="477" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1355" element="dmd_dot" state="0"> - <bounds x="481" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1356" element="dmd_dot" state="0"> - <bounds x="485" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1357" element="dmd_dot" state="0"> - <bounds x="489" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1358" element="dmd_dot" state="0"> - <bounds x="493" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1359" element="dmd_dot" state="0"> - <bounds x="497" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1360" element="dmd_dot" state="0"> - <bounds x="501" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1361" element="dmd_dot" state="0"> - <bounds x="505" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1362" element="dmd_dot" state="0"> - <bounds x="509" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1363" element="dmd_dot" state="0"> - <bounds x="513" y="109" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1364" element="dmd_dot" state="0"> - <bounds x="517" y="109" width="2" height="2"> - </bounds> - </backdrop> + + <!-- The DMD --> + <screen index="0"> + <bounds left="261" top="29" right="523" bottom="115" /> + </screen> + <backdrop name="label51" element="label_51"> <bounds x="619" y="11" width="38" height="67"> </bounds> diff --git a/src/mame/layout/sc2prem2.lay b/src/mame/layout/sc2prem2.lay index be956034fb5..b87f99948fd 100644 --- a/src/mame/layout/sc2prem2.lay +++ b/src/mame/layout/sc2prem2.lay @@ -4496,22 +4496,6 @@ </color> </led7seg> </element> - <element name="dmd_dot" defstate="0"> - <rect state="1"> - <color red="1.0" green="0.5" blue="0.0"> - </color> - </rect> - <rect state="0"> - <color red="0.4" green="0.2" blue="0.0"> - </color> - </rect> - </element> - <element name="dmd_background"> - <rect> - <color red="0.0" green="0.0" blue="0.0"> - </color> - </rect> - </element> <element name="reel_lamp_layer_0" defstate="0"> <rect> <color red="0.40" green="0.40" blue="0.40"> @@ -9194,5470 +9178,10 @@ <bounds x="328" y="288" width="4" height="3"> </bounds> </backdrop> - <backdrop element="dmd_background"> - <bounds x="261" y="6" width="262" height="86"> - </bounds> - </backdrop> - <backdrop name="dotmatrix0" element="dmd_dot" state="0"> - <bounds x="261" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1" element="dmd_dot" state="0"> - <bounds x="265" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix2" element="dmd_dot" state="0"> - <bounds x="269" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix3" element="dmd_dot" state="0"> - <bounds x="273" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix4" element="dmd_dot" state="0"> - <bounds x="277" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix5" element="dmd_dot" state="0"> - <bounds x="281" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix6" element="dmd_dot" state="0"> - <bounds x="285" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix7" element="dmd_dot" state="0"> - <bounds x="289" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix8" element="dmd_dot" state="0"> - <bounds x="293" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix9" element="dmd_dot" state="0"> - <bounds x="297" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix10" element="dmd_dot" state="0"> - <bounds x="301" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix11" element="dmd_dot" state="0"> - <bounds x="305" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix12" element="dmd_dot" state="0"> - <bounds x="309" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix13" element="dmd_dot" state="0"> - <bounds x="313" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix14" element="dmd_dot" state="0"> - <bounds x="317" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix15" element="dmd_dot" state="0"> - <bounds x="321" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix16" element="dmd_dot" state="0"> - <bounds x="325" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix17" element="dmd_dot" state="0"> - <bounds x="329" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix18" element="dmd_dot" state="0"> - <bounds x="333" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix19" element="dmd_dot" state="0"> - <bounds x="337" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix20" element="dmd_dot" state="0"> - <bounds x="341" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix21" element="dmd_dot" state="0"> - <bounds x="345" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix22" element="dmd_dot" state="0"> - <bounds x="349" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix23" element="dmd_dot" state="0"> - <bounds x="353" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix24" element="dmd_dot" state="0"> - <bounds x="357" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix25" element="dmd_dot" state="0"> - <bounds x="361" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix26" element="dmd_dot" state="0"> - <bounds x="365" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix27" element="dmd_dot" state="0"> - <bounds x="369" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix28" element="dmd_dot" state="0"> - <bounds x="373" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix29" element="dmd_dot" state="0"> - <bounds x="377" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix30" element="dmd_dot" state="0"> - <bounds x="381" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix31" element="dmd_dot" state="0"> - <bounds x="385" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix32" element="dmd_dot" state="0"> - <bounds x="389" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix33" element="dmd_dot" state="0"> - <bounds x="393" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix34" element="dmd_dot" state="0"> - <bounds x="397" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix35" element="dmd_dot" state="0"> - <bounds x="401" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix36" element="dmd_dot" state="0"> - <bounds x="405" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix37" element="dmd_dot" state="0"> - <bounds x="409" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix38" element="dmd_dot" state="0"> - <bounds x="413" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix39" element="dmd_dot" state="0"> - <bounds x="417" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix40" element="dmd_dot" state="0"> - <bounds x="421" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix41" element="dmd_dot" state="0"> - <bounds x="425" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix42" element="dmd_dot" state="0"> - <bounds x="429" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix43" element="dmd_dot" state="0"> - <bounds x="433" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix44" element="dmd_dot" state="0"> - <bounds x="437" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix45" element="dmd_dot" state="0"> - <bounds x="441" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix46" element="dmd_dot" state="0"> - <bounds x="445" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix47" element="dmd_dot" state="0"> - <bounds x="449" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix48" element="dmd_dot" state="0"> - <bounds x="453" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix49" element="dmd_dot" state="0"> - <bounds x="457" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix50" element="dmd_dot" state="0"> - <bounds x="461" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix51" element="dmd_dot" state="0"> - <bounds x="465" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix52" element="dmd_dot" state="0"> - <bounds x="469" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix53" element="dmd_dot" state="0"> - <bounds x="473" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix54" element="dmd_dot" state="0"> - <bounds x="477" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix55" element="dmd_dot" state="0"> - <bounds x="481" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix56" element="dmd_dot" state="0"> - <bounds x="485" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix57" element="dmd_dot" state="0"> - <bounds x="489" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix58" element="dmd_dot" state="0"> - <bounds x="493" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix59" element="dmd_dot" state="0"> - <bounds x="497" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix60" element="dmd_dot" state="0"> - <bounds x="501" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix61" element="dmd_dot" state="0"> - <bounds x="505" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix62" element="dmd_dot" state="0"> - <bounds x="509" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix63" element="dmd_dot" state="0"> - <bounds x="513" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix64" element="dmd_dot" state="0"> - <bounds x="517" y="6" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix65" element="dmd_dot" state="0"> - <bounds x="261" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix66" element="dmd_dot" state="0"> - <bounds x="265" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix67" element="dmd_dot" state="0"> - <bounds x="269" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix68" element="dmd_dot" state="0"> - <bounds x="273" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix69" element="dmd_dot" state="0"> - <bounds x="277" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix70" element="dmd_dot" state="0"> - <bounds x="281" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix71" element="dmd_dot" state="0"> - <bounds x="285" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix72" element="dmd_dot" state="0"> - <bounds x="289" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix73" element="dmd_dot" state="0"> - <bounds x="293" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix74" element="dmd_dot" state="0"> - <bounds x="297" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix75" element="dmd_dot" state="0"> - <bounds x="301" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix76" element="dmd_dot" state="0"> - <bounds x="305" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix77" element="dmd_dot" state="0"> - <bounds x="309" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix78" element="dmd_dot" state="0"> - <bounds x="313" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix79" element="dmd_dot" state="0"> - <bounds x="317" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix80" element="dmd_dot" state="0"> - <bounds x="321" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix81" element="dmd_dot" state="0"> - <bounds x="325" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix82" element="dmd_dot" state="0"> - <bounds x="329" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix83" element="dmd_dot" state="0"> - <bounds x="333" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix84" element="dmd_dot" state="0"> - <bounds x="337" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix85" element="dmd_dot" state="0"> - <bounds x="341" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix86" element="dmd_dot" state="0"> - <bounds x="345" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix87" element="dmd_dot" state="0"> - <bounds x="349" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix88" element="dmd_dot" state="0"> - <bounds x="353" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix89" element="dmd_dot" state="0"> - <bounds x="357" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix90" element="dmd_dot" state="0"> - <bounds x="361" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix91" element="dmd_dot" state="0"> - <bounds x="365" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix92" element="dmd_dot" state="0"> - <bounds x="369" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix93" element="dmd_dot" state="0"> - <bounds x="373" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix94" element="dmd_dot" state="0"> - <bounds x="377" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix95" element="dmd_dot" state="0"> - <bounds x="381" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix96" element="dmd_dot" state="0"> - <bounds x="385" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix97" element="dmd_dot" state="0"> - <bounds x="389" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix98" element="dmd_dot" state="0"> - <bounds x="393" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix99" element="dmd_dot" state="0"> - <bounds x="397" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix100" element="dmd_dot" state="0"> - <bounds x="401" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix101" element="dmd_dot" state="0"> - <bounds x="405" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix102" element="dmd_dot" state="0"> - <bounds x="409" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix103" element="dmd_dot" state="0"> - <bounds x="413" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix104" element="dmd_dot" state="0"> - <bounds x="417" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix105" element="dmd_dot" state="0"> - <bounds x="421" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix106" element="dmd_dot" state="0"> - <bounds x="425" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix107" element="dmd_dot" state="0"> - <bounds x="429" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix108" element="dmd_dot" state="0"> - <bounds x="433" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix109" element="dmd_dot" state="0"> - <bounds x="437" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix110" element="dmd_dot" state="0"> - <bounds x="441" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix111" element="dmd_dot" state="0"> - <bounds x="445" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix112" element="dmd_dot" state="0"> - <bounds x="449" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix113" element="dmd_dot" state="0"> - <bounds x="453" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix114" element="dmd_dot" state="0"> - <bounds x="457" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix115" element="dmd_dot" state="0"> - <bounds x="461" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix116" element="dmd_dot" state="0"> - <bounds x="465" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix117" element="dmd_dot" state="0"> - <bounds x="469" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix118" element="dmd_dot" state="0"> - <bounds x="473" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix119" element="dmd_dot" state="0"> - <bounds x="477" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix120" element="dmd_dot" state="0"> - <bounds x="481" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix121" element="dmd_dot" state="0"> - <bounds x="485" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix122" element="dmd_dot" state="0"> - <bounds x="489" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix123" element="dmd_dot" state="0"> - <bounds x="493" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix124" element="dmd_dot" state="0"> - <bounds x="497" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix125" element="dmd_dot" state="0"> - <bounds x="501" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix126" element="dmd_dot" state="0"> - <bounds x="505" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix127" element="dmd_dot" state="0"> - <bounds x="509" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix128" element="dmd_dot" state="0"> - <bounds x="513" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix129" element="dmd_dot" state="0"> - <bounds x="517" y="10" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix130" element="dmd_dot" state="0"> - <bounds x="261" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix131" element="dmd_dot" state="0"> - <bounds x="265" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix132" element="dmd_dot" state="0"> - <bounds x="269" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix133" element="dmd_dot" state="0"> - <bounds x="273" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix134" element="dmd_dot" state="0"> - <bounds x="277" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix135" element="dmd_dot" state="0"> - <bounds x="281" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix136" element="dmd_dot" state="0"> - <bounds x="285" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix137" element="dmd_dot" state="0"> - <bounds x="289" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix138" element="dmd_dot" state="0"> - <bounds x="293" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix139" element="dmd_dot" state="0"> - <bounds x="297" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix140" element="dmd_dot" state="0"> - <bounds x="301" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix141" element="dmd_dot" state="0"> - <bounds x="305" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix142" element="dmd_dot" state="0"> - <bounds x="309" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix143" element="dmd_dot" state="0"> - <bounds x="313" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix144" element="dmd_dot" state="0"> - <bounds x="317" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix145" element="dmd_dot" state="0"> - <bounds x="321" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix146" element="dmd_dot" state="0"> - <bounds x="325" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix147" element="dmd_dot" state="0"> - <bounds x="329" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix148" element="dmd_dot" state="0"> - <bounds x="333" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix149" element="dmd_dot" state="0"> - <bounds x="337" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix150" element="dmd_dot" state="0"> - <bounds x="341" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix151" element="dmd_dot" state="0"> - <bounds x="345" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix152" element="dmd_dot" state="0"> - <bounds x="349" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix153" element="dmd_dot" state="0"> - <bounds x="353" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix154" element="dmd_dot" state="0"> - <bounds x="357" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix155" element="dmd_dot" state="0"> - <bounds x="361" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix156" element="dmd_dot" state="0"> - <bounds x="365" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix157" element="dmd_dot" state="0"> - <bounds x="369" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix158" element="dmd_dot" state="0"> - <bounds x="373" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix159" element="dmd_dot" state="0"> - <bounds x="377" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix160" element="dmd_dot" state="0"> - <bounds x="381" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix161" element="dmd_dot" state="0"> - <bounds x="385" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix162" element="dmd_dot" state="0"> - <bounds x="389" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix163" element="dmd_dot" state="0"> - <bounds x="393" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix164" element="dmd_dot" state="0"> - <bounds x="397" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix165" element="dmd_dot" state="0"> - <bounds x="401" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix166" element="dmd_dot" state="0"> - <bounds x="405" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix167" element="dmd_dot" state="0"> - <bounds x="409" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix168" element="dmd_dot" state="0"> - <bounds x="413" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix169" element="dmd_dot" state="0"> - <bounds x="417" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix170" element="dmd_dot" state="0"> - <bounds x="421" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix171" element="dmd_dot" state="0"> - <bounds x="425" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix172" element="dmd_dot" state="0"> - <bounds x="429" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix173" element="dmd_dot" state="0"> - <bounds x="433" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix174" element="dmd_dot" state="0"> - <bounds x="437" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix175" element="dmd_dot" state="0"> - <bounds x="441" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix176" element="dmd_dot" state="0"> - <bounds x="445" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix177" element="dmd_dot" state="0"> - <bounds x="449" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix178" element="dmd_dot" state="0"> - <bounds x="453" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix179" element="dmd_dot" state="0"> - <bounds x="457" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix180" element="dmd_dot" state="0"> - <bounds x="461" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix181" element="dmd_dot" state="0"> - <bounds x="465" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix182" element="dmd_dot" state="0"> - <bounds x="469" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix183" element="dmd_dot" state="0"> - <bounds x="473" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix184" element="dmd_dot" state="0"> - <bounds x="477" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix185" element="dmd_dot" state="0"> - <bounds x="481" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix186" element="dmd_dot" state="0"> - <bounds x="485" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix187" element="dmd_dot" state="0"> - <bounds x="489" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix188" element="dmd_dot" state="0"> - <bounds x="493" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix189" element="dmd_dot" state="0"> - <bounds x="497" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix190" element="dmd_dot" state="0"> - <bounds x="501" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix191" element="dmd_dot" state="0"> - <bounds x="505" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix192" element="dmd_dot" state="0"> - <bounds x="509" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix193" element="dmd_dot" state="0"> - <bounds x="513" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix194" element="dmd_dot" state="0"> - <bounds x="517" y="14" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix195" element="dmd_dot" state="0"> - <bounds x="261" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix196" element="dmd_dot" state="0"> - <bounds x="265" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix197" element="dmd_dot" state="0"> - <bounds x="269" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix198" element="dmd_dot" state="0"> - <bounds x="273" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix199" element="dmd_dot" state="0"> - <bounds x="277" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix200" element="dmd_dot" state="0"> - <bounds x="281" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix201" element="dmd_dot" state="0"> - <bounds x="285" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix202" element="dmd_dot" state="0"> - <bounds x="289" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix203" element="dmd_dot" state="0"> - <bounds x="293" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix204" element="dmd_dot" state="0"> - <bounds x="297" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix205" element="dmd_dot" state="0"> - <bounds x="301" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix206" element="dmd_dot" state="0"> - <bounds x="305" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix207" element="dmd_dot" state="0"> - <bounds x="309" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix208" element="dmd_dot" state="0"> - <bounds x="313" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix209" element="dmd_dot" state="0"> - <bounds x="317" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix210" element="dmd_dot" state="0"> - <bounds x="321" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix211" element="dmd_dot" state="0"> - <bounds x="325" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix212" element="dmd_dot" state="0"> - <bounds x="329" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix213" element="dmd_dot" state="0"> - <bounds x="333" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix214" element="dmd_dot" state="0"> - <bounds x="337" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix215" element="dmd_dot" state="0"> - <bounds x="341" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix216" element="dmd_dot" state="0"> - <bounds x="345" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix217" element="dmd_dot" state="0"> - <bounds x="349" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix218" element="dmd_dot" state="0"> - <bounds x="353" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix219" element="dmd_dot" state="0"> - <bounds x="357" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix220" element="dmd_dot" state="0"> - <bounds x="361" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix221" element="dmd_dot" state="0"> - <bounds x="365" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix222" element="dmd_dot" state="0"> - <bounds x="369" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix223" element="dmd_dot" state="0"> - <bounds x="373" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix224" element="dmd_dot" state="0"> - <bounds x="377" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix225" element="dmd_dot" state="0"> - <bounds x="381" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix226" element="dmd_dot" state="0"> - <bounds x="385" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix227" element="dmd_dot" state="0"> - <bounds x="389" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix228" element="dmd_dot" state="0"> - <bounds x="393" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix229" element="dmd_dot" state="0"> - <bounds x="397" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix230" element="dmd_dot" state="0"> - <bounds x="401" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix231" element="dmd_dot" state="0"> - <bounds x="405" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix232" element="dmd_dot" state="0"> - <bounds x="409" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix233" element="dmd_dot" state="0"> - <bounds x="413" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix234" element="dmd_dot" state="0"> - <bounds x="417" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix235" element="dmd_dot" state="0"> - <bounds x="421" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix236" element="dmd_dot" state="0"> - <bounds x="425" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix237" element="dmd_dot" state="0"> - <bounds x="429" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix238" element="dmd_dot" state="0"> - <bounds x="433" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix239" element="dmd_dot" state="0"> - <bounds x="437" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix240" element="dmd_dot" state="0"> - <bounds x="441" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix241" element="dmd_dot" state="0"> - <bounds x="445" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix242" element="dmd_dot" state="0"> - <bounds x="449" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix243" element="dmd_dot" state="0"> - <bounds x="453" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix244" element="dmd_dot" state="0"> - <bounds x="457" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix245" element="dmd_dot" state="0"> - <bounds x="461" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix246" element="dmd_dot" state="0"> - <bounds x="465" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix247" element="dmd_dot" state="0"> - <bounds x="469" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix248" element="dmd_dot" state="0"> - <bounds x="473" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix249" element="dmd_dot" state="0"> - <bounds x="477" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix250" element="dmd_dot" state="0"> - <bounds x="481" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix251" element="dmd_dot" state="0"> - <bounds x="485" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix252" element="dmd_dot" state="0"> - <bounds x="489" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix253" element="dmd_dot" state="0"> - <bounds x="493" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix254" element="dmd_dot" state="0"> - <bounds x="497" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix255" element="dmd_dot" state="0"> - <bounds x="501" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix256" element="dmd_dot" state="0"> - <bounds x="505" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix257" element="dmd_dot" state="0"> - <bounds x="509" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix258" element="dmd_dot" state="0"> - <bounds x="513" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix259" element="dmd_dot" state="0"> - <bounds x="517" y="18" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix260" element="dmd_dot" state="0"> - <bounds x="261" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix261" element="dmd_dot" state="0"> - <bounds x="265" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix262" element="dmd_dot" state="0"> - <bounds x="269" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix263" element="dmd_dot" state="0"> - <bounds x="273" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix264" element="dmd_dot" state="0"> - <bounds x="277" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix265" element="dmd_dot" state="0"> - <bounds x="281" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix266" element="dmd_dot" state="0"> - <bounds x="285" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix267" element="dmd_dot" state="0"> - <bounds x="289" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix268" element="dmd_dot" state="0"> - <bounds x="293" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix269" element="dmd_dot" state="0"> - <bounds x="297" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix270" element="dmd_dot" state="0"> - <bounds x="301" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix271" element="dmd_dot" state="0"> - <bounds x="305" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix272" element="dmd_dot" state="0"> - <bounds x="309" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix273" element="dmd_dot" state="0"> - <bounds x="313" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix274" element="dmd_dot" state="0"> - <bounds x="317" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix275" element="dmd_dot" state="0"> - <bounds x="321" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix276" element="dmd_dot" state="0"> - <bounds x="325" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix277" element="dmd_dot" state="0"> - <bounds x="329" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix278" element="dmd_dot" state="0"> - <bounds x="333" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix279" element="dmd_dot" state="0"> - <bounds x="337" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix280" element="dmd_dot" state="0"> - <bounds x="341" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix281" element="dmd_dot" state="0"> - <bounds x="345" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix282" element="dmd_dot" state="0"> - <bounds x="349" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix283" element="dmd_dot" state="0"> - <bounds x="353" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix284" element="dmd_dot" state="0"> - <bounds x="357" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix285" element="dmd_dot" state="0"> - <bounds x="361" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix286" element="dmd_dot" state="0"> - <bounds x="365" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix287" element="dmd_dot" state="0"> - <bounds x="369" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix288" element="dmd_dot" state="0"> - <bounds x="373" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix289" element="dmd_dot" state="0"> - <bounds x="377" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix290" element="dmd_dot" state="0"> - <bounds x="381" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix291" element="dmd_dot" state="0"> - <bounds x="385" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix292" element="dmd_dot" state="0"> - <bounds x="389" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix293" element="dmd_dot" state="0"> - <bounds x="393" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix294" element="dmd_dot" state="0"> - <bounds x="397" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix295" element="dmd_dot" state="0"> - <bounds x="401" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix296" element="dmd_dot" state="0"> - <bounds x="405" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix297" element="dmd_dot" state="0"> - <bounds x="409" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix298" element="dmd_dot" state="0"> - <bounds x="413" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix299" element="dmd_dot" state="0"> - <bounds x="417" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix300" element="dmd_dot" state="0"> - <bounds x="421" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix301" element="dmd_dot" state="0"> - <bounds x="425" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix302" element="dmd_dot" state="0"> - <bounds x="429" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix303" element="dmd_dot" state="0"> - <bounds x="433" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix304" element="dmd_dot" state="0"> - <bounds x="437" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix305" element="dmd_dot" state="0"> - <bounds x="441" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix306" element="dmd_dot" state="0"> - <bounds x="445" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix307" element="dmd_dot" state="0"> - <bounds x="449" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix308" element="dmd_dot" state="0"> - <bounds x="453" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix309" element="dmd_dot" state="0"> - <bounds x="457" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix310" element="dmd_dot" state="0"> - <bounds x="461" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix311" element="dmd_dot" state="0"> - <bounds x="465" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix312" element="dmd_dot" state="0"> - <bounds x="469" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix313" element="dmd_dot" state="0"> - <bounds x="473" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix314" element="dmd_dot" state="0"> - <bounds x="477" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix315" element="dmd_dot" state="0"> - <bounds x="481" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix316" element="dmd_dot" state="0"> - <bounds x="485" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix317" element="dmd_dot" state="0"> - <bounds x="489" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix318" element="dmd_dot" state="0"> - <bounds x="493" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix319" element="dmd_dot" state="0"> - <bounds x="497" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix320" element="dmd_dot" state="0"> - <bounds x="501" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix321" element="dmd_dot" state="0"> - <bounds x="505" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix322" element="dmd_dot" state="0"> - <bounds x="509" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix323" element="dmd_dot" state="0"> - <bounds x="513" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix324" element="dmd_dot" state="0"> - <bounds x="517" y="22" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix325" element="dmd_dot" state="0"> - <bounds x="261" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix326" element="dmd_dot" state="0"> - <bounds x="265" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix327" element="dmd_dot" state="0"> - <bounds x="269" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix328" element="dmd_dot" state="0"> - <bounds x="273" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix329" element="dmd_dot" state="0"> - <bounds x="277" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix330" element="dmd_dot" state="0"> - <bounds x="281" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix331" element="dmd_dot" state="0"> - <bounds x="285" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix332" element="dmd_dot" state="0"> - <bounds x="289" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix333" element="dmd_dot" state="0"> - <bounds x="293" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix334" element="dmd_dot" state="0"> - <bounds x="297" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix335" element="dmd_dot" state="0"> - <bounds x="301" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix336" element="dmd_dot" state="0"> - <bounds x="305" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix337" element="dmd_dot" state="0"> - <bounds x="309" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix338" element="dmd_dot" state="0"> - <bounds x="313" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix339" element="dmd_dot" state="0"> - <bounds x="317" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix340" element="dmd_dot" state="0"> - <bounds x="321" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix341" element="dmd_dot" state="0"> - <bounds x="325" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix342" element="dmd_dot" state="0"> - <bounds x="329" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix343" element="dmd_dot" state="0"> - <bounds x="333" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix344" element="dmd_dot" state="0"> - <bounds x="337" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix345" element="dmd_dot" state="0"> - <bounds x="341" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix346" element="dmd_dot" state="0"> - <bounds x="345" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix347" element="dmd_dot" state="0"> - <bounds x="349" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix348" element="dmd_dot" state="0"> - <bounds x="353" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix349" element="dmd_dot" state="0"> - <bounds x="357" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix350" element="dmd_dot" state="0"> - <bounds x="361" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix351" element="dmd_dot" state="0"> - <bounds x="365" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix352" element="dmd_dot" state="0"> - <bounds x="369" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix353" element="dmd_dot" state="0"> - <bounds x="373" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix354" element="dmd_dot" state="0"> - <bounds x="377" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix355" element="dmd_dot" state="0"> - <bounds x="381" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix356" element="dmd_dot" state="0"> - <bounds x="385" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix357" element="dmd_dot" state="0"> - <bounds x="389" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix358" element="dmd_dot" state="0"> - <bounds x="393" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix359" element="dmd_dot" state="0"> - <bounds x="397" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix360" element="dmd_dot" state="0"> - <bounds x="401" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix361" element="dmd_dot" state="0"> - <bounds x="405" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix362" element="dmd_dot" state="0"> - <bounds x="409" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix363" element="dmd_dot" state="0"> - <bounds x="413" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix364" element="dmd_dot" state="0"> - <bounds x="417" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix365" element="dmd_dot" state="0"> - <bounds x="421" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix366" element="dmd_dot" state="0"> - <bounds x="425" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix367" element="dmd_dot" state="0"> - <bounds x="429" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix368" element="dmd_dot" state="0"> - <bounds x="433" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix369" element="dmd_dot" state="0"> - <bounds x="437" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix370" element="dmd_dot" state="0"> - <bounds x="441" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix371" element="dmd_dot" state="0"> - <bounds x="445" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix372" element="dmd_dot" state="0"> - <bounds x="449" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix373" element="dmd_dot" state="0"> - <bounds x="453" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix374" element="dmd_dot" state="0"> - <bounds x="457" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix375" element="dmd_dot" state="0"> - <bounds x="461" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix376" element="dmd_dot" state="0"> - <bounds x="465" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix377" element="dmd_dot" state="0"> - <bounds x="469" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix378" element="dmd_dot" state="0"> - <bounds x="473" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix379" element="dmd_dot" state="0"> - <bounds x="477" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix380" element="dmd_dot" state="0"> - <bounds x="481" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix381" element="dmd_dot" state="0"> - <bounds x="485" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix382" element="dmd_dot" state="0"> - <bounds x="489" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix383" element="dmd_dot" state="0"> - <bounds x="493" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix384" element="dmd_dot" state="0"> - <bounds x="497" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix385" element="dmd_dot" state="0"> - <bounds x="501" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix386" element="dmd_dot" state="0"> - <bounds x="505" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix387" element="dmd_dot" state="0"> - <bounds x="509" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix388" element="dmd_dot" state="0"> - <bounds x="513" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix389" element="dmd_dot" state="0"> - <bounds x="517" y="26" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix390" element="dmd_dot" state="0"> - <bounds x="261" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix391" element="dmd_dot" state="0"> - <bounds x="265" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix392" element="dmd_dot" state="0"> - <bounds x="269" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix393" element="dmd_dot" state="0"> - <bounds x="273" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix394" element="dmd_dot" state="0"> - <bounds x="277" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix395" element="dmd_dot" state="0"> - <bounds x="281" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix396" element="dmd_dot" state="0"> - <bounds x="285" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix397" element="dmd_dot" state="0"> - <bounds x="289" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix398" element="dmd_dot" state="0"> - <bounds x="293" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix399" element="dmd_dot" state="0"> - <bounds x="297" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix400" element="dmd_dot" state="0"> - <bounds x="301" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix401" element="dmd_dot" state="0"> - <bounds x="305" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix402" element="dmd_dot" state="0"> - <bounds x="309" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix403" element="dmd_dot" state="0"> - <bounds x="313" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix404" element="dmd_dot" state="0"> - <bounds x="317" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix405" element="dmd_dot" state="0"> - <bounds x="321" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix406" element="dmd_dot" state="0"> - <bounds x="325" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix407" element="dmd_dot" state="0"> - <bounds x="329" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix408" element="dmd_dot" state="0"> - <bounds x="333" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix409" element="dmd_dot" state="0"> - <bounds x="337" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix410" element="dmd_dot" state="0"> - <bounds x="341" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix411" element="dmd_dot" state="0"> - <bounds x="345" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix412" element="dmd_dot" state="0"> - <bounds x="349" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix413" element="dmd_dot" state="0"> - <bounds x="353" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix414" element="dmd_dot" state="0"> - <bounds x="357" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix415" element="dmd_dot" state="0"> - <bounds x="361" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix416" element="dmd_dot" state="0"> - <bounds x="365" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix417" element="dmd_dot" state="0"> - <bounds x="369" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix418" element="dmd_dot" state="0"> - <bounds x="373" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix419" element="dmd_dot" state="0"> - <bounds x="377" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix420" element="dmd_dot" state="0"> - <bounds x="381" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix421" element="dmd_dot" state="0"> - <bounds x="385" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix422" element="dmd_dot" state="0"> - <bounds x="389" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix423" element="dmd_dot" state="0"> - <bounds x="393" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix424" element="dmd_dot" state="0"> - <bounds x="397" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix425" element="dmd_dot" state="0"> - <bounds x="401" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix426" element="dmd_dot" state="0"> - <bounds x="405" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix427" element="dmd_dot" state="0"> - <bounds x="409" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix428" element="dmd_dot" state="0"> - <bounds x="413" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix429" element="dmd_dot" state="0"> - <bounds x="417" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix430" element="dmd_dot" state="0"> - <bounds x="421" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix431" element="dmd_dot" state="0"> - <bounds x="425" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix432" element="dmd_dot" state="0"> - <bounds x="429" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix433" element="dmd_dot" state="0"> - <bounds x="433" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix434" element="dmd_dot" state="0"> - <bounds x="437" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix435" element="dmd_dot" state="0"> - <bounds x="441" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix436" element="dmd_dot" state="0"> - <bounds x="445" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix437" element="dmd_dot" state="0"> - <bounds x="449" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix438" element="dmd_dot" state="0"> - <bounds x="453" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix439" element="dmd_dot" state="0"> - <bounds x="457" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix440" element="dmd_dot" state="0"> - <bounds x="461" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix441" element="dmd_dot" state="0"> - <bounds x="465" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix442" element="dmd_dot" state="0"> - <bounds x="469" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix443" element="dmd_dot" state="0"> - <bounds x="473" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix444" element="dmd_dot" state="0"> - <bounds x="477" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix445" element="dmd_dot" state="0"> - <bounds x="481" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix446" element="dmd_dot" state="0"> - <bounds x="485" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix447" element="dmd_dot" state="0"> - <bounds x="489" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix448" element="dmd_dot" state="0"> - <bounds x="493" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix449" element="dmd_dot" state="0"> - <bounds x="497" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix450" element="dmd_dot" state="0"> - <bounds x="501" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix451" element="dmd_dot" state="0"> - <bounds x="505" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix452" element="dmd_dot" state="0"> - <bounds x="509" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix453" element="dmd_dot" state="0"> - <bounds x="513" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix454" element="dmd_dot" state="0"> - <bounds x="517" y="30" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix455" element="dmd_dot" state="0"> - <bounds x="261" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix456" element="dmd_dot" state="0"> - <bounds x="265" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix457" element="dmd_dot" state="0"> - <bounds x="269" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix458" element="dmd_dot" state="0"> - <bounds x="273" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix459" element="dmd_dot" state="0"> - <bounds x="277" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix460" element="dmd_dot" state="0"> - <bounds x="281" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix461" element="dmd_dot" state="0"> - <bounds x="285" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix462" element="dmd_dot" state="0"> - <bounds x="289" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix463" element="dmd_dot" state="0"> - <bounds x="293" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix464" element="dmd_dot" state="0"> - <bounds x="297" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix465" element="dmd_dot" state="0"> - <bounds x="301" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix466" element="dmd_dot" state="0"> - <bounds x="305" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix467" element="dmd_dot" state="0"> - <bounds x="309" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix468" element="dmd_dot" state="0"> - <bounds x="313" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix469" element="dmd_dot" state="0"> - <bounds x="317" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix470" element="dmd_dot" state="0"> - <bounds x="321" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix471" element="dmd_dot" state="0"> - <bounds x="325" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix472" element="dmd_dot" state="0"> - <bounds x="329" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix473" element="dmd_dot" state="0"> - <bounds x="333" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix474" element="dmd_dot" state="0"> - <bounds x="337" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix475" element="dmd_dot" state="0"> - <bounds x="341" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix476" element="dmd_dot" state="0"> - <bounds x="345" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix477" element="dmd_dot" state="0"> - <bounds x="349" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix478" element="dmd_dot" state="0"> - <bounds x="353" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix479" element="dmd_dot" state="0"> - <bounds x="357" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix480" element="dmd_dot" state="0"> - <bounds x="361" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix481" element="dmd_dot" state="0"> - <bounds x="365" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix482" element="dmd_dot" state="0"> - <bounds x="369" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix483" element="dmd_dot" state="0"> - <bounds x="373" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix484" element="dmd_dot" state="0"> - <bounds x="377" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix485" element="dmd_dot" state="0"> - <bounds x="381" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix486" element="dmd_dot" state="0"> - <bounds x="385" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix487" element="dmd_dot" state="0"> - <bounds x="389" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix488" element="dmd_dot" state="0"> - <bounds x="393" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix489" element="dmd_dot" state="0"> - <bounds x="397" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix490" element="dmd_dot" state="0"> - <bounds x="401" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix491" element="dmd_dot" state="0"> - <bounds x="405" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix492" element="dmd_dot" state="0"> - <bounds x="409" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix493" element="dmd_dot" state="0"> - <bounds x="413" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix494" element="dmd_dot" state="0"> - <bounds x="417" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix495" element="dmd_dot" state="0"> - <bounds x="421" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix496" element="dmd_dot" state="0"> - <bounds x="425" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix497" element="dmd_dot" state="0"> - <bounds x="429" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix498" element="dmd_dot" state="0"> - <bounds x="433" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix499" element="dmd_dot" state="0"> - <bounds x="437" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix500" element="dmd_dot" state="0"> - <bounds x="441" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix501" element="dmd_dot" state="0"> - <bounds x="445" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix502" element="dmd_dot" state="0"> - <bounds x="449" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix503" element="dmd_dot" state="0"> - <bounds x="453" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix504" element="dmd_dot" state="0"> - <bounds x="457" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix505" element="dmd_dot" state="0"> - <bounds x="461" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix506" element="dmd_dot" state="0"> - <bounds x="465" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix507" element="dmd_dot" state="0"> - <bounds x="469" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix508" element="dmd_dot" state="0"> - <bounds x="473" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix509" element="dmd_dot" state="0"> - <bounds x="477" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix510" element="dmd_dot" state="0"> - <bounds x="481" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix511" element="dmd_dot" state="0"> - <bounds x="485" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix512" element="dmd_dot" state="0"> - <bounds x="489" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix513" element="dmd_dot" state="0"> - <bounds x="493" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix514" element="dmd_dot" state="0"> - <bounds x="497" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix515" element="dmd_dot" state="0"> - <bounds x="501" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix516" element="dmd_dot" state="0"> - <bounds x="505" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix517" element="dmd_dot" state="0"> - <bounds x="509" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix518" element="dmd_dot" state="0"> - <bounds x="513" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix519" element="dmd_dot" state="0"> - <bounds x="517" y="34" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix520" element="dmd_dot" state="0"> - <bounds x="261" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix521" element="dmd_dot" state="0"> - <bounds x="265" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix522" element="dmd_dot" state="0"> - <bounds x="269" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix523" element="dmd_dot" state="0"> - <bounds x="273" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix524" element="dmd_dot" state="0"> - <bounds x="277" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix525" element="dmd_dot" state="0"> - <bounds x="281" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix526" element="dmd_dot" state="0"> - <bounds x="285" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix527" element="dmd_dot" state="0"> - <bounds x="289" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix528" element="dmd_dot" state="0"> - <bounds x="293" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix529" element="dmd_dot" state="0"> - <bounds x="297" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix530" element="dmd_dot" state="0"> - <bounds x="301" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix531" element="dmd_dot" state="0"> - <bounds x="305" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix532" element="dmd_dot" state="0"> - <bounds x="309" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix533" element="dmd_dot" state="0"> - <bounds x="313" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix534" element="dmd_dot" state="0"> - <bounds x="317" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix535" element="dmd_dot" state="0"> - <bounds x="321" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix536" element="dmd_dot" state="0"> - <bounds x="325" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix537" element="dmd_dot" state="0"> - <bounds x="329" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix538" element="dmd_dot" state="0"> - <bounds x="333" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix539" element="dmd_dot" state="0"> - <bounds x="337" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix540" element="dmd_dot" state="0"> - <bounds x="341" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix541" element="dmd_dot" state="0"> - <bounds x="345" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix542" element="dmd_dot" state="0"> - <bounds x="349" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix543" element="dmd_dot" state="0"> - <bounds x="353" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix544" element="dmd_dot" state="0"> - <bounds x="357" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix545" element="dmd_dot" state="0"> - <bounds x="361" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix546" element="dmd_dot" state="0"> - <bounds x="365" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix547" element="dmd_dot" state="0"> - <bounds x="369" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix548" element="dmd_dot" state="0"> - <bounds x="373" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix549" element="dmd_dot" state="0"> - <bounds x="377" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix550" element="dmd_dot" state="0"> - <bounds x="381" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix551" element="dmd_dot" state="0"> - <bounds x="385" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix552" element="dmd_dot" state="0"> - <bounds x="389" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix553" element="dmd_dot" state="0"> - <bounds x="393" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix554" element="dmd_dot" state="0"> - <bounds x="397" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix555" element="dmd_dot" state="0"> - <bounds x="401" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix556" element="dmd_dot" state="0"> - <bounds x="405" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix557" element="dmd_dot" state="0"> - <bounds x="409" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix558" element="dmd_dot" state="0"> - <bounds x="413" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix559" element="dmd_dot" state="0"> - <bounds x="417" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix560" element="dmd_dot" state="0"> - <bounds x="421" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix561" element="dmd_dot" state="0"> - <bounds x="425" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix562" element="dmd_dot" state="0"> - <bounds x="429" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix563" element="dmd_dot" state="0"> - <bounds x="433" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix564" element="dmd_dot" state="0"> - <bounds x="437" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix565" element="dmd_dot" state="0"> - <bounds x="441" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix566" element="dmd_dot" state="0"> - <bounds x="445" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix567" element="dmd_dot" state="0"> - <bounds x="449" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix568" element="dmd_dot" state="0"> - <bounds x="453" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix569" element="dmd_dot" state="0"> - <bounds x="457" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix570" element="dmd_dot" state="0"> - <bounds x="461" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix571" element="dmd_dot" state="0"> - <bounds x="465" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix572" element="dmd_dot" state="0"> - <bounds x="469" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix573" element="dmd_dot" state="0"> - <bounds x="473" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix574" element="dmd_dot" state="0"> - <bounds x="477" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix575" element="dmd_dot" state="0"> - <bounds x="481" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix576" element="dmd_dot" state="0"> - <bounds x="485" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix577" element="dmd_dot" state="0"> - <bounds x="489" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix578" element="dmd_dot" state="0"> - <bounds x="493" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix579" element="dmd_dot" state="0"> - <bounds x="497" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix580" element="dmd_dot" state="0"> - <bounds x="501" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix581" element="dmd_dot" state="0"> - <bounds x="505" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix582" element="dmd_dot" state="0"> - <bounds x="509" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix583" element="dmd_dot" state="0"> - <bounds x="513" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix584" element="dmd_dot" state="0"> - <bounds x="517" y="38" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix585" element="dmd_dot" state="0"> - <bounds x="261" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix586" element="dmd_dot" state="0"> - <bounds x="265" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix587" element="dmd_dot" state="0"> - <bounds x="269" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix588" element="dmd_dot" state="0"> - <bounds x="273" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix589" element="dmd_dot" state="0"> - <bounds x="277" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix590" element="dmd_dot" state="0"> - <bounds x="281" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix591" element="dmd_dot" state="0"> - <bounds x="285" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix592" element="dmd_dot" state="0"> - <bounds x="289" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix593" element="dmd_dot" state="0"> - <bounds x="293" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix594" element="dmd_dot" state="0"> - <bounds x="297" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix595" element="dmd_dot" state="0"> - <bounds x="301" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix596" element="dmd_dot" state="0"> - <bounds x="305" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix597" element="dmd_dot" state="0"> - <bounds x="309" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix598" element="dmd_dot" state="0"> - <bounds x="313" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix599" element="dmd_dot" state="0"> - <bounds x="317" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix600" element="dmd_dot" state="0"> - <bounds x="321" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix601" element="dmd_dot" state="0"> - <bounds x="325" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix602" element="dmd_dot" state="0"> - <bounds x="329" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix603" element="dmd_dot" state="0"> - <bounds x="333" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix604" element="dmd_dot" state="0"> - <bounds x="337" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix605" element="dmd_dot" state="0"> - <bounds x="341" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix606" element="dmd_dot" state="0"> - <bounds x="345" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix607" element="dmd_dot" state="0"> - <bounds x="349" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix608" element="dmd_dot" state="0"> - <bounds x="353" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix609" element="dmd_dot" state="0"> - <bounds x="357" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix610" element="dmd_dot" state="0"> - <bounds x="361" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix611" element="dmd_dot" state="0"> - <bounds x="365" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix612" element="dmd_dot" state="0"> - <bounds x="369" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix613" element="dmd_dot" state="0"> - <bounds x="373" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix614" element="dmd_dot" state="0"> - <bounds x="377" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix615" element="dmd_dot" state="0"> - <bounds x="381" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix616" element="dmd_dot" state="0"> - <bounds x="385" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix617" element="dmd_dot" state="0"> - <bounds x="389" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix618" element="dmd_dot" state="0"> - <bounds x="393" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix619" element="dmd_dot" state="0"> - <bounds x="397" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix620" element="dmd_dot" state="0"> - <bounds x="401" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix621" element="dmd_dot" state="0"> - <bounds x="405" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix622" element="dmd_dot" state="0"> - <bounds x="409" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix623" element="dmd_dot" state="0"> - <bounds x="413" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix624" element="dmd_dot" state="0"> - <bounds x="417" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix625" element="dmd_dot" state="0"> - <bounds x="421" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix626" element="dmd_dot" state="0"> - <bounds x="425" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix627" element="dmd_dot" state="0"> - <bounds x="429" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix628" element="dmd_dot" state="0"> - <bounds x="433" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix629" element="dmd_dot" state="0"> - <bounds x="437" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix630" element="dmd_dot" state="0"> - <bounds x="441" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix631" element="dmd_dot" state="0"> - <bounds x="445" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix632" element="dmd_dot" state="0"> - <bounds x="449" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix633" element="dmd_dot" state="0"> - <bounds x="453" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix634" element="dmd_dot" state="0"> - <bounds x="457" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix635" element="dmd_dot" state="0"> - <bounds x="461" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix636" element="dmd_dot" state="0"> - <bounds x="465" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix637" element="dmd_dot" state="0"> - <bounds x="469" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix638" element="dmd_dot" state="0"> - <bounds x="473" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix639" element="dmd_dot" state="0"> - <bounds x="477" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix640" element="dmd_dot" state="0"> - <bounds x="481" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix641" element="dmd_dot" state="0"> - <bounds x="485" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix642" element="dmd_dot" state="0"> - <bounds x="489" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix643" element="dmd_dot" state="0"> - <bounds x="493" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix644" element="dmd_dot" state="0"> - <bounds x="497" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix645" element="dmd_dot" state="0"> - <bounds x="501" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix646" element="dmd_dot" state="0"> - <bounds x="505" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix647" element="dmd_dot" state="0"> - <bounds x="509" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix648" element="dmd_dot" state="0"> - <bounds x="513" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix649" element="dmd_dot" state="0"> - <bounds x="517" y="42" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix650" element="dmd_dot" state="0"> - <bounds x="261" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix651" element="dmd_dot" state="0"> - <bounds x="265" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix652" element="dmd_dot" state="0"> - <bounds x="269" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix653" element="dmd_dot" state="0"> - <bounds x="273" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix654" element="dmd_dot" state="0"> - <bounds x="277" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix655" element="dmd_dot" state="0"> - <bounds x="281" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix656" element="dmd_dot" state="0"> - <bounds x="285" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix657" element="dmd_dot" state="0"> - <bounds x="289" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix658" element="dmd_dot" state="0"> - <bounds x="293" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix659" element="dmd_dot" state="0"> - <bounds x="297" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix660" element="dmd_dot" state="0"> - <bounds x="301" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix661" element="dmd_dot" state="0"> - <bounds x="305" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix662" element="dmd_dot" state="0"> - <bounds x="309" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix663" element="dmd_dot" state="0"> - <bounds x="313" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix664" element="dmd_dot" state="0"> - <bounds x="317" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix665" element="dmd_dot" state="0"> - <bounds x="321" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix666" element="dmd_dot" state="0"> - <bounds x="325" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix667" element="dmd_dot" state="0"> - <bounds x="329" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix668" element="dmd_dot" state="0"> - <bounds x="333" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix669" element="dmd_dot" state="0"> - <bounds x="337" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix670" element="dmd_dot" state="0"> - <bounds x="341" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix671" element="dmd_dot" state="0"> - <bounds x="345" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix672" element="dmd_dot" state="0"> - <bounds x="349" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix673" element="dmd_dot" state="0"> - <bounds x="353" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix674" element="dmd_dot" state="0"> - <bounds x="357" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix675" element="dmd_dot" state="0"> - <bounds x="361" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix676" element="dmd_dot" state="0"> - <bounds x="365" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix677" element="dmd_dot" state="0"> - <bounds x="369" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix678" element="dmd_dot" state="0"> - <bounds x="373" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix679" element="dmd_dot" state="0"> - <bounds x="377" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix680" element="dmd_dot" state="0"> - <bounds x="381" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix681" element="dmd_dot" state="0"> - <bounds x="385" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix682" element="dmd_dot" state="0"> - <bounds x="389" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix683" element="dmd_dot" state="0"> - <bounds x="393" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix684" element="dmd_dot" state="0"> - <bounds x="397" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix685" element="dmd_dot" state="0"> - <bounds x="401" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix686" element="dmd_dot" state="0"> - <bounds x="405" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix687" element="dmd_dot" state="0"> - <bounds x="409" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix688" element="dmd_dot" state="0"> - <bounds x="413" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix689" element="dmd_dot" state="0"> - <bounds x="417" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix690" element="dmd_dot" state="0"> - <bounds x="421" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix691" element="dmd_dot" state="0"> - <bounds x="425" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix692" element="dmd_dot" state="0"> - <bounds x="429" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix693" element="dmd_dot" state="0"> - <bounds x="433" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix694" element="dmd_dot" state="0"> - <bounds x="437" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix695" element="dmd_dot" state="0"> - <bounds x="441" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix696" element="dmd_dot" state="0"> - <bounds x="445" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix697" element="dmd_dot" state="0"> - <bounds x="449" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix698" element="dmd_dot" state="0"> - <bounds x="453" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix699" element="dmd_dot" state="0"> - <bounds x="457" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix700" element="dmd_dot" state="0"> - <bounds x="461" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix701" element="dmd_dot" state="0"> - <bounds x="465" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix702" element="dmd_dot" state="0"> - <bounds x="469" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix703" element="dmd_dot" state="0"> - <bounds x="473" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix704" element="dmd_dot" state="0"> - <bounds x="477" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix705" element="dmd_dot" state="0"> - <bounds x="481" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix706" element="dmd_dot" state="0"> - <bounds x="485" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix707" element="dmd_dot" state="0"> - <bounds x="489" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix708" element="dmd_dot" state="0"> - <bounds x="493" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix709" element="dmd_dot" state="0"> - <bounds x="497" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix710" element="dmd_dot" state="0"> - <bounds x="501" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix711" element="dmd_dot" state="0"> - <bounds x="505" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix712" element="dmd_dot" state="0"> - <bounds x="509" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix713" element="dmd_dot" state="0"> - <bounds x="513" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix714" element="dmd_dot" state="0"> - <bounds x="517" y="46" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix715" element="dmd_dot" state="0"> - <bounds x="261" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix716" element="dmd_dot" state="0"> - <bounds x="265" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix717" element="dmd_dot" state="0"> - <bounds x="269" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix718" element="dmd_dot" state="0"> - <bounds x="273" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix719" element="dmd_dot" state="0"> - <bounds x="277" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix720" element="dmd_dot" state="0"> - <bounds x="281" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix721" element="dmd_dot" state="0"> - <bounds x="285" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix722" element="dmd_dot" state="0"> - <bounds x="289" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix723" element="dmd_dot" state="0"> - <bounds x="293" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix724" element="dmd_dot" state="0"> - <bounds x="297" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix725" element="dmd_dot" state="0"> - <bounds x="301" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix726" element="dmd_dot" state="0"> - <bounds x="305" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix727" element="dmd_dot" state="0"> - <bounds x="309" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix728" element="dmd_dot" state="0"> - <bounds x="313" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix729" element="dmd_dot" state="0"> - <bounds x="317" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix730" element="dmd_dot" state="0"> - <bounds x="321" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix731" element="dmd_dot" state="0"> - <bounds x="325" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix732" element="dmd_dot" state="0"> - <bounds x="329" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix733" element="dmd_dot" state="0"> - <bounds x="333" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix734" element="dmd_dot" state="0"> - <bounds x="337" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix735" element="dmd_dot" state="0"> - <bounds x="341" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix736" element="dmd_dot" state="0"> - <bounds x="345" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix737" element="dmd_dot" state="0"> - <bounds x="349" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix738" element="dmd_dot" state="0"> - <bounds x="353" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix739" element="dmd_dot" state="0"> - <bounds x="357" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix740" element="dmd_dot" state="0"> - <bounds x="361" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix741" element="dmd_dot" state="0"> - <bounds x="365" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix742" element="dmd_dot" state="0"> - <bounds x="369" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix743" element="dmd_dot" state="0"> - <bounds x="373" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix744" element="dmd_dot" state="0"> - <bounds x="377" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix745" element="dmd_dot" state="0"> - <bounds x="381" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix746" element="dmd_dot" state="0"> - <bounds x="385" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix747" element="dmd_dot" state="0"> - <bounds x="389" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix748" element="dmd_dot" state="0"> - <bounds x="393" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix749" element="dmd_dot" state="0"> - <bounds x="397" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix750" element="dmd_dot" state="0"> - <bounds x="401" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix751" element="dmd_dot" state="0"> - <bounds x="405" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix752" element="dmd_dot" state="0"> - <bounds x="409" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix753" element="dmd_dot" state="0"> - <bounds x="413" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix754" element="dmd_dot" state="0"> - <bounds x="417" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix755" element="dmd_dot" state="0"> - <bounds x="421" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix756" element="dmd_dot" state="0"> - <bounds x="425" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix757" element="dmd_dot" state="0"> - <bounds x="429" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix758" element="dmd_dot" state="0"> - <bounds x="433" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix759" element="dmd_dot" state="0"> - <bounds x="437" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix760" element="dmd_dot" state="0"> - <bounds x="441" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix761" element="dmd_dot" state="0"> - <bounds x="445" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix762" element="dmd_dot" state="0"> - <bounds x="449" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix763" element="dmd_dot" state="0"> - <bounds x="453" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix764" element="dmd_dot" state="0"> - <bounds x="457" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix765" element="dmd_dot" state="0"> - <bounds x="461" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix766" element="dmd_dot" state="0"> - <bounds x="465" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix767" element="dmd_dot" state="0"> - <bounds x="469" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix768" element="dmd_dot" state="0"> - <bounds x="473" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix769" element="dmd_dot" state="0"> - <bounds x="477" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix770" element="dmd_dot" state="0"> - <bounds x="481" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix771" element="dmd_dot" state="0"> - <bounds x="485" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix772" element="dmd_dot" state="0"> - <bounds x="489" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix773" element="dmd_dot" state="0"> - <bounds x="493" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix774" element="dmd_dot" state="0"> - <bounds x="497" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix775" element="dmd_dot" state="0"> - <bounds x="501" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix776" element="dmd_dot" state="0"> - <bounds x="505" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix777" element="dmd_dot" state="0"> - <bounds x="509" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix778" element="dmd_dot" state="0"> - <bounds x="513" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix779" element="dmd_dot" state="0"> - <bounds x="517" y="50" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix780" element="dmd_dot" state="0"> - <bounds x="261" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix781" element="dmd_dot" state="0"> - <bounds x="265" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix782" element="dmd_dot" state="0"> - <bounds x="269" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix783" element="dmd_dot" state="0"> - <bounds x="273" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix784" element="dmd_dot" state="0"> - <bounds x="277" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix785" element="dmd_dot" state="0"> - <bounds x="281" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix786" element="dmd_dot" state="0"> - <bounds x="285" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix787" element="dmd_dot" state="0"> - <bounds x="289" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix788" element="dmd_dot" state="0"> - <bounds x="293" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix789" element="dmd_dot" state="0"> - <bounds x="297" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix790" element="dmd_dot" state="0"> - <bounds x="301" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix791" element="dmd_dot" state="0"> - <bounds x="305" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix792" element="dmd_dot" state="0"> - <bounds x="309" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix793" element="dmd_dot" state="0"> - <bounds x="313" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix794" element="dmd_dot" state="0"> - <bounds x="317" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix795" element="dmd_dot" state="0"> - <bounds x="321" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix796" element="dmd_dot" state="0"> - <bounds x="325" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix797" element="dmd_dot" state="0"> - <bounds x="329" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix798" element="dmd_dot" state="0"> - <bounds x="333" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix799" element="dmd_dot" state="0"> - <bounds x="337" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix800" element="dmd_dot" state="0"> - <bounds x="341" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix801" element="dmd_dot" state="0"> - <bounds x="345" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix802" element="dmd_dot" state="0"> - <bounds x="349" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix803" element="dmd_dot" state="0"> - <bounds x="353" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix804" element="dmd_dot" state="0"> - <bounds x="357" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix805" element="dmd_dot" state="0"> - <bounds x="361" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix806" element="dmd_dot" state="0"> - <bounds x="365" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix807" element="dmd_dot" state="0"> - <bounds x="369" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix808" element="dmd_dot" state="0"> - <bounds x="373" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix809" element="dmd_dot" state="0"> - <bounds x="377" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix810" element="dmd_dot" state="0"> - <bounds x="381" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix811" element="dmd_dot" state="0"> - <bounds x="385" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix812" element="dmd_dot" state="0"> - <bounds x="389" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix813" element="dmd_dot" state="0"> - <bounds x="393" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix814" element="dmd_dot" state="0"> - <bounds x="397" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix815" element="dmd_dot" state="0"> - <bounds x="401" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix816" element="dmd_dot" state="0"> - <bounds x="405" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix817" element="dmd_dot" state="0"> - <bounds x="409" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix818" element="dmd_dot" state="0"> - <bounds x="413" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix819" element="dmd_dot" state="0"> - <bounds x="417" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix820" element="dmd_dot" state="0"> - <bounds x="421" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix821" element="dmd_dot" state="0"> - <bounds x="425" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix822" element="dmd_dot" state="0"> - <bounds x="429" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix823" element="dmd_dot" state="0"> - <bounds x="433" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix824" element="dmd_dot" state="0"> - <bounds x="437" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix825" element="dmd_dot" state="0"> - <bounds x="441" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix826" element="dmd_dot" state="0"> - <bounds x="445" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix827" element="dmd_dot" state="0"> - <bounds x="449" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix828" element="dmd_dot" state="0"> - <bounds x="453" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix829" element="dmd_dot" state="0"> - <bounds x="457" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix830" element="dmd_dot" state="0"> - <bounds x="461" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix831" element="dmd_dot" state="0"> - <bounds x="465" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix832" element="dmd_dot" state="0"> - <bounds x="469" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix833" element="dmd_dot" state="0"> - <bounds x="473" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix834" element="dmd_dot" state="0"> - <bounds x="477" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix835" element="dmd_dot" state="0"> - <bounds x="481" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix836" element="dmd_dot" state="0"> - <bounds x="485" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix837" element="dmd_dot" state="0"> - <bounds x="489" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix838" element="dmd_dot" state="0"> - <bounds x="493" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix839" element="dmd_dot" state="0"> - <bounds x="497" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix840" element="dmd_dot" state="0"> - <bounds x="501" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix841" element="dmd_dot" state="0"> - <bounds x="505" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix842" element="dmd_dot" state="0"> - <bounds x="509" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix843" element="dmd_dot" state="0"> - <bounds x="513" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix844" element="dmd_dot" state="0"> - <bounds x="517" y="54" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix845" element="dmd_dot" state="0"> - <bounds x="261" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix846" element="dmd_dot" state="0"> - <bounds x="265" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix847" element="dmd_dot" state="0"> - <bounds x="269" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix848" element="dmd_dot" state="0"> - <bounds x="273" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix849" element="dmd_dot" state="0"> - <bounds x="277" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix850" element="dmd_dot" state="0"> - <bounds x="281" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix851" element="dmd_dot" state="0"> - <bounds x="285" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix852" element="dmd_dot" state="0"> - <bounds x="289" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix853" element="dmd_dot" state="0"> - <bounds x="293" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix854" element="dmd_dot" state="0"> - <bounds x="297" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix855" element="dmd_dot" state="0"> - <bounds x="301" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix856" element="dmd_dot" state="0"> - <bounds x="305" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix857" element="dmd_dot" state="0"> - <bounds x="309" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix858" element="dmd_dot" state="0"> - <bounds x="313" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix859" element="dmd_dot" state="0"> - <bounds x="317" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix860" element="dmd_dot" state="0"> - <bounds x="321" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix861" element="dmd_dot" state="0"> - <bounds x="325" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix862" element="dmd_dot" state="0"> - <bounds x="329" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix863" element="dmd_dot" state="0"> - <bounds x="333" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix864" element="dmd_dot" state="0"> - <bounds x="337" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix865" element="dmd_dot" state="0"> - <bounds x="341" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix866" element="dmd_dot" state="0"> - <bounds x="345" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix867" element="dmd_dot" state="0"> - <bounds x="349" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix868" element="dmd_dot" state="0"> - <bounds x="353" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix869" element="dmd_dot" state="0"> - <bounds x="357" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix870" element="dmd_dot" state="0"> - <bounds x="361" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix871" element="dmd_dot" state="0"> - <bounds x="365" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix872" element="dmd_dot" state="0"> - <bounds x="369" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix873" element="dmd_dot" state="0"> - <bounds x="373" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix874" element="dmd_dot" state="0"> - <bounds x="377" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix875" element="dmd_dot" state="0"> - <bounds x="381" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix876" element="dmd_dot" state="0"> - <bounds x="385" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix877" element="dmd_dot" state="0"> - <bounds x="389" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix878" element="dmd_dot" state="0"> - <bounds x="393" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix879" element="dmd_dot" state="0"> - <bounds x="397" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix880" element="dmd_dot" state="0"> - <bounds x="401" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix881" element="dmd_dot" state="0"> - <bounds x="405" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix882" element="dmd_dot" state="0"> - <bounds x="409" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix883" element="dmd_dot" state="0"> - <bounds x="413" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix884" element="dmd_dot" state="0"> - <bounds x="417" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix885" element="dmd_dot" state="0"> - <bounds x="421" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix886" element="dmd_dot" state="0"> - <bounds x="425" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix887" element="dmd_dot" state="0"> - <bounds x="429" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix888" element="dmd_dot" state="0"> - <bounds x="433" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix889" element="dmd_dot" state="0"> - <bounds x="437" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix890" element="dmd_dot" state="0"> - <bounds x="441" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix891" element="dmd_dot" state="0"> - <bounds x="445" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix892" element="dmd_dot" state="0"> - <bounds x="449" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix893" element="dmd_dot" state="0"> - <bounds x="453" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix894" element="dmd_dot" state="0"> - <bounds x="457" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix895" element="dmd_dot" state="0"> - <bounds x="461" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix896" element="dmd_dot" state="0"> - <bounds x="465" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix897" element="dmd_dot" state="0"> - <bounds x="469" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix898" element="dmd_dot" state="0"> - <bounds x="473" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix899" element="dmd_dot" state="0"> - <bounds x="477" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix900" element="dmd_dot" state="0"> - <bounds x="481" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix901" element="dmd_dot" state="0"> - <bounds x="485" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix902" element="dmd_dot" state="0"> - <bounds x="489" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix903" element="dmd_dot" state="0"> - <bounds x="493" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix904" element="dmd_dot" state="0"> - <bounds x="497" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix905" element="dmd_dot" state="0"> - <bounds x="501" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix906" element="dmd_dot" state="0"> - <bounds x="505" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix907" element="dmd_dot" state="0"> - <bounds x="509" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix908" element="dmd_dot" state="0"> - <bounds x="513" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix909" element="dmd_dot" state="0"> - <bounds x="517" y="58" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix910" element="dmd_dot" state="0"> - <bounds x="261" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix911" element="dmd_dot" state="0"> - <bounds x="265" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix912" element="dmd_dot" state="0"> - <bounds x="269" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix913" element="dmd_dot" state="0"> - <bounds x="273" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix914" element="dmd_dot" state="0"> - <bounds x="277" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix915" element="dmd_dot" state="0"> - <bounds x="281" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix916" element="dmd_dot" state="0"> - <bounds x="285" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix917" element="dmd_dot" state="0"> - <bounds x="289" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix918" element="dmd_dot" state="0"> - <bounds x="293" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix919" element="dmd_dot" state="0"> - <bounds x="297" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix920" element="dmd_dot" state="0"> - <bounds x="301" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix921" element="dmd_dot" state="0"> - <bounds x="305" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix922" element="dmd_dot" state="0"> - <bounds x="309" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix923" element="dmd_dot" state="0"> - <bounds x="313" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix924" element="dmd_dot" state="0"> - <bounds x="317" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix925" element="dmd_dot" state="0"> - <bounds x="321" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix926" element="dmd_dot" state="0"> - <bounds x="325" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix927" element="dmd_dot" state="0"> - <bounds x="329" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix928" element="dmd_dot" state="0"> - <bounds x="333" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix929" element="dmd_dot" state="0"> - <bounds x="337" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix930" element="dmd_dot" state="0"> - <bounds x="341" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix931" element="dmd_dot" state="0"> - <bounds x="345" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix932" element="dmd_dot" state="0"> - <bounds x="349" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix933" element="dmd_dot" state="0"> - <bounds x="353" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix934" element="dmd_dot" state="0"> - <bounds x="357" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix935" element="dmd_dot" state="0"> - <bounds x="361" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix936" element="dmd_dot" state="0"> - <bounds x="365" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix937" element="dmd_dot" state="0"> - <bounds x="369" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix938" element="dmd_dot" state="0"> - <bounds x="373" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix939" element="dmd_dot" state="0"> - <bounds x="377" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix940" element="dmd_dot" state="0"> - <bounds x="381" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix941" element="dmd_dot" state="0"> - <bounds x="385" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix942" element="dmd_dot" state="0"> - <bounds x="389" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix943" element="dmd_dot" state="0"> - <bounds x="393" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix944" element="dmd_dot" state="0"> - <bounds x="397" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix945" element="dmd_dot" state="0"> - <bounds x="401" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix946" element="dmd_dot" state="0"> - <bounds x="405" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix947" element="dmd_dot" state="0"> - <bounds x="409" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix948" element="dmd_dot" state="0"> - <bounds x="413" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix949" element="dmd_dot" state="0"> - <bounds x="417" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix950" element="dmd_dot" state="0"> - <bounds x="421" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix951" element="dmd_dot" state="0"> - <bounds x="425" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix952" element="dmd_dot" state="0"> - <bounds x="429" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix953" element="dmd_dot" state="0"> - <bounds x="433" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix954" element="dmd_dot" state="0"> - <bounds x="437" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix955" element="dmd_dot" state="0"> - <bounds x="441" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix956" element="dmd_dot" state="0"> - <bounds x="445" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix957" element="dmd_dot" state="0"> - <bounds x="449" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix958" element="dmd_dot" state="0"> - <bounds x="453" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix959" element="dmd_dot" state="0"> - <bounds x="457" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix960" element="dmd_dot" state="0"> - <bounds x="461" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix961" element="dmd_dot" state="0"> - <bounds x="465" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix962" element="dmd_dot" state="0"> - <bounds x="469" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix963" element="dmd_dot" state="0"> - <bounds x="473" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix964" element="dmd_dot" state="0"> - <bounds x="477" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix965" element="dmd_dot" state="0"> - <bounds x="481" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix966" element="dmd_dot" state="0"> - <bounds x="485" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix967" element="dmd_dot" state="0"> - <bounds x="489" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix968" element="dmd_dot" state="0"> - <bounds x="493" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix969" element="dmd_dot" state="0"> - <bounds x="497" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix970" element="dmd_dot" state="0"> - <bounds x="501" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix971" element="dmd_dot" state="0"> - <bounds x="505" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix972" element="dmd_dot" state="0"> - <bounds x="509" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix973" element="dmd_dot" state="0"> - <bounds x="513" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix974" element="dmd_dot" state="0"> - <bounds x="517" y="62" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix975" element="dmd_dot" state="0"> - <bounds x="261" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix976" element="dmd_dot" state="0"> - <bounds x="265" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix977" element="dmd_dot" state="0"> - <bounds x="269" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix978" element="dmd_dot" state="0"> - <bounds x="273" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix979" element="dmd_dot" state="0"> - <bounds x="277" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix980" element="dmd_dot" state="0"> - <bounds x="281" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix981" element="dmd_dot" state="0"> - <bounds x="285" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix982" element="dmd_dot" state="0"> - <bounds x="289" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix983" element="dmd_dot" state="0"> - <bounds x="293" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix984" element="dmd_dot" state="0"> - <bounds x="297" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix985" element="dmd_dot" state="0"> - <bounds x="301" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix986" element="dmd_dot" state="0"> - <bounds x="305" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix987" element="dmd_dot" state="0"> - <bounds x="309" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix988" element="dmd_dot" state="0"> - <bounds x="313" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix989" element="dmd_dot" state="0"> - <bounds x="317" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix990" element="dmd_dot" state="0"> - <bounds x="321" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix991" element="dmd_dot" state="0"> - <bounds x="325" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix992" element="dmd_dot" state="0"> - <bounds x="329" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix993" element="dmd_dot" state="0"> - <bounds x="333" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix994" element="dmd_dot" state="0"> - <bounds x="337" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix995" element="dmd_dot" state="0"> - <bounds x="341" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix996" element="dmd_dot" state="0"> - <bounds x="345" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix997" element="dmd_dot" state="0"> - <bounds x="349" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix998" element="dmd_dot" state="0"> - <bounds x="353" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix999" element="dmd_dot" state="0"> - <bounds x="357" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1000" element="dmd_dot" state="0"> - <bounds x="361" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1001" element="dmd_dot" state="0"> - <bounds x="365" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1002" element="dmd_dot" state="0"> - <bounds x="369" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1003" element="dmd_dot" state="0"> - <bounds x="373" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1004" element="dmd_dot" state="0"> - <bounds x="377" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1005" element="dmd_dot" state="0"> - <bounds x="381" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1006" element="dmd_dot" state="0"> - <bounds x="385" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1007" element="dmd_dot" state="0"> - <bounds x="389" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1008" element="dmd_dot" state="0"> - <bounds x="393" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1009" element="dmd_dot" state="0"> - <bounds x="397" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1010" element="dmd_dot" state="0"> - <bounds x="401" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1011" element="dmd_dot" state="0"> - <bounds x="405" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1012" element="dmd_dot" state="0"> - <bounds x="409" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1013" element="dmd_dot" state="0"> - <bounds x="413" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1014" element="dmd_dot" state="0"> - <bounds x="417" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1015" element="dmd_dot" state="0"> - <bounds x="421" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1016" element="dmd_dot" state="0"> - <bounds x="425" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1017" element="dmd_dot" state="0"> - <bounds x="429" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1018" element="dmd_dot" state="0"> - <bounds x="433" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1019" element="dmd_dot" state="0"> - <bounds x="437" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1020" element="dmd_dot" state="0"> - <bounds x="441" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1021" element="dmd_dot" state="0"> - <bounds x="445" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1022" element="dmd_dot" state="0"> - <bounds x="449" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1023" element="dmd_dot" state="0"> - <bounds x="453" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1024" element="dmd_dot" state="0"> - <bounds x="457" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1025" element="dmd_dot" state="0"> - <bounds x="461" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1026" element="dmd_dot" state="0"> - <bounds x="465" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1027" element="dmd_dot" state="0"> - <bounds x="469" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1028" element="dmd_dot" state="0"> - <bounds x="473" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1029" element="dmd_dot" state="0"> - <bounds x="477" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1030" element="dmd_dot" state="0"> - <bounds x="481" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1031" element="dmd_dot" state="0"> - <bounds x="485" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1032" element="dmd_dot" state="0"> - <bounds x="489" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1033" element="dmd_dot" state="0"> - <bounds x="493" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1034" element="dmd_dot" state="0"> - <bounds x="497" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1035" element="dmd_dot" state="0"> - <bounds x="501" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1036" element="dmd_dot" state="0"> - <bounds x="505" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1037" element="dmd_dot" state="0"> - <bounds x="509" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1038" element="dmd_dot" state="0"> - <bounds x="513" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1039" element="dmd_dot" state="0"> - <bounds x="517" y="66" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1040" element="dmd_dot" state="0"> - <bounds x="261" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1041" element="dmd_dot" state="0"> - <bounds x="265" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1042" element="dmd_dot" state="0"> - <bounds x="269" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1043" element="dmd_dot" state="0"> - <bounds x="273" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1044" element="dmd_dot" state="0"> - <bounds x="277" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1045" element="dmd_dot" state="0"> - <bounds x="281" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1046" element="dmd_dot" state="0"> - <bounds x="285" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1047" element="dmd_dot" state="0"> - <bounds x="289" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1048" element="dmd_dot" state="0"> - <bounds x="293" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1049" element="dmd_dot" state="0"> - <bounds x="297" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1050" element="dmd_dot" state="0"> - <bounds x="301" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1051" element="dmd_dot" state="0"> - <bounds x="305" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1052" element="dmd_dot" state="0"> - <bounds x="309" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1053" element="dmd_dot" state="0"> - <bounds x="313" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1054" element="dmd_dot" state="0"> - <bounds x="317" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1055" element="dmd_dot" state="0"> - <bounds x="321" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1056" element="dmd_dot" state="0"> - <bounds x="325" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1057" element="dmd_dot" state="0"> - <bounds x="329" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1058" element="dmd_dot" state="0"> - <bounds x="333" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1059" element="dmd_dot" state="0"> - <bounds x="337" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1060" element="dmd_dot" state="0"> - <bounds x="341" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1061" element="dmd_dot" state="0"> - <bounds x="345" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1062" element="dmd_dot" state="0"> - <bounds x="349" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1063" element="dmd_dot" state="0"> - <bounds x="353" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1064" element="dmd_dot" state="0"> - <bounds x="357" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1065" element="dmd_dot" state="0"> - <bounds x="361" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1066" element="dmd_dot" state="0"> - <bounds x="365" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1067" element="dmd_dot" state="0"> - <bounds x="369" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1068" element="dmd_dot" state="0"> - <bounds x="373" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1069" element="dmd_dot" state="0"> - <bounds x="377" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1070" element="dmd_dot" state="0"> - <bounds x="381" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1071" element="dmd_dot" state="0"> - <bounds x="385" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1072" element="dmd_dot" state="0"> - <bounds x="389" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1073" element="dmd_dot" state="0"> - <bounds x="393" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1074" element="dmd_dot" state="0"> - <bounds x="397" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1075" element="dmd_dot" state="0"> - <bounds x="401" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1076" element="dmd_dot" state="0"> - <bounds x="405" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1077" element="dmd_dot" state="0"> - <bounds x="409" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1078" element="dmd_dot" state="0"> - <bounds x="413" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1079" element="dmd_dot" state="0"> - <bounds x="417" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1080" element="dmd_dot" state="0"> - <bounds x="421" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1081" element="dmd_dot" state="0"> - <bounds x="425" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1082" element="dmd_dot" state="0"> - <bounds x="429" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1083" element="dmd_dot" state="0"> - <bounds x="433" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1084" element="dmd_dot" state="0"> - <bounds x="437" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1085" element="dmd_dot" state="0"> - <bounds x="441" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1086" element="dmd_dot" state="0"> - <bounds x="445" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1087" element="dmd_dot" state="0"> - <bounds x="449" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1088" element="dmd_dot" state="0"> - <bounds x="453" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1089" element="dmd_dot" state="0"> - <bounds x="457" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1090" element="dmd_dot" state="0"> - <bounds x="461" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1091" element="dmd_dot" state="0"> - <bounds x="465" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1092" element="dmd_dot" state="0"> - <bounds x="469" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1093" element="dmd_dot" state="0"> - <bounds x="473" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1094" element="dmd_dot" state="0"> - <bounds x="477" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1095" element="dmd_dot" state="0"> - <bounds x="481" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1096" element="dmd_dot" state="0"> - <bounds x="485" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1097" element="dmd_dot" state="0"> - <bounds x="489" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1098" element="dmd_dot" state="0"> - <bounds x="493" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1099" element="dmd_dot" state="0"> - <bounds x="497" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1100" element="dmd_dot" state="0"> - <bounds x="501" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1101" element="dmd_dot" state="0"> - <bounds x="505" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1102" element="dmd_dot" state="0"> - <bounds x="509" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1103" element="dmd_dot" state="0"> - <bounds x="513" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1104" element="dmd_dot" state="0"> - <bounds x="517" y="70" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1105" element="dmd_dot" state="0"> - <bounds x="261" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1106" element="dmd_dot" state="0"> - <bounds x="265" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1107" element="dmd_dot" state="0"> - <bounds x="269" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1108" element="dmd_dot" state="0"> - <bounds x="273" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1109" element="dmd_dot" state="0"> - <bounds x="277" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1110" element="dmd_dot" state="0"> - <bounds x="281" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1111" element="dmd_dot" state="0"> - <bounds x="285" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1112" element="dmd_dot" state="0"> - <bounds x="289" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1113" element="dmd_dot" state="0"> - <bounds x="293" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1114" element="dmd_dot" state="0"> - <bounds x="297" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1115" element="dmd_dot" state="0"> - <bounds x="301" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1116" element="dmd_dot" state="0"> - <bounds x="305" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1117" element="dmd_dot" state="0"> - <bounds x="309" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1118" element="dmd_dot" state="0"> - <bounds x="313" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1119" element="dmd_dot" state="0"> - <bounds x="317" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1120" element="dmd_dot" state="0"> - <bounds x="321" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1121" element="dmd_dot" state="0"> - <bounds x="325" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1122" element="dmd_dot" state="0"> - <bounds x="329" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1123" element="dmd_dot" state="0"> - <bounds x="333" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1124" element="dmd_dot" state="0"> - <bounds x="337" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1125" element="dmd_dot" state="0"> - <bounds x="341" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1126" element="dmd_dot" state="0"> - <bounds x="345" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1127" element="dmd_dot" state="0"> - <bounds x="349" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1128" element="dmd_dot" state="0"> - <bounds x="353" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1129" element="dmd_dot" state="0"> - <bounds x="357" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1130" element="dmd_dot" state="0"> - <bounds x="361" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1131" element="dmd_dot" state="0"> - <bounds x="365" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1132" element="dmd_dot" state="0"> - <bounds x="369" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1133" element="dmd_dot" state="0"> - <bounds x="373" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1134" element="dmd_dot" state="0"> - <bounds x="377" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1135" element="dmd_dot" state="0"> - <bounds x="381" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1136" element="dmd_dot" state="0"> - <bounds x="385" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1137" element="dmd_dot" state="0"> - <bounds x="389" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1138" element="dmd_dot" state="0"> - <bounds x="393" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1139" element="dmd_dot" state="0"> - <bounds x="397" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1140" element="dmd_dot" state="0"> - <bounds x="401" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1141" element="dmd_dot" state="0"> - <bounds x="405" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1142" element="dmd_dot" state="0"> - <bounds x="409" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1143" element="dmd_dot" state="0"> - <bounds x="413" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1144" element="dmd_dot" state="0"> - <bounds x="417" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1145" element="dmd_dot" state="0"> - <bounds x="421" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1146" element="dmd_dot" state="0"> - <bounds x="425" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1147" element="dmd_dot" state="0"> - <bounds x="429" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1148" element="dmd_dot" state="0"> - <bounds x="433" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1149" element="dmd_dot" state="0"> - <bounds x="437" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1150" element="dmd_dot" state="0"> - <bounds x="441" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1151" element="dmd_dot" state="0"> - <bounds x="445" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1152" element="dmd_dot" state="0"> - <bounds x="449" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1153" element="dmd_dot" state="0"> - <bounds x="453" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1154" element="dmd_dot" state="0"> - <bounds x="457" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1155" element="dmd_dot" state="0"> - <bounds x="461" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1156" element="dmd_dot" state="0"> - <bounds x="465" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1157" element="dmd_dot" state="0"> - <bounds x="469" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1158" element="dmd_dot" state="0"> - <bounds x="473" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1159" element="dmd_dot" state="0"> - <bounds x="477" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1160" element="dmd_dot" state="0"> - <bounds x="481" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1161" element="dmd_dot" state="0"> - <bounds x="485" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1162" element="dmd_dot" state="0"> - <bounds x="489" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1163" element="dmd_dot" state="0"> - <bounds x="493" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1164" element="dmd_dot" state="0"> - <bounds x="497" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1165" element="dmd_dot" state="0"> - <bounds x="501" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1166" element="dmd_dot" state="0"> - <bounds x="505" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1167" element="dmd_dot" state="0"> - <bounds x="509" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1168" element="dmd_dot" state="0"> - <bounds x="513" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1169" element="dmd_dot" state="0"> - <bounds x="517" y="74" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1170" element="dmd_dot" state="0"> - <bounds x="261" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1171" element="dmd_dot" state="0"> - <bounds x="265" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1172" element="dmd_dot" state="0"> - <bounds x="269" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1173" element="dmd_dot" state="0"> - <bounds x="273" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1174" element="dmd_dot" state="0"> - <bounds x="277" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1175" element="dmd_dot" state="0"> - <bounds x="281" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1176" element="dmd_dot" state="0"> - <bounds x="285" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1177" element="dmd_dot" state="0"> - <bounds x="289" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1178" element="dmd_dot" state="0"> - <bounds x="293" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1179" element="dmd_dot" state="0"> - <bounds x="297" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1180" element="dmd_dot" state="0"> - <bounds x="301" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1181" element="dmd_dot" state="0"> - <bounds x="305" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1182" element="dmd_dot" state="0"> - <bounds x="309" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1183" element="dmd_dot" state="0"> - <bounds x="313" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1184" element="dmd_dot" state="0"> - <bounds x="317" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1185" element="dmd_dot" state="0"> - <bounds x="321" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1186" element="dmd_dot" state="0"> - <bounds x="325" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1187" element="dmd_dot" state="0"> - <bounds x="329" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1188" element="dmd_dot" state="0"> - <bounds x="333" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1189" element="dmd_dot" state="0"> - <bounds x="337" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1190" element="dmd_dot" state="0"> - <bounds x="341" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1191" element="dmd_dot" state="0"> - <bounds x="345" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1192" element="dmd_dot" state="0"> - <bounds x="349" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1193" element="dmd_dot" state="0"> - <bounds x="353" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1194" element="dmd_dot" state="0"> - <bounds x="357" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1195" element="dmd_dot" state="0"> - <bounds x="361" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1196" element="dmd_dot" state="0"> - <bounds x="365" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1197" element="dmd_dot" state="0"> - <bounds x="369" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1198" element="dmd_dot" state="0"> - <bounds x="373" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1199" element="dmd_dot" state="0"> - <bounds x="377" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1200" element="dmd_dot" state="0"> - <bounds x="381" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1201" element="dmd_dot" state="0"> - <bounds x="385" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1202" element="dmd_dot" state="0"> - <bounds x="389" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1203" element="dmd_dot" state="0"> - <bounds x="393" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1204" element="dmd_dot" state="0"> - <bounds x="397" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1205" element="dmd_dot" state="0"> - <bounds x="401" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1206" element="dmd_dot" state="0"> - <bounds x="405" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1207" element="dmd_dot" state="0"> - <bounds x="409" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1208" element="dmd_dot" state="0"> - <bounds x="413" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1209" element="dmd_dot" state="0"> - <bounds x="417" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1210" element="dmd_dot" state="0"> - <bounds x="421" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1211" element="dmd_dot" state="0"> - <bounds x="425" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1212" element="dmd_dot" state="0"> - <bounds x="429" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1213" element="dmd_dot" state="0"> - <bounds x="433" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1214" element="dmd_dot" state="0"> - <bounds x="437" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1215" element="dmd_dot" state="0"> - <bounds x="441" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1216" element="dmd_dot" state="0"> - <bounds x="445" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1217" element="dmd_dot" state="0"> - <bounds x="449" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1218" element="dmd_dot" state="0"> - <bounds x="453" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1219" element="dmd_dot" state="0"> - <bounds x="457" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1220" element="dmd_dot" state="0"> - <bounds x="461" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1221" element="dmd_dot" state="0"> - <bounds x="465" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1222" element="dmd_dot" state="0"> - <bounds x="469" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1223" element="dmd_dot" state="0"> - <bounds x="473" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1224" element="dmd_dot" state="0"> - <bounds x="477" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1225" element="dmd_dot" state="0"> - <bounds x="481" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1226" element="dmd_dot" state="0"> - <bounds x="485" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1227" element="dmd_dot" state="0"> - <bounds x="489" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1228" element="dmd_dot" state="0"> - <bounds x="493" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1229" element="dmd_dot" state="0"> - <bounds x="497" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1230" element="dmd_dot" state="0"> - <bounds x="501" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1231" element="dmd_dot" state="0"> - <bounds x="505" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1232" element="dmd_dot" state="0"> - <bounds x="509" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1233" element="dmd_dot" state="0"> - <bounds x="513" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1234" element="dmd_dot" state="0"> - <bounds x="517" y="78" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1235" element="dmd_dot" state="0"> - <bounds x="261" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1236" element="dmd_dot" state="0"> - <bounds x="265" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1237" element="dmd_dot" state="0"> - <bounds x="269" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1238" element="dmd_dot" state="0"> - <bounds x="273" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1239" element="dmd_dot" state="0"> - <bounds x="277" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1240" element="dmd_dot" state="0"> - <bounds x="281" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1241" element="dmd_dot" state="0"> - <bounds x="285" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1242" element="dmd_dot" state="0"> - <bounds x="289" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1243" element="dmd_dot" state="0"> - <bounds x="293" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1244" element="dmd_dot" state="0"> - <bounds x="297" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1245" element="dmd_dot" state="0"> - <bounds x="301" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1246" element="dmd_dot" state="0"> - <bounds x="305" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1247" element="dmd_dot" state="0"> - <bounds x="309" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1248" element="dmd_dot" state="0"> - <bounds x="313" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1249" element="dmd_dot" state="0"> - <bounds x="317" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1250" element="dmd_dot" state="0"> - <bounds x="321" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1251" element="dmd_dot" state="0"> - <bounds x="325" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1252" element="dmd_dot" state="0"> - <bounds x="329" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1253" element="dmd_dot" state="0"> - <bounds x="333" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1254" element="dmd_dot" state="0"> - <bounds x="337" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1255" element="dmd_dot" state="0"> - <bounds x="341" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1256" element="dmd_dot" state="0"> - <bounds x="345" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1257" element="dmd_dot" state="0"> - <bounds x="349" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1258" element="dmd_dot" state="0"> - <bounds x="353" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1259" element="dmd_dot" state="0"> - <bounds x="357" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1260" element="dmd_dot" state="0"> - <bounds x="361" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1261" element="dmd_dot" state="0"> - <bounds x="365" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1262" element="dmd_dot" state="0"> - <bounds x="369" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1263" element="dmd_dot" state="0"> - <bounds x="373" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1264" element="dmd_dot" state="0"> - <bounds x="377" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1265" element="dmd_dot" state="0"> - <bounds x="381" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1266" element="dmd_dot" state="0"> - <bounds x="385" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1267" element="dmd_dot" state="0"> - <bounds x="389" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1268" element="dmd_dot" state="0"> - <bounds x="393" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1269" element="dmd_dot" state="0"> - <bounds x="397" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1270" element="dmd_dot" state="0"> - <bounds x="401" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1271" element="dmd_dot" state="0"> - <bounds x="405" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1272" element="dmd_dot" state="0"> - <bounds x="409" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1273" element="dmd_dot" state="0"> - <bounds x="413" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1274" element="dmd_dot" state="0"> - <bounds x="417" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1275" element="dmd_dot" state="0"> - <bounds x="421" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1276" element="dmd_dot" state="0"> - <bounds x="425" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1277" element="dmd_dot" state="0"> - <bounds x="429" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1278" element="dmd_dot" state="0"> - <bounds x="433" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1279" element="dmd_dot" state="0"> - <bounds x="437" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1280" element="dmd_dot" state="0"> - <bounds x="441" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1281" element="dmd_dot" state="0"> - <bounds x="445" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1282" element="dmd_dot" state="0"> - <bounds x="449" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1283" element="dmd_dot" state="0"> - <bounds x="453" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1284" element="dmd_dot" state="0"> - <bounds x="457" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1285" element="dmd_dot" state="0"> - <bounds x="461" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1286" element="dmd_dot" state="0"> - <bounds x="465" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1287" element="dmd_dot" state="0"> - <bounds x="469" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1288" element="dmd_dot" state="0"> - <bounds x="473" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1289" element="dmd_dot" state="0"> - <bounds x="477" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1290" element="dmd_dot" state="0"> - <bounds x="481" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1291" element="dmd_dot" state="0"> - <bounds x="485" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1292" element="dmd_dot" state="0"> - <bounds x="489" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1293" element="dmd_dot" state="0"> - <bounds x="493" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1294" element="dmd_dot" state="0"> - <bounds x="497" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1295" element="dmd_dot" state="0"> - <bounds x="501" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1296" element="dmd_dot" state="0"> - <bounds x="505" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1297" element="dmd_dot" state="0"> - <bounds x="509" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1298" element="dmd_dot" state="0"> - <bounds x="513" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1299" element="dmd_dot" state="0"> - <bounds x="517" y="82" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1300" element="dmd_dot" state="0"> - <bounds x="261" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1301" element="dmd_dot" state="0"> - <bounds x="265" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1302" element="dmd_dot" state="0"> - <bounds x="269" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1303" element="dmd_dot" state="0"> - <bounds x="273" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1304" element="dmd_dot" state="0"> - <bounds x="277" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1305" element="dmd_dot" state="0"> - <bounds x="281" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1306" element="dmd_dot" state="0"> - <bounds x="285" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1307" element="dmd_dot" state="0"> - <bounds x="289" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1308" element="dmd_dot" state="0"> - <bounds x="293" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1309" element="dmd_dot" state="0"> - <bounds x="297" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1310" element="dmd_dot" state="0"> - <bounds x="301" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1311" element="dmd_dot" state="0"> - <bounds x="305" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1312" element="dmd_dot" state="0"> - <bounds x="309" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1313" element="dmd_dot" state="0"> - <bounds x="313" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1314" element="dmd_dot" state="0"> - <bounds x="317" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1315" element="dmd_dot" state="0"> - <bounds x="321" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1316" element="dmd_dot" state="0"> - <bounds x="325" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1317" element="dmd_dot" state="0"> - <bounds x="329" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1318" element="dmd_dot" state="0"> - <bounds x="333" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1319" element="dmd_dot" state="0"> - <bounds x="337" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1320" element="dmd_dot" state="0"> - <bounds x="341" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1321" element="dmd_dot" state="0"> - <bounds x="345" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1322" element="dmd_dot" state="0"> - <bounds x="349" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1323" element="dmd_dot" state="0"> - <bounds x="353" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1324" element="dmd_dot" state="0"> - <bounds x="357" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1325" element="dmd_dot" state="0"> - <bounds x="361" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1326" element="dmd_dot" state="0"> - <bounds x="365" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1327" element="dmd_dot" state="0"> - <bounds x="369" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1328" element="dmd_dot" state="0"> - <bounds x="373" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1329" element="dmd_dot" state="0"> - <bounds x="377" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1330" element="dmd_dot" state="0"> - <bounds x="381" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1331" element="dmd_dot" state="0"> - <bounds x="385" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1332" element="dmd_dot" state="0"> - <bounds x="389" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1333" element="dmd_dot" state="0"> - <bounds x="393" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1334" element="dmd_dot" state="0"> - <bounds x="397" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1335" element="dmd_dot" state="0"> - <bounds x="401" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1336" element="dmd_dot" state="0"> - <bounds x="405" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1337" element="dmd_dot" state="0"> - <bounds x="409" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1338" element="dmd_dot" state="0"> - <bounds x="413" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1339" element="dmd_dot" state="0"> - <bounds x="417" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1340" element="dmd_dot" state="0"> - <bounds x="421" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1341" element="dmd_dot" state="0"> - <bounds x="425" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1342" element="dmd_dot" state="0"> - <bounds x="429" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1343" element="dmd_dot" state="0"> - <bounds x="433" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1344" element="dmd_dot" state="0"> - <bounds x="437" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1345" element="dmd_dot" state="0"> - <bounds x="441" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1346" element="dmd_dot" state="0"> - <bounds x="445" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1347" element="dmd_dot" state="0"> - <bounds x="449" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1348" element="dmd_dot" state="0"> - <bounds x="453" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1349" element="dmd_dot" state="0"> - <bounds x="457" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1350" element="dmd_dot" state="0"> - <bounds x="461" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1351" element="dmd_dot" state="0"> - <bounds x="465" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1352" element="dmd_dot" state="0"> - <bounds x="469" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1353" element="dmd_dot" state="0"> - <bounds x="473" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1354" element="dmd_dot" state="0"> - <bounds x="477" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1355" element="dmd_dot" state="0"> - <bounds x="481" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1356" element="dmd_dot" state="0"> - <bounds x="485" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1357" element="dmd_dot" state="0"> - <bounds x="489" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1358" element="dmd_dot" state="0"> - <bounds x="493" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1359" element="dmd_dot" state="0"> - <bounds x="497" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1360" element="dmd_dot" state="0"> - <bounds x="501" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1361" element="dmd_dot" state="0"> - <bounds x="505" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1362" element="dmd_dot" state="0"> - <bounds x="509" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1363" element="dmd_dot" state="0"> - <bounds x="513" y="86" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1364" element="dmd_dot" state="0"> - <bounds x="517" y="86" width="2" height="2"> - </bounds> - </backdrop> + <!-- The DMD --> + <screen index="0"> + <bounds left="261" top="6" right="523" bottom="92" /> + </screen> <backdrop name="label15" element="label_15"> <bounds x="619" y="85" width="38" height="67"> </bounds> diff --git a/src/mame/layout/sc2prom.lay b/src/mame/layout/sc2prom.lay index 642e42d2ef8..d56777bdbb8 100644 --- a/src/mame/layout/sc2prom.lay +++ b/src/mame/layout/sc2prom.lay @@ -3420,22 +3420,7 @@ </color> </led7seg> </element> - <element name="dmd_dot" defstate="0"> - <rect state="1"> - <color red="1.0" green="0.5" blue="0.0"> - </color> - </rect> - <rect state="0"> - <color red="0.4" green="0.2" blue="0.0"> - </color> - </rect> - </element> - <element name="dmd_background"> - <rect> - <color red="0.0" green="0.0" blue="0.0"> - </color> - </rect> - </element> + <element name="reel_lamp_layer_0" defstate="0"> <rect> <color red="0.40" green="0.40" blue="0.40"> @@ -6944,5470 +6929,12 @@ <bounds x="395" y="824" width="71" height="33"> </bounds> </backdrop> - <backdrop element="dmd_background"> - <bounds x="65" y="451" width="327" height="107"> - </bounds> - </backdrop> - <backdrop name="dotmatrix0" element="dmd_dot" state="0"> - <bounds x="65" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1" element="dmd_dot" state="0"> - <bounds x="70" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix2" element="dmd_dot" state="0"> - <bounds x="75" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix3" element="dmd_dot" state="0"> - <bounds x="80" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix4" element="dmd_dot" state="0"> - <bounds x="85" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix5" element="dmd_dot" state="0"> - <bounds x="90" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix6" element="dmd_dot" state="0"> - <bounds x="95" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix7" element="dmd_dot" state="0"> - <bounds x="100" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix8" element="dmd_dot" state="0"> - <bounds x="105" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix9" element="dmd_dot" state="0"> - <bounds x="110" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix10" element="dmd_dot" state="0"> - <bounds x="115" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix11" element="dmd_dot" state="0"> - <bounds x="120" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix12" element="dmd_dot" state="0"> - <bounds x="125" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix13" element="dmd_dot" state="0"> - <bounds x="130" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix14" element="dmd_dot" state="0"> - <bounds x="135" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix15" element="dmd_dot" state="0"> - <bounds x="140" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix16" element="dmd_dot" state="0"> - <bounds x="145" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix17" element="dmd_dot" state="0"> - <bounds x="150" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix18" element="dmd_dot" state="0"> - <bounds x="155" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix19" element="dmd_dot" state="0"> - <bounds x="160" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix20" element="dmd_dot" state="0"> - <bounds x="165" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix21" element="dmd_dot" state="0"> - <bounds x="170" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix22" element="dmd_dot" state="0"> - <bounds x="175" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix23" element="dmd_dot" state="0"> - <bounds x="180" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix24" element="dmd_dot" state="0"> - <bounds x="185" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix25" element="dmd_dot" state="0"> - <bounds x="190" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix26" element="dmd_dot" state="0"> - <bounds x="195" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix27" element="dmd_dot" state="0"> - <bounds x="200" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix28" element="dmd_dot" state="0"> - <bounds x="205" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix29" element="dmd_dot" state="0"> - <bounds x="210" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix30" element="dmd_dot" state="0"> - <bounds x="215" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix31" element="dmd_dot" state="0"> - <bounds x="220" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix32" element="dmd_dot" state="0"> - <bounds x="225" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix33" element="dmd_dot" state="0"> - <bounds x="230" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix34" element="dmd_dot" state="0"> - <bounds x="235" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix35" element="dmd_dot" state="0"> - <bounds x="240" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix36" element="dmd_dot" state="0"> - <bounds x="245" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix37" element="dmd_dot" state="0"> - <bounds x="250" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix38" element="dmd_dot" state="0"> - <bounds x="255" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix39" element="dmd_dot" state="0"> - <bounds x="260" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix40" element="dmd_dot" state="0"> - <bounds x="265" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix41" element="dmd_dot" state="0"> - <bounds x="270" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix42" element="dmd_dot" state="0"> - <bounds x="275" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix43" element="dmd_dot" state="0"> - <bounds x="280" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix44" element="dmd_dot" state="0"> - <bounds x="285" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix45" element="dmd_dot" state="0"> - <bounds x="290" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix46" element="dmd_dot" state="0"> - <bounds x="295" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix47" element="dmd_dot" state="0"> - <bounds x="300" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix48" element="dmd_dot" state="0"> - <bounds x="305" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix49" element="dmd_dot" state="0"> - <bounds x="310" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix50" element="dmd_dot" state="0"> - <bounds x="315" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix51" element="dmd_dot" state="0"> - <bounds x="320" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix52" element="dmd_dot" state="0"> - <bounds x="325" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix53" element="dmd_dot" state="0"> - <bounds x="330" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix54" element="dmd_dot" state="0"> - <bounds x="335" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix55" element="dmd_dot" state="0"> - <bounds x="340" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix56" element="dmd_dot" state="0"> - <bounds x="345" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix57" element="dmd_dot" state="0"> - <bounds x="350" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix58" element="dmd_dot" state="0"> - <bounds x="355" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix59" element="dmd_dot" state="0"> - <bounds x="360" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix60" element="dmd_dot" state="0"> - <bounds x="365" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix61" element="dmd_dot" state="0"> - <bounds x="370" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix62" element="dmd_dot" state="0"> - <bounds x="375" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix63" element="dmd_dot" state="0"> - <bounds x="380" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix64" element="dmd_dot" state="0"> - <bounds x="385" y="451" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix65" element="dmd_dot" state="0"> - <bounds x="65" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix66" element="dmd_dot" state="0"> - <bounds x="70" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix67" element="dmd_dot" state="0"> - <bounds x="75" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix68" element="dmd_dot" state="0"> - <bounds x="80" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix69" element="dmd_dot" state="0"> - <bounds x="85" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix70" element="dmd_dot" state="0"> - <bounds x="90" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix71" element="dmd_dot" state="0"> - <bounds x="95" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix72" element="dmd_dot" state="0"> - <bounds x="100" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix73" element="dmd_dot" state="0"> - <bounds x="105" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix74" element="dmd_dot" state="0"> - <bounds x="110" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix75" element="dmd_dot" state="0"> - <bounds x="115" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix76" element="dmd_dot" state="0"> - <bounds x="120" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix77" element="dmd_dot" state="0"> - <bounds x="125" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix78" element="dmd_dot" state="0"> - <bounds x="130" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix79" element="dmd_dot" state="0"> - <bounds x="135" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix80" element="dmd_dot" state="0"> - <bounds x="140" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix81" element="dmd_dot" state="0"> - <bounds x="145" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix82" element="dmd_dot" state="0"> - <bounds x="150" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix83" element="dmd_dot" state="0"> - <bounds x="155" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix84" element="dmd_dot" state="0"> - <bounds x="160" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix85" element="dmd_dot" state="0"> - <bounds x="165" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix86" element="dmd_dot" state="0"> - <bounds x="170" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix87" element="dmd_dot" state="0"> - <bounds x="175" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix88" element="dmd_dot" state="0"> - <bounds x="180" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix89" element="dmd_dot" state="0"> - <bounds x="185" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix90" element="dmd_dot" state="0"> - <bounds x="190" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix91" element="dmd_dot" state="0"> - <bounds x="195" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix92" element="dmd_dot" state="0"> - <bounds x="200" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix93" element="dmd_dot" state="0"> - <bounds x="205" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix94" element="dmd_dot" state="0"> - <bounds x="210" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix95" element="dmd_dot" state="0"> - <bounds x="215" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix96" element="dmd_dot" state="0"> - <bounds x="220" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix97" element="dmd_dot" state="0"> - <bounds x="225" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix98" element="dmd_dot" state="0"> - <bounds x="230" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix99" element="dmd_dot" state="0"> - <bounds x="235" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix100" element="dmd_dot" state="0"> - <bounds x="240" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix101" element="dmd_dot" state="0"> - <bounds x="245" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix102" element="dmd_dot" state="0"> - <bounds x="250" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix103" element="dmd_dot" state="0"> - <bounds x="255" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix104" element="dmd_dot" state="0"> - <bounds x="260" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix105" element="dmd_dot" state="0"> - <bounds x="265" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix106" element="dmd_dot" state="0"> - <bounds x="270" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix107" element="dmd_dot" state="0"> - <bounds x="275" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix108" element="dmd_dot" state="0"> - <bounds x="280" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix109" element="dmd_dot" state="0"> - <bounds x="285" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix110" element="dmd_dot" state="0"> - <bounds x="290" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix111" element="dmd_dot" state="0"> - <bounds x="295" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix112" element="dmd_dot" state="0"> - <bounds x="300" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix113" element="dmd_dot" state="0"> - <bounds x="305" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix114" element="dmd_dot" state="0"> - <bounds x="310" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix115" element="dmd_dot" state="0"> - <bounds x="315" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix116" element="dmd_dot" state="0"> - <bounds x="320" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix117" element="dmd_dot" state="0"> - <bounds x="325" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix118" element="dmd_dot" state="0"> - <bounds x="330" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix119" element="dmd_dot" state="0"> - <bounds x="335" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix120" element="dmd_dot" state="0"> - <bounds x="340" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix121" element="dmd_dot" state="0"> - <bounds x="345" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix122" element="dmd_dot" state="0"> - <bounds x="350" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix123" element="dmd_dot" state="0"> - <bounds x="355" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix124" element="dmd_dot" state="0"> - <bounds x="360" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix125" element="dmd_dot" state="0"> - <bounds x="365" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix126" element="dmd_dot" state="0"> - <bounds x="370" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix127" element="dmd_dot" state="0"> - <bounds x="375" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix128" element="dmd_dot" state="0"> - <bounds x="380" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix129" element="dmd_dot" state="0"> - <bounds x="385" y="456" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix130" element="dmd_dot" state="0"> - <bounds x="65" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix131" element="dmd_dot" state="0"> - <bounds x="70" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix132" element="dmd_dot" state="0"> - <bounds x="75" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix133" element="dmd_dot" state="0"> - <bounds x="80" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix134" element="dmd_dot" state="0"> - <bounds x="85" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix135" element="dmd_dot" state="0"> - <bounds x="90" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix136" element="dmd_dot" state="0"> - <bounds x="95" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix137" element="dmd_dot" state="0"> - <bounds x="100" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix138" element="dmd_dot" state="0"> - <bounds x="105" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix139" element="dmd_dot" state="0"> - <bounds x="110" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix140" element="dmd_dot" state="0"> - <bounds x="115" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix141" element="dmd_dot" state="0"> - <bounds x="120" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix142" element="dmd_dot" state="0"> - <bounds x="125" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix143" element="dmd_dot" state="0"> - <bounds x="130" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix144" element="dmd_dot" state="0"> - <bounds x="135" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix145" element="dmd_dot" state="0"> - <bounds x="140" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix146" element="dmd_dot" state="0"> - <bounds x="145" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix147" element="dmd_dot" state="0"> - <bounds x="150" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix148" element="dmd_dot" state="0"> - <bounds x="155" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix149" element="dmd_dot" state="0"> - <bounds x="160" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix150" element="dmd_dot" state="0"> - <bounds x="165" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix151" element="dmd_dot" state="0"> - <bounds x="170" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix152" element="dmd_dot" state="0"> - <bounds x="175" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix153" element="dmd_dot" state="0"> - <bounds x="180" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix154" element="dmd_dot" state="0"> - <bounds x="185" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix155" element="dmd_dot" state="0"> - <bounds x="190" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix156" element="dmd_dot" state="0"> - <bounds x="195" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix157" element="dmd_dot" state="0"> - <bounds x="200" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix158" element="dmd_dot" state="0"> - <bounds x="205" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix159" element="dmd_dot" state="0"> - <bounds x="210" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix160" element="dmd_dot" state="0"> - <bounds x="215" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix161" element="dmd_dot" state="0"> - <bounds x="220" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix162" element="dmd_dot" state="0"> - <bounds x="225" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix163" element="dmd_dot" state="0"> - <bounds x="230" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix164" element="dmd_dot" state="0"> - <bounds x="235" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix165" element="dmd_dot" state="0"> - <bounds x="240" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix166" element="dmd_dot" state="0"> - <bounds x="245" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix167" element="dmd_dot" state="0"> - <bounds x="250" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix168" element="dmd_dot" state="0"> - <bounds x="255" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix169" element="dmd_dot" state="0"> - <bounds x="260" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix170" element="dmd_dot" state="0"> - <bounds x="265" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix171" element="dmd_dot" state="0"> - <bounds x="270" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix172" element="dmd_dot" state="0"> - <bounds x="275" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix173" element="dmd_dot" state="0"> - <bounds x="280" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix174" element="dmd_dot" state="0"> - <bounds x="285" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix175" element="dmd_dot" state="0"> - <bounds x="290" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix176" element="dmd_dot" state="0"> - <bounds x="295" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix177" element="dmd_dot" state="0"> - <bounds x="300" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix178" element="dmd_dot" state="0"> - <bounds x="305" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix179" element="dmd_dot" state="0"> - <bounds x="310" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix180" element="dmd_dot" state="0"> - <bounds x="315" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix181" element="dmd_dot" state="0"> - <bounds x="320" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix182" element="dmd_dot" state="0"> - <bounds x="325" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix183" element="dmd_dot" state="0"> - <bounds x="330" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix184" element="dmd_dot" state="0"> - <bounds x="335" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix185" element="dmd_dot" state="0"> - <bounds x="340" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix186" element="dmd_dot" state="0"> - <bounds x="345" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix187" element="dmd_dot" state="0"> - <bounds x="350" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix188" element="dmd_dot" state="0"> - <bounds x="355" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix189" element="dmd_dot" state="0"> - <bounds x="360" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix190" element="dmd_dot" state="0"> - <bounds x="365" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix191" element="dmd_dot" state="0"> - <bounds x="370" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix192" element="dmd_dot" state="0"> - <bounds x="375" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix193" element="dmd_dot" state="0"> - <bounds x="380" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix194" element="dmd_dot" state="0"> - <bounds x="385" y="461" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix195" element="dmd_dot" state="0"> - <bounds x="65" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix196" element="dmd_dot" state="0"> - <bounds x="70" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix197" element="dmd_dot" state="0"> - <bounds x="75" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix198" element="dmd_dot" state="0"> - <bounds x="80" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix199" element="dmd_dot" state="0"> - <bounds x="85" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix200" element="dmd_dot" state="0"> - <bounds x="90" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix201" element="dmd_dot" state="0"> - <bounds x="95" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix202" element="dmd_dot" state="0"> - <bounds x="100" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix203" element="dmd_dot" state="0"> - <bounds x="105" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix204" element="dmd_dot" state="0"> - <bounds x="110" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix205" element="dmd_dot" state="0"> - <bounds x="115" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix206" element="dmd_dot" state="0"> - <bounds x="120" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix207" element="dmd_dot" state="0"> - <bounds x="125" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix208" element="dmd_dot" state="0"> - <bounds x="130" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix209" element="dmd_dot" state="0"> - <bounds x="135" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix210" element="dmd_dot" state="0"> - <bounds x="140" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix211" element="dmd_dot" state="0"> - <bounds x="145" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix212" element="dmd_dot" state="0"> - <bounds x="150" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix213" element="dmd_dot" state="0"> - <bounds x="155" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix214" element="dmd_dot" state="0"> - <bounds x="160" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix215" element="dmd_dot" state="0"> - <bounds x="165" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix216" element="dmd_dot" state="0"> - <bounds x="170" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix217" element="dmd_dot" state="0"> - <bounds x="175" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix218" element="dmd_dot" state="0"> - <bounds x="180" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix219" element="dmd_dot" state="0"> - <bounds x="185" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix220" element="dmd_dot" state="0"> - <bounds x="190" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix221" element="dmd_dot" state="0"> - <bounds x="195" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix222" element="dmd_dot" state="0"> - <bounds x="200" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix223" element="dmd_dot" state="0"> - <bounds x="205" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix224" element="dmd_dot" state="0"> - <bounds x="210" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix225" element="dmd_dot" state="0"> - <bounds x="215" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix226" element="dmd_dot" state="0"> - <bounds x="220" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix227" element="dmd_dot" state="0"> - <bounds x="225" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix228" element="dmd_dot" state="0"> - <bounds x="230" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix229" element="dmd_dot" state="0"> - <bounds x="235" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix230" element="dmd_dot" state="0"> - <bounds x="240" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix231" element="dmd_dot" state="0"> - <bounds x="245" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix232" element="dmd_dot" state="0"> - <bounds x="250" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix233" element="dmd_dot" state="0"> - <bounds x="255" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix234" element="dmd_dot" state="0"> - <bounds x="260" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix235" element="dmd_dot" state="0"> - <bounds x="265" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix236" element="dmd_dot" state="0"> - <bounds x="270" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix237" element="dmd_dot" state="0"> - <bounds x="275" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix238" element="dmd_dot" state="0"> - <bounds x="280" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix239" element="dmd_dot" state="0"> - <bounds x="285" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix240" element="dmd_dot" state="0"> - <bounds x="290" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix241" element="dmd_dot" state="0"> - <bounds x="295" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix242" element="dmd_dot" state="0"> - <bounds x="300" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix243" element="dmd_dot" state="0"> - <bounds x="305" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix244" element="dmd_dot" state="0"> - <bounds x="310" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix245" element="dmd_dot" state="0"> - <bounds x="315" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix246" element="dmd_dot" state="0"> - <bounds x="320" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix247" element="dmd_dot" state="0"> - <bounds x="325" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix248" element="dmd_dot" state="0"> - <bounds x="330" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix249" element="dmd_dot" state="0"> - <bounds x="335" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix250" element="dmd_dot" state="0"> - <bounds x="340" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix251" element="dmd_dot" state="0"> - <bounds x="345" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix252" element="dmd_dot" state="0"> - <bounds x="350" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix253" element="dmd_dot" state="0"> - <bounds x="355" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix254" element="dmd_dot" state="0"> - <bounds x="360" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix255" element="dmd_dot" state="0"> - <bounds x="365" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix256" element="dmd_dot" state="0"> - <bounds x="370" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix257" element="dmd_dot" state="0"> - <bounds x="375" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix258" element="dmd_dot" state="0"> - <bounds x="380" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix259" element="dmd_dot" state="0"> - <bounds x="385" y="466" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix260" element="dmd_dot" state="0"> - <bounds x="65" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix261" element="dmd_dot" state="0"> - <bounds x="70" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix262" element="dmd_dot" state="0"> - <bounds x="75" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix263" element="dmd_dot" state="0"> - <bounds x="80" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix264" element="dmd_dot" state="0"> - <bounds x="85" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix265" element="dmd_dot" state="0"> - <bounds x="90" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix266" element="dmd_dot" state="0"> - <bounds x="95" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix267" element="dmd_dot" state="0"> - <bounds x="100" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix268" element="dmd_dot" state="0"> - <bounds x="105" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix269" element="dmd_dot" state="0"> - <bounds x="110" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix270" element="dmd_dot" state="0"> - <bounds x="115" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix271" element="dmd_dot" state="0"> - <bounds x="120" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix272" element="dmd_dot" state="0"> - <bounds x="125" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix273" element="dmd_dot" state="0"> - <bounds x="130" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix274" element="dmd_dot" state="0"> - <bounds x="135" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix275" element="dmd_dot" state="0"> - <bounds x="140" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix276" element="dmd_dot" state="0"> - <bounds x="145" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix277" element="dmd_dot" state="0"> - <bounds x="150" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix278" element="dmd_dot" state="0"> - <bounds x="155" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix279" element="dmd_dot" state="0"> - <bounds x="160" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix280" element="dmd_dot" state="0"> - <bounds x="165" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix281" element="dmd_dot" state="0"> - <bounds x="170" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix282" element="dmd_dot" state="0"> - <bounds x="175" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix283" element="dmd_dot" state="0"> - <bounds x="180" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix284" element="dmd_dot" state="0"> - <bounds x="185" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix285" element="dmd_dot" state="0"> - <bounds x="190" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix286" element="dmd_dot" state="0"> - <bounds x="195" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix287" element="dmd_dot" state="0"> - <bounds x="200" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix288" element="dmd_dot" state="0"> - <bounds x="205" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix289" element="dmd_dot" state="0"> - <bounds x="210" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix290" element="dmd_dot" state="0"> - <bounds x="215" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix291" element="dmd_dot" state="0"> - <bounds x="220" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix292" element="dmd_dot" state="0"> - <bounds x="225" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix293" element="dmd_dot" state="0"> - <bounds x="230" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix294" element="dmd_dot" state="0"> - <bounds x="235" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix295" element="dmd_dot" state="0"> - <bounds x="240" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix296" element="dmd_dot" state="0"> - <bounds x="245" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix297" element="dmd_dot" state="0"> - <bounds x="250" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix298" element="dmd_dot" state="0"> - <bounds x="255" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix299" element="dmd_dot" state="0"> - <bounds x="260" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix300" element="dmd_dot" state="0"> - <bounds x="265" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix301" element="dmd_dot" state="0"> - <bounds x="270" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix302" element="dmd_dot" state="0"> - <bounds x="275" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix303" element="dmd_dot" state="0"> - <bounds x="280" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix304" element="dmd_dot" state="0"> - <bounds x="285" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix305" element="dmd_dot" state="0"> - <bounds x="290" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix306" element="dmd_dot" state="0"> - <bounds x="295" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix307" element="dmd_dot" state="0"> - <bounds x="300" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix308" element="dmd_dot" state="0"> - <bounds x="305" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix309" element="dmd_dot" state="0"> - <bounds x="310" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix310" element="dmd_dot" state="0"> - <bounds x="315" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix311" element="dmd_dot" state="0"> - <bounds x="320" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix312" element="dmd_dot" state="0"> - <bounds x="325" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix313" element="dmd_dot" state="0"> - <bounds x="330" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix314" element="dmd_dot" state="0"> - <bounds x="335" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix315" element="dmd_dot" state="0"> - <bounds x="340" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix316" element="dmd_dot" state="0"> - <bounds x="345" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix317" element="dmd_dot" state="0"> - <bounds x="350" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix318" element="dmd_dot" state="0"> - <bounds x="355" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix319" element="dmd_dot" state="0"> - <bounds x="360" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix320" element="dmd_dot" state="0"> - <bounds x="365" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix321" element="dmd_dot" state="0"> - <bounds x="370" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix322" element="dmd_dot" state="0"> - <bounds x="375" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix323" element="dmd_dot" state="0"> - <bounds x="380" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix324" element="dmd_dot" state="0"> - <bounds x="385" y="471" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix325" element="dmd_dot" state="0"> - <bounds x="65" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix326" element="dmd_dot" state="0"> - <bounds x="70" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix327" element="dmd_dot" state="0"> - <bounds x="75" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix328" element="dmd_dot" state="0"> - <bounds x="80" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix329" element="dmd_dot" state="0"> - <bounds x="85" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix330" element="dmd_dot" state="0"> - <bounds x="90" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix331" element="dmd_dot" state="0"> - <bounds x="95" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix332" element="dmd_dot" state="0"> - <bounds x="100" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix333" element="dmd_dot" state="0"> - <bounds x="105" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix334" element="dmd_dot" state="0"> - <bounds x="110" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix335" element="dmd_dot" state="0"> - <bounds x="115" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix336" element="dmd_dot" state="0"> - <bounds x="120" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix337" element="dmd_dot" state="0"> - <bounds x="125" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix338" element="dmd_dot" state="0"> - <bounds x="130" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix339" element="dmd_dot" state="0"> - <bounds x="135" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix340" element="dmd_dot" state="0"> - <bounds x="140" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix341" element="dmd_dot" state="0"> - <bounds x="145" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix342" element="dmd_dot" state="0"> - <bounds x="150" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix343" element="dmd_dot" state="0"> - <bounds x="155" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix344" element="dmd_dot" state="0"> - <bounds x="160" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix345" element="dmd_dot" state="0"> - <bounds x="165" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix346" element="dmd_dot" state="0"> - <bounds x="170" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix347" element="dmd_dot" state="0"> - <bounds x="175" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix348" element="dmd_dot" state="0"> - <bounds x="180" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix349" element="dmd_dot" state="0"> - <bounds x="185" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix350" element="dmd_dot" state="0"> - <bounds x="190" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix351" element="dmd_dot" state="0"> - <bounds x="195" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix352" element="dmd_dot" state="0"> - <bounds x="200" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix353" element="dmd_dot" state="0"> - <bounds x="205" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix354" element="dmd_dot" state="0"> - <bounds x="210" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix355" element="dmd_dot" state="0"> - <bounds x="215" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix356" element="dmd_dot" state="0"> - <bounds x="220" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix357" element="dmd_dot" state="0"> - <bounds x="225" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix358" element="dmd_dot" state="0"> - <bounds x="230" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix359" element="dmd_dot" state="0"> - <bounds x="235" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix360" element="dmd_dot" state="0"> - <bounds x="240" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix361" element="dmd_dot" state="0"> - <bounds x="245" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix362" element="dmd_dot" state="0"> - <bounds x="250" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix363" element="dmd_dot" state="0"> - <bounds x="255" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix364" element="dmd_dot" state="0"> - <bounds x="260" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix365" element="dmd_dot" state="0"> - <bounds x="265" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix366" element="dmd_dot" state="0"> - <bounds x="270" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix367" element="dmd_dot" state="0"> - <bounds x="275" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix368" element="dmd_dot" state="0"> - <bounds x="280" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix369" element="dmd_dot" state="0"> - <bounds x="285" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix370" element="dmd_dot" state="0"> - <bounds x="290" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix371" element="dmd_dot" state="0"> - <bounds x="295" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix372" element="dmd_dot" state="0"> - <bounds x="300" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix373" element="dmd_dot" state="0"> - <bounds x="305" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix374" element="dmd_dot" state="0"> - <bounds x="310" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix375" element="dmd_dot" state="0"> - <bounds x="315" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix376" element="dmd_dot" state="0"> - <bounds x="320" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix377" element="dmd_dot" state="0"> - <bounds x="325" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix378" element="dmd_dot" state="0"> - <bounds x="330" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix379" element="dmd_dot" state="0"> - <bounds x="335" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix380" element="dmd_dot" state="0"> - <bounds x="340" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix381" element="dmd_dot" state="0"> - <bounds x="345" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix382" element="dmd_dot" state="0"> - <bounds x="350" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix383" element="dmd_dot" state="0"> - <bounds x="355" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix384" element="dmd_dot" state="0"> - <bounds x="360" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix385" element="dmd_dot" state="0"> - <bounds x="365" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix386" element="dmd_dot" state="0"> - <bounds x="370" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix387" element="dmd_dot" state="0"> - <bounds x="375" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix388" element="dmd_dot" state="0"> - <bounds x="380" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix389" element="dmd_dot" state="0"> - <bounds x="385" y="476" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix390" element="dmd_dot" state="0"> - <bounds x="65" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix391" element="dmd_dot" state="0"> - <bounds x="70" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix392" element="dmd_dot" state="0"> - <bounds x="75" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix393" element="dmd_dot" state="0"> - <bounds x="80" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix394" element="dmd_dot" state="0"> - <bounds x="85" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix395" element="dmd_dot" state="0"> - <bounds x="90" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix396" element="dmd_dot" state="0"> - <bounds x="95" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix397" element="dmd_dot" state="0"> - <bounds x="100" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix398" element="dmd_dot" state="0"> - <bounds x="105" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix399" element="dmd_dot" state="0"> - <bounds x="110" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix400" element="dmd_dot" state="0"> - <bounds x="115" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix401" element="dmd_dot" state="0"> - <bounds x="120" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix402" element="dmd_dot" state="0"> - <bounds x="125" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix403" element="dmd_dot" state="0"> - <bounds x="130" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix404" element="dmd_dot" state="0"> - <bounds x="135" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix405" element="dmd_dot" state="0"> - <bounds x="140" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix406" element="dmd_dot" state="0"> - <bounds x="145" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix407" element="dmd_dot" state="0"> - <bounds x="150" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix408" element="dmd_dot" state="0"> - <bounds x="155" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix409" element="dmd_dot" state="0"> - <bounds x="160" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix410" element="dmd_dot" state="0"> - <bounds x="165" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix411" element="dmd_dot" state="0"> - <bounds x="170" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix412" element="dmd_dot" state="0"> - <bounds x="175" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix413" element="dmd_dot" state="0"> - <bounds x="180" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix414" element="dmd_dot" state="0"> - <bounds x="185" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix415" element="dmd_dot" state="0"> - <bounds x="190" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix416" element="dmd_dot" state="0"> - <bounds x="195" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix417" element="dmd_dot" state="0"> - <bounds x="200" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix418" element="dmd_dot" state="0"> - <bounds x="205" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix419" element="dmd_dot" state="0"> - <bounds x="210" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix420" element="dmd_dot" state="0"> - <bounds x="215" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix421" element="dmd_dot" state="0"> - <bounds x="220" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix422" element="dmd_dot" state="0"> - <bounds x="225" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix423" element="dmd_dot" state="0"> - <bounds x="230" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix424" element="dmd_dot" state="0"> - <bounds x="235" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix425" element="dmd_dot" state="0"> - <bounds x="240" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix426" element="dmd_dot" state="0"> - <bounds x="245" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix427" element="dmd_dot" state="0"> - <bounds x="250" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix428" element="dmd_dot" state="0"> - <bounds x="255" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix429" element="dmd_dot" state="0"> - <bounds x="260" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix430" element="dmd_dot" state="0"> - <bounds x="265" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix431" element="dmd_dot" state="0"> - <bounds x="270" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix432" element="dmd_dot" state="0"> - <bounds x="275" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix433" element="dmd_dot" state="0"> - <bounds x="280" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix434" element="dmd_dot" state="0"> - <bounds x="285" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix435" element="dmd_dot" state="0"> - <bounds x="290" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix436" element="dmd_dot" state="0"> - <bounds x="295" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix437" element="dmd_dot" state="0"> - <bounds x="300" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix438" element="dmd_dot" state="0"> - <bounds x="305" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix439" element="dmd_dot" state="0"> - <bounds x="310" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix440" element="dmd_dot" state="0"> - <bounds x="315" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix441" element="dmd_dot" state="0"> - <bounds x="320" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix442" element="dmd_dot" state="0"> - <bounds x="325" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix443" element="dmd_dot" state="0"> - <bounds x="330" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix444" element="dmd_dot" state="0"> - <bounds x="335" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix445" element="dmd_dot" state="0"> - <bounds x="340" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix446" element="dmd_dot" state="0"> - <bounds x="345" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix447" element="dmd_dot" state="0"> - <bounds x="350" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix448" element="dmd_dot" state="0"> - <bounds x="355" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix449" element="dmd_dot" state="0"> - <bounds x="360" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix450" element="dmd_dot" state="0"> - <bounds x="365" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix451" element="dmd_dot" state="0"> - <bounds x="370" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix452" element="dmd_dot" state="0"> - <bounds x="375" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix453" element="dmd_dot" state="0"> - <bounds x="380" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix454" element="dmd_dot" state="0"> - <bounds x="385" y="481" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix455" element="dmd_dot" state="0"> - <bounds x="65" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix456" element="dmd_dot" state="0"> - <bounds x="70" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix457" element="dmd_dot" state="0"> - <bounds x="75" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix458" element="dmd_dot" state="0"> - <bounds x="80" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix459" element="dmd_dot" state="0"> - <bounds x="85" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix460" element="dmd_dot" state="0"> - <bounds x="90" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix461" element="dmd_dot" state="0"> - <bounds x="95" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix462" element="dmd_dot" state="0"> - <bounds x="100" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix463" element="dmd_dot" state="0"> - <bounds x="105" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix464" element="dmd_dot" state="0"> - <bounds x="110" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix465" element="dmd_dot" state="0"> - <bounds x="115" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix466" element="dmd_dot" state="0"> - <bounds x="120" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix467" element="dmd_dot" state="0"> - <bounds x="125" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix468" element="dmd_dot" state="0"> - <bounds x="130" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix469" element="dmd_dot" state="0"> - <bounds x="135" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix470" element="dmd_dot" state="0"> - <bounds x="140" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix471" element="dmd_dot" state="0"> - <bounds x="145" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix472" element="dmd_dot" state="0"> - <bounds x="150" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix473" element="dmd_dot" state="0"> - <bounds x="155" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix474" element="dmd_dot" state="0"> - <bounds x="160" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix475" element="dmd_dot" state="0"> - <bounds x="165" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix476" element="dmd_dot" state="0"> - <bounds x="170" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix477" element="dmd_dot" state="0"> - <bounds x="175" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix478" element="dmd_dot" state="0"> - <bounds x="180" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix479" element="dmd_dot" state="0"> - <bounds x="185" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix480" element="dmd_dot" state="0"> - <bounds x="190" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix481" element="dmd_dot" state="0"> - <bounds x="195" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix482" element="dmd_dot" state="0"> - <bounds x="200" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix483" element="dmd_dot" state="0"> - <bounds x="205" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix484" element="dmd_dot" state="0"> - <bounds x="210" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix485" element="dmd_dot" state="0"> - <bounds x="215" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix486" element="dmd_dot" state="0"> - <bounds x="220" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix487" element="dmd_dot" state="0"> - <bounds x="225" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix488" element="dmd_dot" state="0"> - <bounds x="230" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix489" element="dmd_dot" state="0"> - <bounds x="235" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix490" element="dmd_dot" state="0"> - <bounds x="240" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix491" element="dmd_dot" state="0"> - <bounds x="245" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix492" element="dmd_dot" state="0"> - <bounds x="250" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix493" element="dmd_dot" state="0"> - <bounds x="255" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix494" element="dmd_dot" state="0"> - <bounds x="260" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix495" element="dmd_dot" state="0"> - <bounds x="265" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix496" element="dmd_dot" state="0"> - <bounds x="270" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix497" element="dmd_dot" state="0"> - <bounds x="275" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix498" element="dmd_dot" state="0"> - <bounds x="280" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix499" element="dmd_dot" state="0"> - <bounds x="285" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix500" element="dmd_dot" state="0"> - <bounds x="290" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix501" element="dmd_dot" state="0"> - <bounds x="295" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix502" element="dmd_dot" state="0"> - <bounds x="300" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix503" element="dmd_dot" state="0"> - <bounds x="305" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix504" element="dmd_dot" state="0"> - <bounds x="310" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix505" element="dmd_dot" state="0"> - <bounds x="315" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix506" element="dmd_dot" state="0"> - <bounds x="320" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix507" element="dmd_dot" state="0"> - <bounds x="325" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix508" element="dmd_dot" state="0"> - <bounds x="330" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix509" element="dmd_dot" state="0"> - <bounds x="335" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix510" element="dmd_dot" state="0"> - <bounds x="340" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix511" element="dmd_dot" state="0"> - <bounds x="345" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix512" element="dmd_dot" state="0"> - <bounds x="350" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix513" element="dmd_dot" state="0"> - <bounds x="355" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix514" element="dmd_dot" state="0"> - <bounds x="360" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix515" element="dmd_dot" state="0"> - <bounds x="365" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix516" element="dmd_dot" state="0"> - <bounds x="370" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix517" element="dmd_dot" state="0"> - <bounds x="375" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix518" element="dmd_dot" state="0"> - <bounds x="380" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix519" element="dmd_dot" state="0"> - <bounds x="385" y="486" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix520" element="dmd_dot" state="0"> - <bounds x="65" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix521" element="dmd_dot" state="0"> - <bounds x="70" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix522" element="dmd_dot" state="0"> - <bounds x="75" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix523" element="dmd_dot" state="0"> - <bounds x="80" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix524" element="dmd_dot" state="0"> - <bounds x="85" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix525" element="dmd_dot" state="0"> - <bounds x="90" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix526" element="dmd_dot" state="0"> - <bounds x="95" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix527" element="dmd_dot" state="0"> - <bounds x="100" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix528" element="dmd_dot" state="0"> - <bounds x="105" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix529" element="dmd_dot" state="0"> - <bounds x="110" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix530" element="dmd_dot" state="0"> - <bounds x="115" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix531" element="dmd_dot" state="0"> - <bounds x="120" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix532" element="dmd_dot" state="0"> - <bounds x="125" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix533" element="dmd_dot" state="0"> - <bounds x="130" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix534" element="dmd_dot" state="0"> - <bounds x="135" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix535" element="dmd_dot" state="0"> - <bounds x="140" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix536" element="dmd_dot" state="0"> - <bounds x="145" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix537" element="dmd_dot" state="0"> - <bounds x="150" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix538" element="dmd_dot" state="0"> - <bounds x="155" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix539" element="dmd_dot" state="0"> - <bounds x="160" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix540" element="dmd_dot" state="0"> - <bounds x="165" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix541" element="dmd_dot" state="0"> - <bounds x="170" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix542" element="dmd_dot" state="0"> - <bounds x="175" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix543" element="dmd_dot" state="0"> - <bounds x="180" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix544" element="dmd_dot" state="0"> - <bounds x="185" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix545" element="dmd_dot" state="0"> - <bounds x="190" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix546" element="dmd_dot" state="0"> - <bounds x="195" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix547" element="dmd_dot" state="0"> - <bounds x="200" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix548" element="dmd_dot" state="0"> - <bounds x="205" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix549" element="dmd_dot" state="0"> - <bounds x="210" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix550" element="dmd_dot" state="0"> - <bounds x="215" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix551" element="dmd_dot" state="0"> - <bounds x="220" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix552" element="dmd_dot" state="0"> - <bounds x="225" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix553" element="dmd_dot" state="0"> - <bounds x="230" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix554" element="dmd_dot" state="0"> - <bounds x="235" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix555" element="dmd_dot" state="0"> - <bounds x="240" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix556" element="dmd_dot" state="0"> - <bounds x="245" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix557" element="dmd_dot" state="0"> - <bounds x="250" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix558" element="dmd_dot" state="0"> - <bounds x="255" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix559" element="dmd_dot" state="0"> - <bounds x="260" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix560" element="dmd_dot" state="0"> - <bounds x="265" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix561" element="dmd_dot" state="0"> - <bounds x="270" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix562" element="dmd_dot" state="0"> - <bounds x="275" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix563" element="dmd_dot" state="0"> - <bounds x="280" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix564" element="dmd_dot" state="0"> - <bounds x="285" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix565" element="dmd_dot" state="0"> - <bounds x="290" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix566" element="dmd_dot" state="0"> - <bounds x="295" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix567" element="dmd_dot" state="0"> - <bounds x="300" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix568" element="dmd_dot" state="0"> - <bounds x="305" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix569" element="dmd_dot" state="0"> - <bounds x="310" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix570" element="dmd_dot" state="0"> - <bounds x="315" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix571" element="dmd_dot" state="0"> - <bounds x="320" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix572" element="dmd_dot" state="0"> - <bounds x="325" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix573" element="dmd_dot" state="0"> - <bounds x="330" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix574" element="dmd_dot" state="0"> - <bounds x="335" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix575" element="dmd_dot" state="0"> - <bounds x="340" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix576" element="dmd_dot" state="0"> - <bounds x="345" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix577" element="dmd_dot" state="0"> - <bounds x="350" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix578" element="dmd_dot" state="0"> - <bounds x="355" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix579" element="dmd_dot" state="0"> - <bounds x="360" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix580" element="dmd_dot" state="0"> - <bounds x="365" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix581" element="dmd_dot" state="0"> - <bounds x="370" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix582" element="dmd_dot" state="0"> - <bounds x="375" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix583" element="dmd_dot" state="0"> - <bounds x="380" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix584" element="dmd_dot" state="0"> - <bounds x="385" y="491" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix585" element="dmd_dot" state="0"> - <bounds x="65" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix586" element="dmd_dot" state="0"> - <bounds x="70" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix587" element="dmd_dot" state="0"> - <bounds x="75" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix588" element="dmd_dot" state="0"> - <bounds x="80" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix589" element="dmd_dot" state="0"> - <bounds x="85" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix590" element="dmd_dot" state="0"> - <bounds x="90" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix591" element="dmd_dot" state="0"> - <bounds x="95" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix592" element="dmd_dot" state="0"> - <bounds x="100" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix593" element="dmd_dot" state="0"> - <bounds x="105" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix594" element="dmd_dot" state="0"> - <bounds x="110" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix595" element="dmd_dot" state="0"> - <bounds x="115" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix596" element="dmd_dot" state="0"> - <bounds x="120" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix597" element="dmd_dot" state="0"> - <bounds x="125" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix598" element="dmd_dot" state="0"> - <bounds x="130" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix599" element="dmd_dot" state="0"> - <bounds x="135" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix600" element="dmd_dot" state="0"> - <bounds x="140" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix601" element="dmd_dot" state="0"> - <bounds x="145" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix602" element="dmd_dot" state="0"> - <bounds x="150" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix603" element="dmd_dot" state="0"> - <bounds x="155" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix604" element="dmd_dot" state="0"> - <bounds x="160" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix605" element="dmd_dot" state="0"> - <bounds x="165" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix606" element="dmd_dot" state="0"> - <bounds x="170" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix607" element="dmd_dot" state="0"> - <bounds x="175" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix608" element="dmd_dot" state="0"> - <bounds x="180" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix609" element="dmd_dot" state="0"> - <bounds x="185" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix610" element="dmd_dot" state="0"> - <bounds x="190" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix611" element="dmd_dot" state="0"> - <bounds x="195" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix612" element="dmd_dot" state="0"> - <bounds x="200" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix613" element="dmd_dot" state="0"> - <bounds x="205" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix614" element="dmd_dot" state="0"> - <bounds x="210" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix615" element="dmd_dot" state="0"> - <bounds x="215" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix616" element="dmd_dot" state="0"> - <bounds x="220" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix617" element="dmd_dot" state="0"> - <bounds x="225" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix618" element="dmd_dot" state="0"> - <bounds x="230" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix619" element="dmd_dot" state="0"> - <bounds x="235" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix620" element="dmd_dot" state="0"> - <bounds x="240" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix621" element="dmd_dot" state="0"> - <bounds x="245" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix622" element="dmd_dot" state="0"> - <bounds x="250" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix623" element="dmd_dot" state="0"> - <bounds x="255" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix624" element="dmd_dot" state="0"> - <bounds x="260" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix625" element="dmd_dot" state="0"> - <bounds x="265" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix626" element="dmd_dot" state="0"> - <bounds x="270" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix627" element="dmd_dot" state="0"> - <bounds x="275" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix628" element="dmd_dot" state="0"> - <bounds x="280" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix629" element="dmd_dot" state="0"> - <bounds x="285" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix630" element="dmd_dot" state="0"> - <bounds x="290" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix631" element="dmd_dot" state="0"> - <bounds x="295" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix632" element="dmd_dot" state="0"> - <bounds x="300" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix633" element="dmd_dot" state="0"> - <bounds x="305" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix634" element="dmd_dot" state="0"> - <bounds x="310" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix635" element="dmd_dot" state="0"> - <bounds x="315" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix636" element="dmd_dot" state="0"> - <bounds x="320" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix637" element="dmd_dot" state="0"> - <bounds x="325" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix638" element="dmd_dot" state="0"> - <bounds x="330" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix639" element="dmd_dot" state="0"> - <bounds x="335" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix640" element="dmd_dot" state="0"> - <bounds x="340" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix641" element="dmd_dot" state="0"> - <bounds x="345" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix642" element="dmd_dot" state="0"> - <bounds x="350" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix643" element="dmd_dot" state="0"> - <bounds x="355" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix644" element="dmd_dot" state="0"> - <bounds x="360" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix645" element="dmd_dot" state="0"> - <bounds x="365" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix646" element="dmd_dot" state="0"> - <bounds x="370" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix647" element="dmd_dot" state="0"> - <bounds x="375" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix648" element="dmd_dot" state="0"> - <bounds x="380" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix649" element="dmd_dot" state="0"> - <bounds x="385" y="496" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix650" element="dmd_dot" state="0"> - <bounds x="65" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix651" element="dmd_dot" state="0"> - <bounds x="70" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix652" element="dmd_dot" state="0"> - <bounds x="75" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix653" element="dmd_dot" state="0"> - <bounds x="80" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix654" element="dmd_dot" state="0"> - <bounds x="85" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix655" element="dmd_dot" state="0"> - <bounds x="90" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix656" element="dmd_dot" state="0"> - <bounds x="95" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix657" element="dmd_dot" state="0"> - <bounds x="100" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix658" element="dmd_dot" state="0"> - <bounds x="105" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix659" element="dmd_dot" state="0"> - <bounds x="110" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix660" element="dmd_dot" state="0"> - <bounds x="115" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix661" element="dmd_dot" state="0"> - <bounds x="120" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix662" element="dmd_dot" state="0"> - <bounds x="125" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix663" element="dmd_dot" state="0"> - <bounds x="130" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix664" element="dmd_dot" state="0"> - <bounds x="135" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix665" element="dmd_dot" state="0"> - <bounds x="140" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix666" element="dmd_dot" state="0"> - <bounds x="145" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix667" element="dmd_dot" state="0"> - <bounds x="150" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix668" element="dmd_dot" state="0"> - <bounds x="155" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix669" element="dmd_dot" state="0"> - <bounds x="160" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix670" element="dmd_dot" state="0"> - <bounds x="165" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix671" element="dmd_dot" state="0"> - <bounds x="170" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix672" element="dmd_dot" state="0"> - <bounds x="175" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix673" element="dmd_dot" state="0"> - <bounds x="180" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix674" element="dmd_dot" state="0"> - <bounds x="185" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix675" element="dmd_dot" state="0"> - <bounds x="190" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix676" element="dmd_dot" state="0"> - <bounds x="195" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix677" element="dmd_dot" state="0"> - <bounds x="200" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix678" element="dmd_dot" state="0"> - <bounds x="205" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix679" element="dmd_dot" state="0"> - <bounds x="210" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix680" element="dmd_dot" state="0"> - <bounds x="215" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix681" element="dmd_dot" state="0"> - <bounds x="220" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix682" element="dmd_dot" state="0"> - <bounds x="225" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix683" element="dmd_dot" state="0"> - <bounds x="230" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix684" element="dmd_dot" state="0"> - <bounds x="235" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix685" element="dmd_dot" state="0"> - <bounds x="240" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix686" element="dmd_dot" state="0"> - <bounds x="245" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix687" element="dmd_dot" state="0"> - <bounds x="250" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix688" element="dmd_dot" state="0"> - <bounds x="255" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix689" element="dmd_dot" state="0"> - <bounds x="260" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix690" element="dmd_dot" state="0"> - <bounds x="265" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix691" element="dmd_dot" state="0"> - <bounds x="270" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix692" element="dmd_dot" state="0"> - <bounds x="275" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix693" element="dmd_dot" state="0"> - <bounds x="280" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix694" element="dmd_dot" state="0"> - <bounds x="285" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix695" element="dmd_dot" state="0"> - <bounds x="290" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix696" element="dmd_dot" state="0"> - <bounds x="295" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix697" element="dmd_dot" state="0"> - <bounds x="300" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix698" element="dmd_dot" state="0"> - <bounds x="305" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix699" element="dmd_dot" state="0"> - <bounds x="310" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix700" element="dmd_dot" state="0"> - <bounds x="315" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix701" element="dmd_dot" state="0"> - <bounds x="320" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix702" element="dmd_dot" state="0"> - <bounds x="325" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix703" element="dmd_dot" state="0"> - <bounds x="330" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix704" element="dmd_dot" state="0"> - <bounds x="335" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix705" element="dmd_dot" state="0"> - <bounds x="340" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix706" element="dmd_dot" state="0"> - <bounds x="345" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix707" element="dmd_dot" state="0"> - <bounds x="350" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix708" element="dmd_dot" state="0"> - <bounds x="355" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix709" element="dmd_dot" state="0"> - <bounds x="360" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix710" element="dmd_dot" state="0"> - <bounds x="365" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix711" element="dmd_dot" state="0"> - <bounds x="370" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix712" element="dmd_dot" state="0"> - <bounds x="375" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix713" element="dmd_dot" state="0"> - <bounds x="380" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix714" element="dmd_dot" state="0"> - <bounds x="385" y="501" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix715" element="dmd_dot" state="0"> - <bounds x="65" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix716" element="dmd_dot" state="0"> - <bounds x="70" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix717" element="dmd_dot" state="0"> - <bounds x="75" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix718" element="dmd_dot" state="0"> - <bounds x="80" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix719" element="dmd_dot" state="0"> - <bounds x="85" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix720" element="dmd_dot" state="0"> - <bounds x="90" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix721" element="dmd_dot" state="0"> - <bounds x="95" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix722" element="dmd_dot" state="0"> - <bounds x="100" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix723" element="dmd_dot" state="0"> - <bounds x="105" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix724" element="dmd_dot" state="0"> - <bounds x="110" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix725" element="dmd_dot" state="0"> - <bounds x="115" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix726" element="dmd_dot" state="0"> - <bounds x="120" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix727" element="dmd_dot" state="0"> - <bounds x="125" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix728" element="dmd_dot" state="0"> - <bounds x="130" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix729" element="dmd_dot" state="0"> - <bounds x="135" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix730" element="dmd_dot" state="0"> - <bounds x="140" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix731" element="dmd_dot" state="0"> - <bounds x="145" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix732" element="dmd_dot" state="0"> - <bounds x="150" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix733" element="dmd_dot" state="0"> - <bounds x="155" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix734" element="dmd_dot" state="0"> - <bounds x="160" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix735" element="dmd_dot" state="0"> - <bounds x="165" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix736" element="dmd_dot" state="0"> - <bounds x="170" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix737" element="dmd_dot" state="0"> - <bounds x="175" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix738" element="dmd_dot" state="0"> - <bounds x="180" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix739" element="dmd_dot" state="0"> - <bounds x="185" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix740" element="dmd_dot" state="0"> - <bounds x="190" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix741" element="dmd_dot" state="0"> - <bounds x="195" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix742" element="dmd_dot" state="0"> - <bounds x="200" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix743" element="dmd_dot" state="0"> - <bounds x="205" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix744" element="dmd_dot" state="0"> - <bounds x="210" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix745" element="dmd_dot" state="0"> - <bounds x="215" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix746" element="dmd_dot" state="0"> - <bounds x="220" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix747" element="dmd_dot" state="0"> - <bounds x="225" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix748" element="dmd_dot" state="0"> - <bounds x="230" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix749" element="dmd_dot" state="0"> - <bounds x="235" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix750" element="dmd_dot" state="0"> - <bounds x="240" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix751" element="dmd_dot" state="0"> - <bounds x="245" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix752" element="dmd_dot" state="0"> - <bounds x="250" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix753" element="dmd_dot" state="0"> - <bounds x="255" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix754" element="dmd_dot" state="0"> - <bounds x="260" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix755" element="dmd_dot" state="0"> - <bounds x="265" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix756" element="dmd_dot" state="0"> - <bounds x="270" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix757" element="dmd_dot" state="0"> - <bounds x="275" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix758" element="dmd_dot" state="0"> - <bounds x="280" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix759" element="dmd_dot" state="0"> - <bounds x="285" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix760" element="dmd_dot" state="0"> - <bounds x="290" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix761" element="dmd_dot" state="0"> - <bounds x="295" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix762" element="dmd_dot" state="0"> - <bounds x="300" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix763" element="dmd_dot" state="0"> - <bounds x="305" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix764" element="dmd_dot" state="0"> - <bounds x="310" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix765" element="dmd_dot" state="0"> - <bounds x="315" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix766" element="dmd_dot" state="0"> - <bounds x="320" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix767" element="dmd_dot" state="0"> - <bounds x="325" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix768" element="dmd_dot" state="0"> - <bounds x="330" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix769" element="dmd_dot" state="0"> - <bounds x="335" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix770" element="dmd_dot" state="0"> - <bounds x="340" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix771" element="dmd_dot" state="0"> - <bounds x="345" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix772" element="dmd_dot" state="0"> - <bounds x="350" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix773" element="dmd_dot" state="0"> - <bounds x="355" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix774" element="dmd_dot" state="0"> - <bounds x="360" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix775" element="dmd_dot" state="0"> - <bounds x="365" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix776" element="dmd_dot" state="0"> - <bounds x="370" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix777" element="dmd_dot" state="0"> - <bounds x="375" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix778" element="dmd_dot" state="0"> - <bounds x="380" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix779" element="dmd_dot" state="0"> - <bounds x="385" y="506" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix780" element="dmd_dot" state="0"> - <bounds x="65" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix781" element="dmd_dot" state="0"> - <bounds x="70" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix782" element="dmd_dot" state="0"> - <bounds x="75" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix783" element="dmd_dot" state="0"> - <bounds x="80" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix784" element="dmd_dot" state="0"> - <bounds x="85" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix785" element="dmd_dot" state="0"> - <bounds x="90" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix786" element="dmd_dot" state="0"> - <bounds x="95" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix787" element="dmd_dot" state="0"> - <bounds x="100" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix788" element="dmd_dot" state="0"> - <bounds x="105" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix789" element="dmd_dot" state="0"> - <bounds x="110" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix790" element="dmd_dot" state="0"> - <bounds x="115" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix791" element="dmd_dot" state="0"> - <bounds x="120" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix792" element="dmd_dot" state="0"> - <bounds x="125" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix793" element="dmd_dot" state="0"> - <bounds x="130" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix794" element="dmd_dot" state="0"> - <bounds x="135" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix795" element="dmd_dot" state="0"> - <bounds x="140" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix796" element="dmd_dot" state="0"> - <bounds x="145" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix797" element="dmd_dot" state="0"> - <bounds x="150" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix798" element="dmd_dot" state="0"> - <bounds x="155" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix799" element="dmd_dot" state="0"> - <bounds x="160" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix800" element="dmd_dot" state="0"> - <bounds x="165" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix801" element="dmd_dot" state="0"> - <bounds x="170" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix802" element="dmd_dot" state="0"> - <bounds x="175" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix803" element="dmd_dot" state="0"> - <bounds x="180" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix804" element="dmd_dot" state="0"> - <bounds x="185" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix805" element="dmd_dot" state="0"> - <bounds x="190" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix806" element="dmd_dot" state="0"> - <bounds x="195" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix807" element="dmd_dot" state="0"> - <bounds x="200" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix808" element="dmd_dot" state="0"> - <bounds x="205" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix809" element="dmd_dot" state="0"> - <bounds x="210" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix810" element="dmd_dot" state="0"> - <bounds x="215" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix811" element="dmd_dot" state="0"> - <bounds x="220" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix812" element="dmd_dot" state="0"> - <bounds x="225" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix813" element="dmd_dot" state="0"> - <bounds x="230" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix814" element="dmd_dot" state="0"> - <bounds x="235" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix815" element="dmd_dot" state="0"> - <bounds x="240" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix816" element="dmd_dot" state="0"> - <bounds x="245" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix817" element="dmd_dot" state="0"> - <bounds x="250" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix818" element="dmd_dot" state="0"> - <bounds x="255" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix819" element="dmd_dot" state="0"> - <bounds x="260" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix820" element="dmd_dot" state="0"> - <bounds x="265" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix821" element="dmd_dot" state="0"> - <bounds x="270" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix822" element="dmd_dot" state="0"> - <bounds x="275" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix823" element="dmd_dot" state="0"> - <bounds x="280" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix824" element="dmd_dot" state="0"> - <bounds x="285" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix825" element="dmd_dot" state="0"> - <bounds x="290" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix826" element="dmd_dot" state="0"> - <bounds x="295" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix827" element="dmd_dot" state="0"> - <bounds x="300" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix828" element="dmd_dot" state="0"> - <bounds x="305" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix829" element="dmd_dot" state="0"> - <bounds x="310" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix830" element="dmd_dot" state="0"> - <bounds x="315" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix831" element="dmd_dot" state="0"> - <bounds x="320" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix832" element="dmd_dot" state="0"> - <bounds x="325" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix833" element="dmd_dot" state="0"> - <bounds x="330" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix834" element="dmd_dot" state="0"> - <bounds x="335" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix835" element="dmd_dot" state="0"> - <bounds x="340" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix836" element="dmd_dot" state="0"> - <bounds x="345" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix837" element="dmd_dot" state="0"> - <bounds x="350" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix838" element="dmd_dot" state="0"> - <bounds x="355" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix839" element="dmd_dot" state="0"> - <bounds x="360" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix840" element="dmd_dot" state="0"> - <bounds x="365" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix841" element="dmd_dot" state="0"> - <bounds x="370" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix842" element="dmd_dot" state="0"> - <bounds x="375" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix843" element="dmd_dot" state="0"> - <bounds x="380" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix844" element="dmd_dot" state="0"> - <bounds x="385" y="511" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix845" element="dmd_dot" state="0"> - <bounds x="65" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix846" element="dmd_dot" state="0"> - <bounds x="70" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix847" element="dmd_dot" state="0"> - <bounds x="75" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix848" element="dmd_dot" state="0"> - <bounds x="80" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix849" element="dmd_dot" state="0"> - <bounds x="85" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix850" element="dmd_dot" state="0"> - <bounds x="90" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix851" element="dmd_dot" state="0"> - <bounds x="95" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix852" element="dmd_dot" state="0"> - <bounds x="100" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix853" element="dmd_dot" state="0"> - <bounds x="105" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix854" element="dmd_dot" state="0"> - <bounds x="110" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix855" element="dmd_dot" state="0"> - <bounds x="115" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix856" element="dmd_dot" state="0"> - <bounds x="120" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix857" element="dmd_dot" state="0"> - <bounds x="125" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix858" element="dmd_dot" state="0"> - <bounds x="130" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix859" element="dmd_dot" state="0"> - <bounds x="135" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix860" element="dmd_dot" state="0"> - <bounds x="140" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix861" element="dmd_dot" state="0"> - <bounds x="145" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix862" element="dmd_dot" state="0"> - <bounds x="150" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix863" element="dmd_dot" state="0"> - <bounds x="155" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix864" element="dmd_dot" state="0"> - <bounds x="160" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix865" element="dmd_dot" state="0"> - <bounds x="165" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix866" element="dmd_dot" state="0"> - <bounds x="170" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix867" element="dmd_dot" state="0"> - <bounds x="175" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix868" element="dmd_dot" state="0"> - <bounds x="180" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix869" element="dmd_dot" state="0"> - <bounds x="185" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix870" element="dmd_dot" state="0"> - <bounds x="190" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix871" element="dmd_dot" state="0"> - <bounds x="195" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix872" element="dmd_dot" state="0"> - <bounds x="200" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix873" element="dmd_dot" state="0"> - <bounds x="205" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix874" element="dmd_dot" state="0"> - <bounds x="210" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix875" element="dmd_dot" state="0"> - <bounds x="215" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix876" element="dmd_dot" state="0"> - <bounds x="220" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix877" element="dmd_dot" state="0"> - <bounds x="225" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix878" element="dmd_dot" state="0"> - <bounds x="230" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix879" element="dmd_dot" state="0"> - <bounds x="235" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix880" element="dmd_dot" state="0"> - <bounds x="240" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix881" element="dmd_dot" state="0"> - <bounds x="245" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix882" element="dmd_dot" state="0"> - <bounds x="250" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix883" element="dmd_dot" state="0"> - <bounds x="255" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix884" element="dmd_dot" state="0"> - <bounds x="260" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix885" element="dmd_dot" state="0"> - <bounds x="265" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix886" element="dmd_dot" state="0"> - <bounds x="270" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix887" element="dmd_dot" state="0"> - <bounds x="275" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix888" element="dmd_dot" state="0"> - <bounds x="280" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix889" element="dmd_dot" state="0"> - <bounds x="285" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix890" element="dmd_dot" state="0"> - <bounds x="290" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix891" element="dmd_dot" state="0"> - <bounds x="295" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix892" element="dmd_dot" state="0"> - <bounds x="300" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix893" element="dmd_dot" state="0"> - <bounds x="305" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix894" element="dmd_dot" state="0"> - <bounds x="310" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix895" element="dmd_dot" state="0"> - <bounds x="315" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix896" element="dmd_dot" state="0"> - <bounds x="320" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix897" element="dmd_dot" state="0"> - <bounds x="325" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix898" element="dmd_dot" state="0"> - <bounds x="330" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix899" element="dmd_dot" state="0"> - <bounds x="335" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix900" element="dmd_dot" state="0"> - <bounds x="340" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix901" element="dmd_dot" state="0"> - <bounds x="345" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix902" element="dmd_dot" state="0"> - <bounds x="350" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix903" element="dmd_dot" state="0"> - <bounds x="355" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix904" element="dmd_dot" state="0"> - <bounds x="360" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix905" element="dmd_dot" state="0"> - <bounds x="365" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix906" element="dmd_dot" state="0"> - <bounds x="370" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix907" element="dmd_dot" state="0"> - <bounds x="375" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix908" element="dmd_dot" state="0"> - <bounds x="380" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix909" element="dmd_dot" state="0"> - <bounds x="385" y="516" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix910" element="dmd_dot" state="0"> - <bounds x="65" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix911" element="dmd_dot" state="0"> - <bounds x="70" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix912" element="dmd_dot" state="0"> - <bounds x="75" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix913" element="dmd_dot" state="0"> - <bounds x="80" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix914" element="dmd_dot" state="0"> - <bounds x="85" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix915" element="dmd_dot" state="0"> - <bounds x="90" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix916" element="dmd_dot" state="0"> - <bounds x="95" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix917" element="dmd_dot" state="0"> - <bounds x="100" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix918" element="dmd_dot" state="0"> - <bounds x="105" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix919" element="dmd_dot" state="0"> - <bounds x="110" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix920" element="dmd_dot" state="0"> - <bounds x="115" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix921" element="dmd_dot" state="0"> - <bounds x="120" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix922" element="dmd_dot" state="0"> - <bounds x="125" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix923" element="dmd_dot" state="0"> - <bounds x="130" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix924" element="dmd_dot" state="0"> - <bounds x="135" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix925" element="dmd_dot" state="0"> - <bounds x="140" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix926" element="dmd_dot" state="0"> - <bounds x="145" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix927" element="dmd_dot" state="0"> - <bounds x="150" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix928" element="dmd_dot" state="0"> - <bounds x="155" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix929" element="dmd_dot" state="0"> - <bounds x="160" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix930" element="dmd_dot" state="0"> - <bounds x="165" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix931" element="dmd_dot" state="0"> - <bounds x="170" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix932" element="dmd_dot" state="0"> - <bounds x="175" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix933" element="dmd_dot" state="0"> - <bounds x="180" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix934" element="dmd_dot" state="0"> - <bounds x="185" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix935" element="dmd_dot" state="0"> - <bounds x="190" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix936" element="dmd_dot" state="0"> - <bounds x="195" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix937" element="dmd_dot" state="0"> - <bounds x="200" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix938" element="dmd_dot" state="0"> - <bounds x="205" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix939" element="dmd_dot" state="0"> - <bounds x="210" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix940" element="dmd_dot" state="0"> - <bounds x="215" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix941" element="dmd_dot" state="0"> - <bounds x="220" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix942" element="dmd_dot" state="0"> - <bounds x="225" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix943" element="dmd_dot" state="0"> - <bounds x="230" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix944" element="dmd_dot" state="0"> - <bounds x="235" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix945" element="dmd_dot" state="0"> - <bounds x="240" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix946" element="dmd_dot" state="0"> - <bounds x="245" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix947" element="dmd_dot" state="0"> - <bounds x="250" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix948" element="dmd_dot" state="0"> - <bounds x="255" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix949" element="dmd_dot" state="0"> - <bounds x="260" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix950" element="dmd_dot" state="0"> - <bounds x="265" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix951" element="dmd_dot" state="0"> - <bounds x="270" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix952" element="dmd_dot" state="0"> - <bounds x="275" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix953" element="dmd_dot" state="0"> - <bounds x="280" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix954" element="dmd_dot" state="0"> - <bounds x="285" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix955" element="dmd_dot" state="0"> - <bounds x="290" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix956" element="dmd_dot" state="0"> - <bounds x="295" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix957" element="dmd_dot" state="0"> - <bounds x="300" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix958" element="dmd_dot" state="0"> - <bounds x="305" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix959" element="dmd_dot" state="0"> - <bounds x="310" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix960" element="dmd_dot" state="0"> - <bounds x="315" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix961" element="dmd_dot" state="0"> - <bounds x="320" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix962" element="dmd_dot" state="0"> - <bounds x="325" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix963" element="dmd_dot" state="0"> - <bounds x="330" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix964" element="dmd_dot" state="0"> - <bounds x="335" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix965" element="dmd_dot" state="0"> - <bounds x="340" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix966" element="dmd_dot" state="0"> - <bounds x="345" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix967" element="dmd_dot" state="0"> - <bounds x="350" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix968" element="dmd_dot" state="0"> - <bounds x="355" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix969" element="dmd_dot" state="0"> - <bounds x="360" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix970" element="dmd_dot" state="0"> - <bounds x="365" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix971" element="dmd_dot" state="0"> - <bounds x="370" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix972" element="dmd_dot" state="0"> - <bounds x="375" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix973" element="dmd_dot" state="0"> - <bounds x="380" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix974" element="dmd_dot" state="0"> - <bounds x="385" y="521" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix975" element="dmd_dot" state="0"> - <bounds x="65" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix976" element="dmd_dot" state="0"> - <bounds x="70" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix977" element="dmd_dot" state="0"> - <bounds x="75" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix978" element="dmd_dot" state="0"> - <bounds x="80" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix979" element="dmd_dot" state="0"> - <bounds x="85" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix980" element="dmd_dot" state="0"> - <bounds x="90" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix981" element="dmd_dot" state="0"> - <bounds x="95" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix982" element="dmd_dot" state="0"> - <bounds x="100" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix983" element="dmd_dot" state="0"> - <bounds x="105" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix984" element="dmd_dot" state="0"> - <bounds x="110" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix985" element="dmd_dot" state="0"> - <bounds x="115" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix986" element="dmd_dot" state="0"> - <bounds x="120" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix987" element="dmd_dot" state="0"> - <bounds x="125" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix988" element="dmd_dot" state="0"> - <bounds x="130" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix989" element="dmd_dot" state="0"> - <bounds x="135" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix990" element="dmd_dot" state="0"> - <bounds x="140" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix991" element="dmd_dot" state="0"> - <bounds x="145" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix992" element="dmd_dot" state="0"> - <bounds x="150" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix993" element="dmd_dot" state="0"> - <bounds x="155" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix994" element="dmd_dot" state="0"> - <bounds x="160" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix995" element="dmd_dot" state="0"> - <bounds x="165" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix996" element="dmd_dot" state="0"> - <bounds x="170" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix997" element="dmd_dot" state="0"> - <bounds x="175" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix998" element="dmd_dot" state="0"> - <bounds x="180" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix999" element="dmd_dot" state="0"> - <bounds x="185" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1000" element="dmd_dot" state="0"> - <bounds x="190" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1001" element="dmd_dot" state="0"> - <bounds x="195" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1002" element="dmd_dot" state="0"> - <bounds x="200" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1003" element="dmd_dot" state="0"> - <bounds x="205" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1004" element="dmd_dot" state="0"> - <bounds x="210" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1005" element="dmd_dot" state="0"> - <bounds x="215" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1006" element="dmd_dot" state="0"> - <bounds x="220" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1007" element="dmd_dot" state="0"> - <bounds x="225" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1008" element="dmd_dot" state="0"> - <bounds x="230" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1009" element="dmd_dot" state="0"> - <bounds x="235" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1010" element="dmd_dot" state="0"> - <bounds x="240" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1011" element="dmd_dot" state="0"> - <bounds x="245" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1012" element="dmd_dot" state="0"> - <bounds x="250" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1013" element="dmd_dot" state="0"> - <bounds x="255" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1014" element="dmd_dot" state="0"> - <bounds x="260" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1015" element="dmd_dot" state="0"> - <bounds x="265" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1016" element="dmd_dot" state="0"> - <bounds x="270" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1017" element="dmd_dot" state="0"> - <bounds x="275" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1018" element="dmd_dot" state="0"> - <bounds x="280" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1019" element="dmd_dot" state="0"> - <bounds x="285" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1020" element="dmd_dot" state="0"> - <bounds x="290" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1021" element="dmd_dot" state="0"> - <bounds x="295" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1022" element="dmd_dot" state="0"> - <bounds x="300" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1023" element="dmd_dot" state="0"> - <bounds x="305" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1024" element="dmd_dot" state="0"> - <bounds x="310" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1025" element="dmd_dot" state="0"> - <bounds x="315" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1026" element="dmd_dot" state="0"> - <bounds x="320" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1027" element="dmd_dot" state="0"> - <bounds x="325" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1028" element="dmd_dot" state="0"> - <bounds x="330" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1029" element="dmd_dot" state="0"> - <bounds x="335" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1030" element="dmd_dot" state="0"> - <bounds x="340" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1031" element="dmd_dot" state="0"> - <bounds x="345" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1032" element="dmd_dot" state="0"> - <bounds x="350" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1033" element="dmd_dot" state="0"> - <bounds x="355" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1034" element="dmd_dot" state="0"> - <bounds x="360" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1035" element="dmd_dot" state="0"> - <bounds x="365" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1036" element="dmd_dot" state="0"> - <bounds x="370" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1037" element="dmd_dot" state="0"> - <bounds x="375" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1038" element="dmd_dot" state="0"> - <bounds x="380" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1039" element="dmd_dot" state="0"> - <bounds x="385" y="526" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1040" element="dmd_dot" state="0"> - <bounds x="65" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1041" element="dmd_dot" state="0"> - <bounds x="70" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1042" element="dmd_dot" state="0"> - <bounds x="75" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1043" element="dmd_dot" state="0"> - <bounds x="80" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1044" element="dmd_dot" state="0"> - <bounds x="85" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1045" element="dmd_dot" state="0"> - <bounds x="90" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1046" element="dmd_dot" state="0"> - <bounds x="95" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1047" element="dmd_dot" state="0"> - <bounds x="100" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1048" element="dmd_dot" state="0"> - <bounds x="105" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1049" element="dmd_dot" state="0"> - <bounds x="110" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1050" element="dmd_dot" state="0"> - <bounds x="115" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1051" element="dmd_dot" state="0"> - <bounds x="120" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1052" element="dmd_dot" state="0"> - <bounds x="125" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1053" element="dmd_dot" state="0"> - <bounds x="130" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1054" element="dmd_dot" state="0"> - <bounds x="135" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1055" element="dmd_dot" state="0"> - <bounds x="140" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1056" element="dmd_dot" state="0"> - <bounds x="145" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1057" element="dmd_dot" state="0"> - <bounds x="150" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1058" element="dmd_dot" state="0"> - <bounds x="155" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1059" element="dmd_dot" state="0"> - <bounds x="160" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1060" element="dmd_dot" state="0"> - <bounds x="165" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1061" element="dmd_dot" state="0"> - <bounds x="170" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1062" element="dmd_dot" state="0"> - <bounds x="175" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1063" element="dmd_dot" state="0"> - <bounds x="180" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1064" element="dmd_dot" state="0"> - <bounds x="185" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1065" element="dmd_dot" state="0"> - <bounds x="190" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1066" element="dmd_dot" state="0"> - <bounds x="195" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1067" element="dmd_dot" state="0"> - <bounds x="200" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1068" element="dmd_dot" state="0"> - <bounds x="205" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1069" element="dmd_dot" state="0"> - <bounds x="210" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1070" element="dmd_dot" state="0"> - <bounds x="215" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1071" element="dmd_dot" state="0"> - <bounds x="220" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1072" element="dmd_dot" state="0"> - <bounds x="225" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1073" element="dmd_dot" state="0"> - <bounds x="230" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1074" element="dmd_dot" state="0"> - <bounds x="235" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1075" element="dmd_dot" state="0"> - <bounds x="240" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1076" element="dmd_dot" state="0"> - <bounds x="245" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1077" element="dmd_dot" state="0"> - <bounds x="250" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1078" element="dmd_dot" state="0"> - <bounds x="255" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1079" element="dmd_dot" state="0"> - <bounds x="260" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1080" element="dmd_dot" state="0"> - <bounds x="265" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1081" element="dmd_dot" state="0"> - <bounds x="270" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1082" element="dmd_dot" state="0"> - <bounds x="275" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1083" element="dmd_dot" state="0"> - <bounds x="280" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1084" element="dmd_dot" state="0"> - <bounds x="285" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1085" element="dmd_dot" state="0"> - <bounds x="290" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1086" element="dmd_dot" state="0"> - <bounds x="295" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1087" element="dmd_dot" state="0"> - <bounds x="300" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1088" element="dmd_dot" state="0"> - <bounds x="305" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1089" element="dmd_dot" state="0"> - <bounds x="310" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1090" element="dmd_dot" state="0"> - <bounds x="315" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1091" element="dmd_dot" state="0"> - <bounds x="320" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1092" element="dmd_dot" state="0"> - <bounds x="325" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1093" element="dmd_dot" state="0"> - <bounds x="330" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1094" element="dmd_dot" state="0"> - <bounds x="335" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1095" element="dmd_dot" state="0"> - <bounds x="340" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1096" element="dmd_dot" state="0"> - <bounds x="345" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1097" element="dmd_dot" state="0"> - <bounds x="350" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1098" element="dmd_dot" state="0"> - <bounds x="355" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1099" element="dmd_dot" state="0"> - <bounds x="360" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1100" element="dmd_dot" state="0"> - <bounds x="365" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1101" element="dmd_dot" state="0"> - <bounds x="370" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1102" element="dmd_dot" state="0"> - <bounds x="375" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1103" element="dmd_dot" state="0"> - <bounds x="380" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1104" element="dmd_dot" state="0"> - <bounds x="385" y="531" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1105" element="dmd_dot" state="0"> - <bounds x="65" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1106" element="dmd_dot" state="0"> - <bounds x="70" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1107" element="dmd_dot" state="0"> - <bounds x="75" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1108" element="dmd_dot" state="0"> - <bounds x="80" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1109" element="dmd_dot" state="0"> - <bounds x="85" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1110" element="dmd_dot" state="0"> - <bounds x="90" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1111" element="dmd_dot" state="0"> - <bounds x="95" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1112" element="dmd_dot" state="0"> - <bounds x="100" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1113" element="dmd_dot" state="0"> - <bounds x="105" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1114" element="dmd_dot" state="0"> - <bounds x="110" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1115" element="dmd_dot" state="0"> - <bounds x="115" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1116" element="dmd_dot" state="0"> - <bounds x="120" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1117" element="dmd_dot" state="0"> - <bounds x="125" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1118" element="dmd_dot" state="0"> - <bounds x="130" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1119" element="dmd_dot" state="0"> - <bounds x="135" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1120" element="dmd_dot" state="0"> - <bounds x="140" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1121" element="dmd_dot" state="0"> - <bounds x="145" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1122" element="dmd_dot" state="0"> - <bounds x="150" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1123" element="dmd_dot" state="0"> - <bounds x="155" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1124" element="dmd_dot" state="0"> - <bounds x="160" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1125" element="dmd_dot" state="0"> - <bounds x="165" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1126" element="dmd_dot" state="0"> - <bounds x="170" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1127" element="dmd_dot" state="0"> - <bounds x="175" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1128" element="dmd_dot" state="0"> - <bounds x="180" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1129" element="dmd_dot" state="0"> - <bounds x="185" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1130" element="dmd_dot" state="0"> - <bounds x="190" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1131" element="dmd_dot" state="0"> - <bounds x="195" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1132" element="dmd_dot" state="0"> - <bounds x="200" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1133" element="dmd_dot" state="0"> - <bounds x="205" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1134" element="dmd_dot" state="0"> - <bounds x="210" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1135" element="dmd_dot" state="0"> - <bounds x="215" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1136" element="dmd_dot" state="0"> - <bounds x="220" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1137" element="dmd_dot" state="0"> - <bounds x="225" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1138" element="dmd_dot" state="0"> - <bounds x="230" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1139" element="dmd_dot" state="0"> - <bounds x="235" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1140" element="dmd_dot" state="0"> - <bounds x="240" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1141" element="dmd_dot" state="0"> - <bounds x="245" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1142" element="dmd_dot" state="0"> - <bounds x="250" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1143" element="dmd_dot" state="0"> - <bounds x="255" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1144" element="dmd_dot" state="0"> - <bounds x="260" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1145" element="dmd_dot" state="0"> - <bounds x="265" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1146" element="dmd_dot" state="0"> - <bounds x="270" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1147" element="dmd_dot" state="0"> - <bounds x="275" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1148" element="dmd_dot" state="0"> - <bounds x="280" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1149" element="dmd_dot" state="0"> - <bounds x="285" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1150" element="dmd_dot" state="0"> - <bounds x="290" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1151" element="dmd_dot" state="0"> - <bounds x="295" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1152" element="dmd_dot" state="0"> - <bounds x="300" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1153" element="dmd_dot" state="0"> - <bounds x="305" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1154" element="dmd_dot" state="0"> - <bounds x="310" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1155" element="dmd_dot" state="0"> - <bounds x="315" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1156" element="dmd_dot" state="0"> - <bounds x="320" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1157" element="dmd_dot" state="0"> - <bounds x="325" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1158" element="dmd_dot" state="0"> - <bounds x="330" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1159" element="dmd_dot" state="0"> - <bounds x="335" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1160" element="dmd_dot" state="0"> - <bounds x="340" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1161" element="dmd_dot" state="0"> - <bounds x="345" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1162" element="dmd_dot" state="0"> - <bounds x="350" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1163" element="dmd_dot" state="0"> - <bounds x="355" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1164" element="dmd_dot" state="0"> - <bounds x="360" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1165" element="dmd_dot" state="0"> - <bounds x="365" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1166" element="dmd_dot" state="0"> - <bounds x="370" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1167" element="dmd_dot" state="0"> - <bounds x="375" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1168" element="dmd_dot" state="0"> - <bounds x="380" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1169" element="dmd_dot" state="0"> - <bounds x="385" y="536" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1170" element="dmd_dot" state="0"> - <bounds x="65" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1171" element="dmd_dot" state="0"> - <bounds x="70" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1172" element="dmd_dot" state="0"> - <bounds x="75" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1173" element="dmd_dot" state="0"> - <bounds x="80" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1174" element="dmd_dot" state="0"> - <bounds x="85" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1175" element="dmd_dot" state="0"> - <bounds x="90" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1176" element="dmd_dot" state="0"> - <bounds x="95" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1177" element="dmd_dot" state="0"> - <bounds x="100" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1178" element="dmd_dot" state="0"> - <bounds x="105" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1179" element="dmd_dot" state="0"> - <bounds x="110" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1180" element="dmd_dot" state="0"> - <bounds x="115" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1181" element="dmd_dot" state="0"> - <bounds x="120" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1182" element="dmd_dot" state="0"> - <bounds x="125" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1183" element="dmd_dot" state="0"> - <bounds x="130" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1184" element="dmd_dot" state="0"> - <bounds x="135" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1185" element="dmd_dot" state="0"> - <bounds x="140" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1186" element="dmd_dot" state="0"> - <bounds x="145" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1187" element="dmd_dot" state="0"> - <bounds x="150" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1188" element="dmd_dot" state="0"> - <bounds x="155" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1189" element="dmd_dot" state="0"> - <bounds x="160" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1190" element="dmd_dot" state="0"> - <bounds x="165" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1191" element="dmd_dot" state="0"> - <bounds x="170" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1192" element="dmd_dot" state="0"> - <bounds x="175" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1193" element="dmd_dot" state="0"> - <bounds x="180" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1194" element="dmd_dot" state="0"> - <bounds x="185" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1195" element="dmd_dot" state="0"> - <bounds x="190" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1196" element="dmd_dot" state="0"> - <bounds x="195" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1197" element="dmd_dot" state="0"> - <bounds x="200" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1198" element="dmd_dot" state="0"> - <bounds x="205" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1199" element="dmd_dot" state="0"> - <bounds x="210" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1200" element="dmd_dot" state="0"> - <bounds x="215" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1201" element="dmd_dot" state="0"> - <bounds x="220" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1202" element="dmd_dot" state="0"> - <bounds x="225" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1203" element="dmd_dot" state="0"> - <bounds x="230" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1204" element="dmd_dot" state="0"> - <bounds x="235" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1205" element="dmd_dot" state="0"> - <bounds x="240" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1206" element="dmd_dot" state="0"> - <bounds x="245" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1207" element="dmd_dot" state="0"> - <bounds x="250" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1208" element="dmd_dot" state="0"> - <bounds x="255" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1209" element="dmd_dot" state="0"> - <bounds x="260" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1210" element="dmd_dot" state="0"> - <bounds x="265" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1211" element="dmd_dot" state="0"> - <bounds x="270" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1212" element="dmd_dot" state="0"> - <bounds x="275" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1213" element="dmd_dot" state="0"> - <bounds x="280" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1214" element="dmd_dot" state="0"> - <bounds x="285" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1215" element="dmd_dot" state="0"> - <bounds x="290" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1216" element="dmd_dot" state="0"> - <bounds x="295" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1217" element="dmd_dot" state="0"> - <bounds x="300" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1218" element="dmd_dot" state="0"> - <bounds x="305" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1219" element="dmd_dot" state="0"> - <bounds x="310" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1220" element="dmd_dot" state="0"> - <bounds x="315" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1221" element="dmd_dot" state="0"> - <bounds x="320" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1222" element="dmd_dot" state="0"> - <bounds x="325" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1223" element="dmd_dot" state="0"> - <bounds x="330" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1224" element="dmd_dot" state="0"> - <bounds x="335" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1225" element="dmd_dot" state="0"> - <bounds x="340" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1226" element="dmd_dot" state="0"> - <bounds x="345" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1227" element="dmd_dot" state="0"> - <bounds x="350" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1228" element="dmd_dot" state="0"> - <bounds x="355" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1229" element="dmd_dot" state="0"> - <bounds x="360" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1230" element="dmd_dot" state="0"> - <bounds x="365" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1231" element="dmd_dot" state="0"> - <bounds x="370" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1232" element="dmd_dot" state="0"> - <bounds x="375" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1233" element="dmd_dot" state="0"> - <bounds x="380" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1234" element="dmd_dot" state="0"> - <bounds x="385" y="541" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1235" element="dmd_dot" state="0"> - <bounds x="65" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1236" element="dmd_dot" state="0"> - <bounds x="70" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1237" element="dmd_dot" state="0"> - <bounds x="75" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1238" element="dmd_dot" state="0"> - <bounds x="80" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1239" element="dmd_dot" state="0"> - <bounds x="85" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1240" element="dmd_dot" state="0"> - <bounds x="90" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1241" element="dmd_dot" state="0"> - <bounds x="95" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1242" element="dmd_dot" state="0"> - <bounds x="100" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1243" element="dmd_dot" state="0"> - <bounds x="105" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1244" element="dmd_dot" state="0"> - <bounds x="110" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1245" element="dmd_dot" state="0"> - <bounds x="115" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1246" element="dmd_dot" state="0"> - <bounds x="120" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1247" element="dmd_dot" state="0"> - <bounds x="125" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1248" element="dmd_dot" state="0"> - <bounds x="130" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1249" element="dmd_dot" state="0"> - <bounds x="135" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1250" element="dmd_dot" state="0"> - <bounds x="140" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1251" element="dmd_dot" state="0"> - <bounds x="145" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1252" element="dmd_dot" state="0"> - <bounds x="150" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1253" element="dmd_dot" state="0"> - <bounds x="155" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1254" element="dmd_dot" state="0"> - <bounds x="160" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1255" element="dmd_dot" state="0"> - <bounds x="165" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1256" element="dmd_dot" state="0"> - <bounds x="170" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1257" element="dmd_dot" state="0"> - <bounds x="175" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1258" element="dmd_dot" state="0"> - <bounds x="180" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1259" element="dmd_dot" state="0"> - <bounds x="185" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1260" element="dmd_dot" state="0"> - <bounds x="190" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1261" element="dmd_dot" state="0"> - <bounds x="195" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1262" element="dmd_dot" state="0"> - <bounds x="200" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1263" element="dmd_dot" state="0"> - <bounds x="205" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1264" element="dmd_dot" state="0"> - <bounds x="210" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1265" element="dmd_dot" state="0"> - <bounds x="215" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1266" element="dmd_dot" state="0"> - <bounds x="220" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1267" element="dmd_dot" state="0"> - <bounds x="225" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1268" element="dmd_dot" state="0"> - <bounds x="230" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1269" element="dmd_dot" state="0"> - <bounds x="235" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1270" element="dmd_dot" state="0"> - <bounds x="240" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1271" element="dmd_dot" state="0"> - <bounds x="245" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1272" element="dmd_dot" state="0"> - <bounds x="250" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1273" element="dmd_dot" state="0"> - <bounds x="255" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1274" element="dmd_dot" state="0"> - <bounds x="260" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1275" element="dmd_dot" state="0"> - <bounds x="265" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1276" element="dmd_dot" state="0"> - <bounds x="270" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1277" element="dmd_dot" state="0"> - <bounds x="275" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1278" element="dmd_dot" state="0"> - <bounds x="280" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1279" element="dmd_dot" state="0"> - <bounds x="285" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1280" element="dmd_dot" state="0"> - <bounds x="290" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1281" element="dmd_dot" state="0"> - <bounds x="295" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1282" element="dmd_dot" state="0"> - <bounds x="300" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1283" element="dmd_dot" state="0"> - <bounds x="305" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1284" element="dmd_dot" state="0"> - <bounds x="310" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1285" element="dmd_dot" state="0"> - <bounds x="315" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1286" element="dmd_dot" state="0"> - <bounds x="320" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1287" element="dmd_dot" state="0"> - <bounds x="325" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1288" element="dmd_dot" state="0"> - <bounds x="330" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1289" element="dmd_dot" state="0"> - <bounds x="335" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1290" element="dmd_dot" state="0"> - <bounds x="340" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1291" element="dmd_dot" state="0"> - <bounds x="345" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1292" element="dmd_dot" state="0"> - <bounds x="350" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1293" element="dmd_dot" state="0"> - <bounds x="355" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1294" element="dmd_dot" state="0"> - <bounds x="360" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1295" element="dmd_dot" state="0"> - <bounds x="365" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1296" element="dmd_dot" state="0"> - <bounds x="370" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1297" element="dmd_dot" state="0"> - <bounds x="375" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1298" element="dmd_dot" state="0"> - <bounds x="380" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1299" element="dmd_dot" state="0"> - <bounds x="385" y="546" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1300" element="dmd_dot" state="0"> - <bounds x="65" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1301" element="dmd_dot" state="0"> - <bounds x="70" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1302" element="dmd_dot" state="0"> - <bounds x="75" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1303" element="dmd_dot" state="0"> - <bounds x="80" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1304" element="dmd_dot" state="0"> - <bounds x="85" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1305" element="dmd_dot" state="0"> - <bounds x="90" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1306" element="dmd_dot" state="0"> - <bounds x="95" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1307" element="dmd_dot" state="0"> - <bounds x="100" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1308" element="dmd_dot" state="0"> - <bounds x="105" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1309" element="dmd_dot" state="0"> - <bounds x="110" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1310" element="dmd_dot" state="0"> - <bounds x="115" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1311" element="dmd_dot" state="0"> - <bounds x="120" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1312" element="dmd_dot" state="0"> - <bounds x="125" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1313" element="dmd_dot" state="0"> - <bounds x="130" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1314" element="dmd_dot" state="0"> - <bounds x="135" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1315" element="dmd_dot" state="0"> - <bounds x="140" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1316" element="dmd_dot" state="0"> - <bounds x="145" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1317" element="dmd_dot" state="0"> - <bounds x="150" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1318" element="dmd_dot" state="0"> - <bounds x="155" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1319" element="dmd_dot" state="0"> - <bounds x="160" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1320" element="dmd_dot" state="0"> - <bounds x="165" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1321" element="dmd_dot" state="0"> - <bounds x="170" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1322" element="dmd_dot" state="0"> - <bounds x="175" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1323" element="dmd_dot" state="0"> - <bounds x="180" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1324" element="dmd_dot" state="0"> - <bounds x="185" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1325" element="dmd_dot" state="0"> - <bounds x="190" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1326" element="dmd_dot" state="0"> - <bounds x="195" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1327" element="dmd_dot" state="0"> - <bounds x="200" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1328" element="dmd_dot" state="0"> - <bounds x="205" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1329" element="dmd_dot" state="0"> - <bounds x="210" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1330" element="dmd_dot" state="0"> - <bounds x="215" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1331" element="dmd_dot" state="0"> - <bounds x="220" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1332" element="dmd_dot" state="0"> - <bounds x="225" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1333" element="dmd_dot" state="0"> - <bounds x="230" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1334" element="dmd_dot" state="0"> - <bounds x="235" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1335" element="dmd_dot" state="0"> - <bounds x="240" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1336" element="dmd_dot" state="0"> - <bounds x="245" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1337" element="dmd_dot" state="0"> - <bounds x="250" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1338" element="dmd_dot" state="0"> - <bounds x="255" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1339" element="dmd_dot" state="0"> - <bounds x="260" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1340" element="dmd_dot" state="0"> - <bounds x="265" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1341" element="dmd_dot" state="0"> - <bounds x="270" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1342" element="dmd_dot" state="0"> - <bounds x="275" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1343" element="dmd_dot" state="0"> - <bounds x="280" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1344" element="dmd_dot" state="0"> - <bounds x="285" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1345" element="dmd_dot" state="0"> - <bounds x="290" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1346" element="dmd_dot" state="0"> - <bounds x="295" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1347" element="dmd_dot" state="0"> - <bounds x="300" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1348" element="dmd_dot" state="0"> - <bounds x="305" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1349" element="dmd_dot" state="0"> - <bounds x="310" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1350" element="dmd_dot" state="0"> - <bounds x="315" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1351" element="dmd_dot" state="0"> - <bounds x="320" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1352" element="dmd_dot" state="0"> - <bounds x="325" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1353" element="dmd_dot" state="0"> - <bounds x="330" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1354" element="dmd_dot" state="0"> - <bounds x="335" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1355" element="dmd_dot" state="0"> - <bounds x="340" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1356" element="dmd_dot" state="0"> - <bounds x="345" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1357" element="dmd_dot" state="0"> - <bounds x="350" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1358" element="dmd_dot" state="0"> - <bounds x="355" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1359" element="dmd_dot" state="0"> - <bounds x="360" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1360" element="dmd_dot" state="0"> - <bounds x="365" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1361" element="dmd_dot" state="0"> - <bounds x="370" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1362" element="dmd_dot" state="0"> - <bounds x="375" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1363" element="dmd_dot" state="0"> - <bounds x="380" y="551" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1364" element="dmd_dot" state="0"> - <bounds x="385" y="551" width="2" height="2"> - </bounds> - </backdrop> + + <!-- The DMD --> + <screen index="0"> + <bounds left="65" top="451" right="392" bottom="558" /> + </screen> + <backdrop name="label66" element="label_66"> <bounds x="232" y="780" width="111" height="26"> </bounds> diff --git a/src/mame/layout/sc2ptytm1.lay b/src/mame/layout/sc2ptytm1.lay index 90e794ed833..0773e5c5589 100644 --- a/src/mame/layout/sc2ptytm1.lay +++ b/src/mame/layout/sc2ptytm1.lay @@ -1486,22 +1486,7 @@ </color> </led7seg> </element> - <element name="dmd_dot" defstate="0"> - <rect state="1"> - <color red="1.0" green="0.5" blue="0.0"> - </color> - </rect> - <rect state="0"> - <color red="0.4" green="0.2" blue="0.0"> - </color> - </rect> - </element> - <element name="dmd_background"> - <rect> - <color red="0.0" green="0.0" blue="0.0"> - </color> - </rect> - </element> + <element name="reel_lamp_layer_0" defstate="0"> <rect> <color red="0.40" green="0.40" blue="0.40"> @@ -4888,5470 +4873,12 @@ <bounds x="696" y="11" width="46" height="12"> </bounds> </backdrop> - <backdrop element="dmd_background"> - <bounds x="134" y="325" width="262" height="86"> - </bounds> - </backdrop> - <backdrop name="dotmatrix0" element="dmd_dot" state="0"> - <bounds x="134" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1" element="dmd_dot" state="0"> - <bounds x="138" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix2" element="dmd_dot" state="0"> - <bounds x="142" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix3" element="dmd_dot" state="0"> - <bounds x="146" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix4" element="dmd_dot" state="0"> - <bounds x="150" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix5" element="dmd_dot" state="0"> - <bounds x="154" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix6" element="dmd_dot" state="0"> - <bounds x="158" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix7" element="dmd_dot" state="0"> - <bounds x="162" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix8" element="dmd_dot" state="0"> - <bounds x="166" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix9" element="dmd_dot" state="0"> - <bounds x="170" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix10" element="dmd_dot" state="0"> - <bounds x="174" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix11" element="dmd_dot" state="0"> - <bounds x="178" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix12" element="dmd_dot" state="0"> - <bounds x="182" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix13" element="dmd_dot" state="0"> - <bounds x="186" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix14" element="dmd_dot" state="0"> - <bounds x="190" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix15" element="dmd_dot" state="0"> - <bounds x="194" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix16" element="dmd_dot" state="0"> - <bounds x="198" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix17" element="dmd_dot" state="0"> - <bounds x="202" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix18" element="dmd_dot" state="0"> - <bounds x="206" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix19" element="dmd_dot" state="0"> - <bounds x="210" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix20" element="dmd_dot" state="0"> - <bounds x="214" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix21" element="dmd_dot" state="0"> - <bounds x="218" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix22" element="dmd_dot" state="0"> - <bounds x="222" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix23" element="dmd_dot" state="0"> - <bounds x="226" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix24" element="dmd_dot" state="0"> - <bounds x="230" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix25" element="dmd_dot" state="0"> - <bounds x="234" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix26" element="dmd_dot" state="0"> - <bounds x="238" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix27" element="dmd_dot" state="0"> - <bounds x="242" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix28" element="dmd_dot" state="0"> - <bounds x="246" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix29" element="dmd_dot" state="0"> - <bounds x="250" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix30" element="dmd_dot" state="0"> - <bounds x="254" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix31" element="dmd_dot" state="0"> - <bounds x="258" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix32" element="dmd_dot" state="0"> - <bounds x="262" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix33" element="dmd_dot" state="0"> - <bounds x="266" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix34" element="dmd_dot" state="0"> - <bounds x="270" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix35" element="dmd_dot" state="0"> - <bounds x="274" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix36" element="dmd_dot" state="0"> - <bounds x="278" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix37" element="dmd_dot" state="0"> - <bounds x="282" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix38" element="dmd_dot" state="0"> - <bounds x="286" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix39" element="dmd_dot" state="0"> - <bounds x="290" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix40" element="dmd_dot" state="0"> - <bounds x="294" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix41" element="dmd_dot" state="0"> - <bounds x="298" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix42" element="dmd_dot" state="0"> - <bounds x="302" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix43" element="dmd_dot" state="0"> - <bounds x="306" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix44" element="dmd_dot" state="0"> - <bounds x="310" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix45" element="dmd_dot" state="0"> - <bounds x="314" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix46" element="dmd_dot" state="0"> - <bounds x="318" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix47" element="dmd_dot" state="0"> - <bounds x="322" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix48" element="dmd_dot" state="0"> - <bounds x="326" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix49" element="dmd_dot" state="0"> - <bounds x="330" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix50" element="dmd_dot" state="0"> - <bounds x="334" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix51" element="dmd_dot" state="0"> - <bounds x="338" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix52" element="dmd_dot" state="0"> - <bounds x="342" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix53" element="dmd_dot" state="0"> - <bounds x="346" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix54" element="dmd_dot" state="0"> - <bounds x="350" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix55" element="dmd_dot" state="0"> - <bounds x="354" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix56" element="dmd_dot" state="0"> - <bounds x="358" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix57" element="dmd_dot" state="0"> - <bounds x="362" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix58" element="dmd_dot" state="0"> - <bounds x="366" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix59" element="dmd_dot" state="0"> - <bounds x="370" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix60" element="dmd_dot" state="0"> - <bounds x="374" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix61" element="dmd_dot" state="0"> - <bounds x="378" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix62" element="dmd_dot" state="0"> - <bounds x="382" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix63" element="dmd_dot" state="0"> - <bounds x="386" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix64" element="dmd_dot" state="0"> - <bounds x="390" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix65" element="dmd_dot" state="0"> - <bounds x="134" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix66" element="dmd_dot" state="0"> - <bounds x="138" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix67" element="dmd_dot" state="0"> - <bounds x="142" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix68" element="dmd_dot" state="0"> - <bounds x="146" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix69" element="dmd_dot" state="0"> - <bounds x="150" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix70" element="dmd_dot" state="0"> - <bounds x="154" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix71" element="dmd_dot" state="0"> - <bounds x="158" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix72" element="dmd_dot" state="0"> - <bounds x="162" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix73" element="dmd_dot" state="0"> - <bounds x="166" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix74" element="dmd_dot" state="0"> - <bounds x="170" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix75" element="dmd_dot" state="0"> - <bounds x="174" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix76" element="dmd_dot" state="0"> - <bounds x="178" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix77" element="dmd_dot" state="0"> - <bounds x="182" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix78" element="dmd_dot" state="0"> - <bounds x="186" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix79" element="dmd_dot" state="0"> - <bounds x="190" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix80" element="dmd_dot" state="0"> - <bounds x="194" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix81" element="dmd_dot" state="0"> - <bounds x="198" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix82" element="dmd_dot" state="0"> - <bounds x="202" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix83" element="dmd_dot" state="0"> - <bounds x="206" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix84" element="dmd_dot" state="0"> - <bounds x="210" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix85" element="dmd_dot" state="0"> - <bounds x="214" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix86" element="dmd_dot" state="0"> - <bounds x="218" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix87" element="dmd_dot" state="0"> - <bounds x="222" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix88" element="dmd_dot" state="0"> - <bounds x="226" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix89" element="dmd_dot" state="0"> - <bounds x="230" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix90" element="dmd_dot" state="0"> - <bounds x="234" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix91" element="dmd_dot" state="0"> - <bounds x="238" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix92" element="dmd_dot" state="0"> - <bounds x="242" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix93" element="dmd_dot" state="0"> - <bounds x="246" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix94" element="dmd_dot" state="0"> - <bounds x="250" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix95" element="dmd_dot" state="0"> - <bounds x="254" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix96" element="dmd_dot" state="0"> - <bounds x="258" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix97" element="dmd_dot" state="0"> - <bounds x="262" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix98" element="dmd_dot" state="0"> - <bounds x="266" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix99" element="dmd_dot" state="0"> - <bounds x="270" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix100" element="dmd_dot" state="0"> - <bounds x="274" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix101" element="dmd_dot" state="0"> - <bounds x="278" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix102" element="dmd_dot" state="0"> - <bounds x="282" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix103" element="dmd_dot" state="0"> - <bounds x="286" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix104" element="dmd_dot" state="0"> - <bounds x="290" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix105" element="dmd_dot" state="0"> - <bounds x="294" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix106" element="dmd_dot" state="0"> - <bounds x="298" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix107" element="dmd_dot" state="0"> - <bounds x="302" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix108" element="dmd_dot" state="0"> - <bounds x="306" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix109" element="dmd_dot" state="0"> - <bounds x="310" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix110" element="dmd_dot" state="0"> - <bounds x="314" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix111" element="dmd_dot" state="0"> - <bounds x="318" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix112" element="dmd_dot" state="0"> - <bounds x="322" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix113" element="dmd_dot" state="0"> - <bounds x="326" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix114" element="dmd_dot" state="0"> - <bounds x="330" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix115" element="dmd_dot" state="0"> - <bounds x="334" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix116" element="dmd_dot" state="0"> - <bounds x="338" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix117" element="dmd_dot" state="0"> - <bounds x="342" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix118" element="dmd_dot" state="0"> - <bounds x="346" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix119" element="dmd_dot" state="0"> - <bounds x="350" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix120" element="dmd_dot" state="0"> - <bounds x="354" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix121" element="dmd_dot" state="0"> - <bounds x="358" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix122" element="dmd_dot" state="0"> - <bounds x="362" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix123" element="dmd_dot" state="0"> - <bounds x="366" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix124" element="dmd_dot" state="0"> - <bounds x="370" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix125" element="dmd_dot" state="0"> - <bounds x="374" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix126" element="dmd_dot" state="0"> - <bounds x="378" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix127" element="dmd_dot" state="0"> - <bounds x="382" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix128" element="dmd_dot" state="0"> - <bounds x="386" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix129" element="dmd_dot" state="0"> - <bounds x="390" y="329" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix130" element="dmd_dot" state="0"> - <bounds x="134" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix131" element="dmd_dot" state="0"> - <bounds x="138" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix132" element="dmd_dot" state="0"> - <bounds x="142" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix133" element="dmd_dot" state="0"> - <bounds x="146" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix134" element="dmd_dot" state="0"> - <bounds x="150" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix135" element="dmd_dot" state="0"> - <bounds x="154" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix136" element="dmd_dot" state="0"> - <bounds x="158" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix137" element="dmd_dot" state="0"> - <bounds x="162" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix138" element="dmd_dot" state="0"> - <bounds x="166" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix139" element="dmd_dot" state="0"> - <bounds x="170" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix140" element="dmd_dot" state="0"> - <bounds x="174" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix141" element="dmd_dot" state="0"> - <bounds x="178" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix142" element="dmd_dot" state="0"> - <bounds x="182" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix143" element="dmd_dot" state="0"> - <bounds x="186" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix144" element="dmd_dot" state="0"> - <bounds x="190" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix145" element="dmd_dot" state="0"> - <bounds x="194" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix146" element="dmd_dot" state="0"> - <bounds x="198" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix147" element="dmd_dot" state="0"> - <bounds x="202" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix148" element="dmd_dot" state="0"> - <bounds x="206" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix149" element="dmd_dot" state="0"> - <bounds x="210" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix150" element="dmd_dot" state="0"> - <bounds x="214" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix151" element="dmd_dot" state="0"> - <bounds x="218" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix152" element="dmd_dot" state="0"> - <bounds x="222" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix153" element="dmd_dot" state="0"> - <bounds x="226" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix154" element="dmd_dot" state="0"> - <bounds x="230" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix155" element="dmd_dot" state="0"> - <bounds x="234" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix156" element="dmd_dot" state="0"> - <bounds x="238" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix157" element="dmd_dot" state="0"> - <bounds x="242" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix158" element="dmd_dot" state="0"> - <bounds x="246" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix159" element="dmd_dot" state="0"> - <bounds x="250" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix160" element="dmd_dot" state="0"> - <bounds x="254" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix161" element="dmd_dot" state="0"> - <bounds x="258" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix162" element="dmd_dot" state="0"> - <bounds x="262" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix163" element="dmd_dot" state="0"> - <bounds x="266" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix164" element="dmd_dot" state="0"> - <bounds x="270" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix165" element="dmd_dot" state="0"> - <bounds x="274" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix166" element="dmd_dot" state="0"> - <bounds x="278" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix167" element="dmd_dot" state="0"> - <bounds x="282" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix168" element="dmd_dot" state="0"> - <bounds x="286" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix169" element="dmd_dot" state="0"> - <bounds x="290" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix170" element="dmd_dot" state="0"> - <bounds x="294" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix171" element="dmd_dot" state="0"> - <bounds x="298" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix172" element="dmd_dot" state="0"> - <bounds x="302" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix173" element="dmd_dot" state="0"> - <bounds x="306" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix174" element="dmd_dot" state="0"> - <bounds x="310" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix175" element="dmd_dot" state="0"> - <bounds x="314" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix176" element="dmd_dot" state="0"> - <bounds x="318" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix177" element="dmd_dot" state="0"> - <bounds x="322" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix178" element="dmd_dot" state="0"> - <bounds x="326" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix179" element="dmd_dot" state="0"> - <bounds x="330" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix180" element="dmd_dot" state="0"> - <bounds x="334" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix181" element="dmd_dot" state="0"> - <bounds x="338" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix182" element="dmd_dot" state="0"> - <bounds x="342" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix183" element="dmd_dot" state="0"> - <bounds x="346" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix184" element="dmd_dot" state="0"> - <bounds x="350" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix185" element="dmd_dot" state="0"> - <bounds x="354" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix186" element="dmd_dot" state="0"> - <bounds x="358" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix187" element="dmd_dot" state="0"> - <bounds x="362" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix188" element="dmd_dot" state="0"> - <bounds x="366" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix189" element="dmd_dot" state="0"> - <bounds x="370" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix190" element="dmd_dot" state="0"> - <bounds x="374" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix191" element="dmd_dot" state="0"> - <bounds x="378" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix192" element="dmd_dot" state="0"> - <bounds x="382" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix193" element="dmd_dot" state="0"> - <bounds x="386" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix194" element="dmd_dot" state="0"> - <bounds x="390" y="333" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix195" element="dmd_dot" state="0"> - <bounds x="134" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix196" element="dmd_dot" state="0"> - <bounds x="138" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix197" element="dmd_dot" state="0"> - <bounds x="142" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix198" element="dmd_dot" state="0"> - <bounds x="146" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix199" element="dmd_dot" state="0"> - <bounds x="150" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix200" element="dmd_dot" state="0"> - <bounds x="154" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix201" element="dmd_dot" state="0"> - <bounds x="158" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix202" element="dmd_dot" state="0"> - <bounds x="162" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix203" element="dmd_dot" state="0"> - <bounds x="166" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix204" element="dmd_dot" state="0"> - <bounds x="170" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix205" element="dmd_dot" state="0"> - <bounds x="174" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix206" element="dmd_dot" state="0"> - <bounds x="178" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix207" element="dmd_dot" state="0"> - <bounds x="182" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix208" element="dmd_dot" state="0"> - <bounds x="186" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix209" element="dmd_dot" state="0"> - <bounds x="190" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix210" element="dmd_dot" state="0"> - <bounds x="194" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix211" element="dmd_dot" state="0"> - <bounds x="198" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix212" element="dmd_dot" state="0"> - <bounds x="202" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix213" element="dmd_dot" state="0"> - <bounds x="206" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix214" element="dmd_dot" state="0"> - <bounds x="210" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix215" element="dmd_dot" state="0"> - <bounds x="214" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix216" element="dmd_dot" state="0"> - <bounds x="218" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix217" element="dmd_dot" state="0"> - <bounds x="222" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix218" element="dmd_dot" state="0"> - <bounds x="226" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix219" element="dmd_dot" state="0"> - <bounds x="230" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix220" element="dmd_dot" state="0"> - <bounds x="234" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix221" element="dmd_dot" state="0"> - <bounds x="238" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix222" element="dmd_dot" state="0"> - <bounds x="242" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix223" element="dmd_dot" state="0"> - <bounds x="246" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix224" element="dmd_dot" state="0"> - <bounds x="250" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix225" element="dmd_dot" state="0"> - <bounds x="254" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix226" element="dmd_dot" state="0"> - <bounds x="258" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix227" element="dmd_dot" state="0"> - <bounds x="262" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix228" element="dmd_dot" state="0"> - <bounds x="266" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix229" element="dmd_dot" state="0"> - <bounds x="270" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix230" element="dmd_dot" state="0"> - <bounds x="274" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix231" element="dmd_dot" state="0"> - <bounds x="278" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix232" element="dmd_dot" state="0"> - <bounds x="282" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix233" element="dmd_dot" state="0"> - <bounds x="286" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix234" element="dmd_dot" state="0"> - <bounds x="290" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix235" element="dmd_dot" state="0"> - <bounds x="294" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix236" element="dmd_dot" state="0"> - <bounds x="298" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix237" element="dmd_dot" state="0"> - <bounds x="302" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix238" element="dmd_dot" state="0"> - <bounds x="306" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix239" element="dmd_dot" state="0"> - <bounds x="310" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix240" element="dmd_dot" state="0"> - <bounds x="314" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix241" element="dmd_dot" state="0"> - <bounds x="318" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix242" element="dmd_dot" state="0"> - <bounds x="322" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix243" element="dmd_dot" state="0"> - <bounds x="326" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix244" element="dmd_dot" state="0"> - <bounds x="330" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix245" element="dmd_dot" state="0"> - <bounds x="334" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix246" element="dmd_dot" state="0"> - <bounds x="338" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix247" element="dmd_dot" state="0"> - <bounds x="342" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix248" element="dmd_dot" state="0"> - <bounds x="346" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix249" element="dmd_dot" state="0"> - <bounds x="350" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix250" element="dmd_dot" state="0"> - <bounds x="354" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix251" element="dmd_dot" state="0"> - <bounds x="358" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix252" element="dmd_dot" state="0"> - <bounds x="362" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix253" element="dmd_dot" state="0"> - <bounds x="366" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix254" element="dmd_dot" state="0"> - <bounds x="370" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix255" element="dmd_dot" state="0"> - <bounds x="374" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix256" element="dmd_dot" state="0"> - <bounds x="378" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix257" element="dmd_dot" state="0"> - <bounds x="382" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix258" element="dmd_dot" state="0"> - <bounds x="386" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix259" element="dmd_dot" state="0"> - <bounds x="390" y="337" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix260" element="dmd_dot" state="0"> - <bounds x="134" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix261" element="dmd_dot" state="0"> - <bounds x="138" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix262" element="dmd_dot" state="0"> - <bounds x="142" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix263" element="dmd_dot" state="0"> - <bounds x="146" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix264" element="dmd_dot" state="0"> - <bounds x="150" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix265" element="dmd_dot" state="0"> - <bounds x="154" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix266" element="dmd_dot" state="0"> - <bounds x="158" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix267" element="dmd_dot" state="0"> - <bounds x="162" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix268" element="dmd_dot" state="0"> - <bounds x="166" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix269" element="dmd_dot" state="0"> - <bounds x="170" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix270" element="dmd_dot" state="0"> - <bounds x="174" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix271" element="dmd_dot" state="0"> - <bounds x="178" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix272" element="dmd_dot" state="0"> - <bounds x="182" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix273" element="dmd_dot" state="0"> - <bounds x="186" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix274" element="dmd_dot" state="0"> - <bounds x="190" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix275" element="dmd_dot" state="0"> - <bounds x="194" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix276" element="dmd_dot" state="0"> - <bounds x="198" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix277" element="dmd_dot" state="0"> - <bounds x="202" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix278" element="dmd_dot" state="0"> - <bounds x="206" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix279" element="dmd_dot" state="0"> - <bounds x="210" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix280" element="dmd_dot" state="0"> - <bounds x="214" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix281" element="dmd_dot" state="0"> - <bounds x="218" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix282" element="dmd_dot" state="0"> - <bounds x="222" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix283" element="dmd_dot" state="0"> - <bounds x="226" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix284" element="dmd_dot" state="0"> - <bounds x="230" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix285" element="dmd_dot" state="0"> - <bounds x="234" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix286" element="dmd_dot" state="0"> - <bounds x="238" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix287" element="dmd_dot" state="0"> - <bounds x="242" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix288" element="dmd_dot" state="0"> - <bounds x="246" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix289" element="dmd_dot" state="0"> - <bounds x="250" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix290" element="dmd_dot" state="0"> - <bounds x="254" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix291" element="dmd_dot" state="0"> - <bounds x="258" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix292" element="dmd_dot" state="0"> - <bounds x="262" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix293" element="dmd_dot" state="0"> - <bounds x="266" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix294" element="dmd_dot" state="0"> - <bounds x="270" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix295" element="dmd_dot" state="0"> - <bounds x="274" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix296" element="dmd_dot" state="0"> - <bounds x="278" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix297" element="dmd_dot" state="0"> - <bounds x="282" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix298" element="dmd_dot" state="0"> - <bounds x="286" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix299" element="dmd_dot" state="0"> - <bounds x="290" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix300" element="dmd_dot" state="0"> - <bounds x="294" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix301" element="dmd_dot" state="0"> - <bounds x="298" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix302" element="dmd_dot" state="0"> - <bounds x="302" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix303" element="dmd_dot" state="0"> - <bounds x="306" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix304" element="dmd_dot" state="0"> - <bounds x="310" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix305" element="dmd_dot" state="0"> - <bounds x="314" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix306" element="dmd_dot" state="0"> - <bounds x="318" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix307" element="dmd_dot" state="0"> - <bounds x="322" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix308" element="dmd_dot" state="0"> - <bounds x="326" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix309" element="dmd_dot" state="0"> - <bounds x="330" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix310" element="dmd_dot" state="0"> - <bounds x="334" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix311" element="dmd_dot" state="0"> - <bounds x="338" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix312" element="dmd_dot" state="0"> - <bounds x="342" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix313" element="dmd_dot" state="0"> - <bounds x="346" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix314" element="dmd_dot" state="0"> - <bounds x="350" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix315" element="dmd_dot" state="0"> - <bounds x="354" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix316" element="dmd_dot" state="0"> - <bounds x="358" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix317" element="dmd_dot" state="0"> - <bounds x="362" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix318" element="dmd_dot" state="0"> - <bounds x="366" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix319" element="dmd_dot" state="0"> - <bounds x="370" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix320" element="dmd_dot" state="0"> - <bounds x="374" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix321" element="dmd_dot" state="0"> - <bounds x="378" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix322" element="dmd_dot" state="0"> - <bounds x="382" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix323" element="dmd_dot" state="0"> - <bounds x="386" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix324" element="dmd_dot" state="0"> - <bounds x="390" y="341" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix325" element="dmd_dot" state="0"> - <bounds x="134" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix326" element="dmd_dot" state="0"> - <bounds x="138" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix327" element="dmd_dot" state="0"> - <bounds x="142" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix328" element="dmd_dot" state="0"> - <bounds x="146" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix329" element="dmd_dot" state="0"> - <bounds x="150" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix330" element="dmd_dot" state="0"> - <bounds x="154" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix331" element="dmd_dot" state="0"> - <bounds x="158" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix332" element="dmd_dot" state="0"> - <bounds x="162" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix333" element="dmd_dot" state="0"> - <bounds x="166" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix334" element="dmd_dot" state="0"> - <bounds x="170" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix335" element="dmd_dot" state="0"> - <bounds x="174" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix336" element="dmd_dot" state="0"> - <bounds x="178" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix337" element="dmd_dot" state="0"> - <bounds x="182" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix338" element="dmd_dot" state="0"> - <bounds x="186" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix339" element="dmd_dot" state="0"> - <bounds x="190" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix340" element="dmd_dot" state="0"> - <bounds x="194" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix341" element="dmd_dot" state="0"> - <bounds x="198" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix342" element="dmd_dot" state="0"> - <bounds x="202" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix343" element="dmd_dot" state="0"> - <bounds x="206" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix344" element="dmd_dot" state="0"> - <bounds x="210" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix345" element="dmd_dot" state="0"> - <bounds x="214" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix346" element="dmd_dot" state="0"> - <bounds x="218" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix347" element="dmd_dot" state="0"> - <bounds x="222" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix348" element="dmd_dot" state="0"> - <bounds x="226" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix349" element="dmd_dot" state="0"> - <bounds x="230" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix350" element="dmd_dot" state="0"> - <bounds x="234" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix351" element="dmd_dot" state="0"> - <bounds x="238" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix352" element="dmd_dot" state="0"> - <bounds x="242" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix353" element="dmd_dot" state="0"> - <bounds x="246" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix354" element="dmd_dot" state="0"> - <bounds x="250" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix355" element="dmd_dot" state="0"> - <bounds x="254" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix356" element="dmd_dot" state="0"> - <bounds x="258" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix357" element="dmd_dot" state="0"> - <bounds x="262" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix358" element="dmd_dot" state="0"> - <bounds x="266" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix359" element="dmd_dot" state="0"> - <bounds x="270" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix360" element="dmd_dot" state="0"> - <bounds x="274" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix361" element="dmd_dot" state="0"> - <bounds x="278" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix362" element="dmd_dot" state="0"> - <bounds x="282" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix363" element="dmd_dot" state="0"> - <bounds x="286" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix364" element="dmd_dot" state="0"> - <bounds x="290" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix365" element="dmd_dot" state="0"> - <bounds x="294" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix366" element="dmd_dot" state="0"> - <bounds x="298" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix367" element="dmd_dot" state="0"> - <bounds x="302" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix368" element="dmd_dot" state="0"> - <bounds x="306" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix369" element="dmd_dot" state="0"> - <bounds x="310" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix370" element="dmd_dot" state="0"> - <bounds x="314" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix371" element="dmd_dot" state="0"> - <bounds x="318" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix372" element="dmd_dot" state="0"> - <bounds x="322" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix373" element="dmd_dot" state="0"> - <bounds x="326" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix374" element="dmd_dot" state="0"> - <bounds x="330" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix375" element="dmd_dot" state="0"> - <bounds x="334" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix376" element="dmd_dot" state="0"> - <bounds x="338" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix377" element="dmd_dot" state="0"> - <bounds x="342" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix378" element="dmd_dot" state="0"> - <bounds x="346" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix379" element="dmd_dot" state="0"> - <bounds x="350" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix380" element="dmd_dot" state="0"> - <bounds x="354" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix381" element="dmd_dot" state="0"> - <bounds x="358" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix382" element="dmd_dot" state="0"> - <bounds x="362" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix383" element="dmd_dot" state="0"> - <bounds x="366" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix384" element="dmd_dot" state="0"> - <bounds x="370" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix385" element="dmd_dot" state="0"> - <bounds x="374" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix386" element="dmd_dot" state="0"> - <bounds x="378" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix387" element="dmd_dot" state="0"> - <bounds x="382" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix388" element="dmd_dot" state="0"> - <bounds x="386" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix389" element="dmd_dot" state="0"> - <bounds x="390" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix390" element="dmd_dot" state="0"> - <bounds x="134" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix391" element="dmd_dot" state="0"> - <bounds x="138" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix392" element="dmd_dot" state="0"> - <bounds x="142" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix393" element="dmd_dot" state="0"> - <bounds x="146" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix394" element="dmd_dot" state="0"> - <bounds x="150" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix395" element="dmd_dot" state="0"> - <bounds x="154" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix396" element="dmd_dot" state="0"> - <bounds x="158" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix397" element="dmd_dot" state="0"> - <bounds x="162" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix398" element="dmd_dot" state="0"> - <bounds x="166" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix399" element="dmd_dot" state="0"> - <bounds x="170" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix400" element="dmd_dot" state="0"> - <bounds x="174" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix401" element="dmd_dot" state="0"> - <bounds x="178" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix402" element="dmd_dot" state="0"> - <bounds x="182" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix403" element="dmd_dot" state="0"> - <bounds x="186" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix404" element="dmd_dot" state="0"> - <bounds x="190" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix405" element="dmd_dot" state="0"> - <bounds x="194" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix406" element="dmd_dot" state="0"> - <bounds x="198" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix407" element="dmd_dot" state="0"> - <bounds x="202" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix408" element="dmd_dot" state="0"> - <bounds x="206" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix409" element="dmd_dot" state="0"> - <bounds x="210" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix410" element="dmd_dot" state="0"> - <bounds x="214" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix411" element="dmd_dot" state="0"> - <bounds x="218" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix412" element="dmd_dot" state="0"> - <bounds x="222" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix413" element="dmd_dot" state="0"> - <bounds x="226" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix414" element="dmd_dot" state="0"> - <bounds x="230" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix415" element="dmd_dot" state="0"> - <bounds x="234" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix416" element="dmd_dot" state="0"> - <bounds x="238" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix417" element="dmd_dot" state="0"> - <bounds x="242" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix418" element="dmd_dot" state="0"> - <bounds x="246" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix419" element="dmd_dot" state="0"> - <bounds x="250" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix420" element="dmd_dot" state="0"> - <bounds x="254" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix421" element="dmd_dot" state="0"> - <bounds x="258" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix422" element="dmd_dot" state="0"> - <bounds x="262" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix423" element="dmd_dot" state="0"> - <bounds x="266" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix424" element="dmd_dot" state="0"> - <bounds x="270" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix425" element="dmd_dot" state="0"> - <bounds x="274" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix426" element="dmd_dot" state="0"> - <bounds x="278" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix427" element="dmd_dot" state="0"> - <bounds x="282" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix428" element="dmd_dot" state="0"> - <bounds x="286" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix429" element="dmd_dot" state="0"> - <bounds x="290" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix430" element="dmd_dot" state="0"> - <bounds x="294" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix431" element="dmd_dot" state="0"> - <bounds x="298" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix432" element="dmd_dot" state="0"> - <bounds x="302" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix433" element="dmd_dot" state="0"> - <bounds x="306" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix434" element="dmd_dot" state="0"> - <bounds x="310" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix435" element="dmd_dot" state="0"> - <bounds x="314" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix436" element="dmd_dot" state="0"> - <bounds x="318" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix437" element="dmd_dot" state="0"> - <bounds x="322" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix438" element="dmd_dot" state="0"> - <bounds x="326" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix439" element="dmd_dot" state="0"> - <bounds x="330" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix440" element="dmd_dot" state="0"> - <bounds x="334" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix441" element="dmd_dot" state="0"> - <bounds x="338" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix442" element="dmd_dot" state="0"> - <bounds x="342" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix443" element="dmd_dot" state="0"> - <bounds x="346" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix444" element="dmd_dot" state="0"> - <bounds x="350" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix445" element="dmd_dot" state="0"> - <bounds x="354" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix446" element="dmd_dot" state="0"> - <bounds x="358" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix447" element="dmd_dot" state="0"> - <bounds x="362" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix448" element="dmd_dot" state="0"> - <bounds x="366" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix449" element="dmd_dot" state="0"> - <bounds x="370" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix450" element="dmd_dot" state="0"> - <bounds x="374" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix451" element="dmd_dot" state="0"> - <bounds x="378" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix452" element="dmd_dot" state="0"> - <bounds x="382" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix453" element="dmd_dot" state="0"> - <bounds x="386" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix454" element="dmd_dot" state="0"> - <bounds x="390" y="349" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix455" element="dmd_dot" state="0"> - <bounds x="134" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix456" element="dmd_dot" state="0"> - <bounds x="138" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix457" element="dmd_dot" state="0"> - <bounds x="142" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix458" element="dmd_dot" state="0"> - <bounds x="146" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix459" element="dmd_dot" state="0"> - <bounds x="150" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix460" element="dmd_dot" state="0"> - <bounds x="154" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix461" element="dmd_dot" state="0"> - <bounds x="158" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix462" element="dmd_dot" state="0"> - <bounds x="162" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix463" element="dmd_dot" state="0"> - <bounds x="166" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix464" element="dmd_dot" state="0"> - <bounds x="170" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix465" element="dmd_dot" state="0"> - <bounds x="174" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix466" element="dmd_dot" state="0"> - <bounds x="178" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix467" element="dmd_dot" state="0"> - <bounds x="182" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix468" element="dmd_dot" state="0"> - <bounds x="186" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix469" element="dmd_dot" state="0"> - <bounds x="190" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix470" element="dmd_dot" state="0"> - <bounds x="194" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix471" element="dmd_dot" state="0"> - <bounds x="198" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix472" element="dmd_dot" state="0"> - <bounds x="202" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix473" element="dmd_dot" state="0"> - <bounds x="206" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix474" element="dmd_dot" state="0"> - <bounds x="210" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix475" element="dmd_dot" state="0"> - <bounds x="214" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix476" element="dmd_dot" state="0"> - <bounds x="218" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix477" element="dmd_dot" state="0"> - <bounds x="222" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix478" element="dmd_dot" state="0"> - <bounds x="226" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix479" element="dmd_dot" state="0"> - <bounds x="230" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix480" element="dmd_dot" state="0"> - <bounds x="234" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix481" element="dmd_dot" state="0"> - <bounds x="238" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix482" element="dmd_dot" state="0"> - <bounds x="242" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix483" element="dmd_dot" state="0"> - <bounds x="246" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix484" element="dmd_dot" state="0"> - <bounds x="250" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix485" element="dmd_dot" state="0"> - <bounds x="254" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix486" element="dmd_dot" state="0"> - <bounds x="258" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix487" element="dmd_dot" state="0"> - <bounds x="262" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix488" element="dmd_dot" state="0"> - <bounds x="266" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix489" element="dmd_dot" state="0"> - <bounds x="270" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix490" element="dmd_dot" state="0"> - <bounds x="274" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix491" element="dmd_dot" state="0"> - <bounds x="278" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix492" element="dmd_dot" state="0"> - <bounds x="282" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix493" element="dmd_dot" state="0"> - <bounds x="286" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix494" element="dmd_dot" state="0"> - <bounds x="290" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix495" element="dmd_dot" state="0"> - <bounds x="294" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix496" element="dmd_dot" state="0"> - <bounds x="298" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix497" element="dmd_dot" state="0"> - <bounds x="302" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix498" element="dmd_dot" state="0"> - <bounds x="306" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix499" element="dmd_dot" state="0"> - <bounds x="310" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix500" element="dmd_dot" state="0"> - <bounds x="314" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix501" element="dmd_dot" state="0"> - <bounds x="318" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix502" element="dmd_dot" state="0"> - <bounds x="322" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix503" element="dmd_dot" state="0"> - <bounds x="326" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix504" element="dmd_dot" state="0"> - <bounds x="330" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix505" element="dmd_dot" state="0"> - <bounds x="334" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix506" element="dmd_dot" state="0"> - <bounds x="338" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix507" element="dmd_dot" state="0"> - <bounds x="342" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix508" element="dmd_dot" state="0"> - <bounds x="346" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix509" element="dmd_dot" state="0"> - <bounds x="350" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix510" element="dmd_dot" state="0"> - <bounds x="354" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix511" element="dmd_dot" state="0"> - <bounds x="358" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix512" element="dmd_dot" state="0"> - <bounds x="362" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix513" element="dmd_dot" state="0"> - <bounds x="366" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix514" element="dmd_dot" state="0"> - <bounds x="370" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix515" element="dmd_dot" state="0"> - <bounds x="374" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix516" element="dmd_dot" state="0"> - <bounds x="378" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix517" element="dmd_dot" state="0"> - <bounds x="382" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix518" element="dmd_dot" state="0"> - <bounds x="386" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix519" element="dmd_dot" state="0"> - <bounds x="390" y="353" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix520" element="dmd_dot" state="0"> - <bounds x="134" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix521" element="dmd_dot" state="0"> - <bounds x="138" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix522" element="dmd_dot" state="0"> - <bounds x="142" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix523" element="dmd_dot" state="0"> - <bounds x="146" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix524" element="dmd_dot" state="0"> - <bounds x="150" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix525" element="dmd_dot" state="0"> - <bounds x="154" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix526" element="dmd_dot" state="0"> - <bounds x="158" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix527" element="dmd_dot" state="0"> - <bounds x="162" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix528" element="dmd_dot" state="0"> - <bounds x="166" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix529" element="dmd_dot" state="0"> - <bounds x="170" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix530" element="dmd_dot" state="0"> - <bounds x="174" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix531" element="dmd_dot" state="0"> - <bounds x="178" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix532" element="dmd_dot" state="0"> - <bounds x="182" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix533" element="dmd_dot" state="0"> - <bounds x="186" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix534" element="dmd_dot" state="0"> - <bounds x="190" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix535" element="dmd_dot" state="0"> - <bounds x="194" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix536" element="dmd_dot" state="0"> - <bounds x="198" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix537" element="dmd_dot" state="0"> - <bounds x="202" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix538" element="dmd_dot" state="0"> - <bounds x="206" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix539" element="dmd_dot" state="0"> - <bounds x="210" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix540" element="dmd_dot" state="0"> - <bounds x="214" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix541" element="dmd_dot" state="0"> - <bounds x="218" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix542" element="dmd_dot" state="0"> - <bounds x="222" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix543" element="dmd_dot" state="0"> - <bounds x="226" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix544" element="dmd_dot" state="0"> - <bounds x="230" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix545" element="dmd_dot" state="0"> - <bounds x="234" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix546" element="dmd_dot" state="0"> - <bounds x="238" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix547" element="dmd_dot" state="0"> - <bounds x="242" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix548" element="dmd_dot" state="0"> - <bounds x="246" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix549" element="dmd_dot" state="0"> - <bounds x="250" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix550" element="dmd_dot" state="0"> - <bounds x="254" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix551" element="dmd_dot" state="0"> - <bounds x="258" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix552" element="dmd_dot" state="0"> - <bounds x="262" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix553" element="dmd_dot" state="0"> - <bounds x="266" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix554" element="dmd_dot" state="0"> - <bounds x="270" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix555" element="dmd_dot" state="0"> - <bounds x="274" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix556" element="dmd_dot" state="0"> - <bounds x="278" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix557" element="dmd_dot" state="0"> - <bounds x="282" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix558" element="dmd_dot" state="0"> - <bounds x="286" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix559" element="dmd_dot" state="0"> - <bounds x="290" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix560" element="dmd_dot" state="0"> - <bounds x="294" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix561" element="dmd_dot" state="0"> - <bounds x="298" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix562" element="dmd_dot" state="0"> - <bounds x="302" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix563" element="dmd_dot" state="0"> - <bounds x="306" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix564" element="dmd_dot" state="0"> - <bounds x="310" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix565" element="dmd_dot" state="0"> - <bounds x="314" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix566" element="dmd_dot" state="0"> - <bounds x="318" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix567" element="dmd_dot" state="0"> - <bounds x="322" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix568" element="dmd_dot" state="0"> - <bounds x="326" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix569" element="dmd_dot" state="0"> - <bounds x="330" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix570" element="dmd_dot" state="0"> - <bounds x="334" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix571" element="dmd_dot" state="0"> - <bounds x="338" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix572" element="dmd_dot" state="0"> - <bounds x="342" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix573" element="dmd_dot" state="0"> - <bounds x="346" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix574" element="dmd_dot" state="0"> - <bounds x="350" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix575" element="dmd_dot" state="0"> - <bounds x="354" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix576" element="dmd_dot" state="0"> - <bounds x="358" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix577" element="dmd_dot" state="0"> - <bounds x="362" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix578" element="dmd_dot" state="0"> - <bounds x="366" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix579" element="dmd_dot" state="0"> - <bounds x="370" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix580" element="dmd_dot" state="0"> - <bounds x="374" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix581" element="dmd_dot" state="0"> - <bounds x="378" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix582" element="dmd_dot" state="0"> - <bounds x="382" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix583" element="dmd_dot" state="0"> - <bounds x="386" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix584" element="dmd_dot" state="0"> - <bounds x="390" y="357" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix585" element="dmd_dot" state="0"> - <bounds x="134" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix586" element="dmd_dot" state="0"> - <bounds x="138" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix587" element="dmd_dot" state="0"> - <bounds x="142" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix588" element="dmd_dot" state="0"> - <bounds x="146" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix589" element="dmd_dot" state="0"> - <bounds x="150" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix590" element="dmd_dot" state="0"> - <bounds x="154" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix591" element="dmd_dot" state="0"> - <bounds x="158" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix592" element="dmd_dot" state="0"> - <bounds x="162" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix593" element="dmd_dot" state="0"> - <bounds x="166" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix594" element="dmd_dot" state="0"> - <bounds x="170" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix595" element="dmd_dot" state="0"> - <bounds x="174" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix596" element="dmd_dot" state="0"> - <bounds x="178" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix597" element="dmd_dot" state="0"> - <bounds x="182" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix598" element="dmd_dot" state="0"> - <bounds x="186" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix599" element="dmd_dot" state="0"> - <bounds x="190" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix600" element="dmd_dot" state="0"> - <bounds x="194" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix601" element="dmd_dot" state="0"> - <bounds x="198" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix602" element="dmd_dot" state="0"> - <bounds x="202" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix603" element="dmd_dot" state="0"> - <bounds x="206" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix604" element="dmd_dot" state="0"> - <bounds x="210" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix605" element="dmd_dot" state="0"> - <bounds x="214" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix606" element="dmd_dot" state="0"> - <bounds x="218" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix607" element="dmd_dot" state="0"> - <bounds x="222" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix608" element="dmd_dot" state="0"> - <bounds x="226" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix609" element="dmd_dot" state="0"> - <bounds x="230" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix610" element="dmd_dot" state="0"> - <bounds x="234" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix611" element="dmd_dot" state="0"> - <bounds x="238" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix612" element="dmd_dot" state="0"> - <bounds x="242" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix613" element="dmd_dot" state="0"> - <bounds x="246" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix614" element="dmd_dot" state="0"> - <bounds x="250" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix615" element="dmd_dot" state="0"> - <bounds x="254" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix616" element="dmd_dot" state="0"> - <bounds x="258" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix617" element="dmd_dot" state="0"> - <bounds x="262" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix618" element="dmd_dot" state="0"> - <bounds x="266" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix619" element="dmd_dot" state="0"> - <bounds x="270" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix620" element="dmd_dot" state="0"> - <bounds x="274" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix621" element="dmd_dot" state="0"> - <bounds x="278" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix622" element="dmd_dot" state="0"> - <bounds x="282" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix623" element="dmd_dot" state="0"> - <bounds x="286" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix624" element="dmd_dot" state="0"> - <bounds x="290" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix625" element="dmd_dot" state="0"> - <bounds x="294" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix626" element="dmd_dot" state="0"> - <bounds x="298" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix627" element="dmd_dot" state="0"> - <bounds x="302" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix628" element="dmd_dot" state="0"> - <bounds x="306" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix629" element="dmd_dot" state="0"> - <bounds x="310" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix630" element="dmd_dot" state="0"> - <bounds x="314" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix631" element="dmd_dot" state="0"> - <bounds x="318" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix632" element="dmd_dot" state="0"> - <bounds x="322" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix633" element="dmd_dot" state="0"> - <bounds x="326" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix634" element="dmd_dot" state="0"> - <bounds x="330" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix635" element="dmd_dot" state="0"> - <bounds x="334" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix636" element="dmd_dot" state="0"> - <bounds x="338" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix637" element="dmd_dot" state="0"> - <bounds x="342" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix638" element="dmd_dot" state="0"> - <bounds x="346" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix639" element="dmd_dot" state="0"> - <bounds x="350" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix640" element="dmd_dot" state="0"> - <bounds x="354" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix641" element="dmd_dot" state="0"> - <bounds x="358" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix642" element="dmd_dot" state="0"> - <bounds x="362" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix643" element="dmd_dot" state="0"> - <bounds x="366" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix644" element="dmd_dot" state="0"> - <bounds x="370" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix645" element="dmd_dot" state="0"> - <bounds x="374" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix646" element="dmd_dot" state="0"> - <bounds x="378" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix647" element="dmd_dot" state="0"> - <bounds x="382" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix648" element="dmd_dot" state="0"> - <bounds x="386" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix649" element="dmd_dot" state="0"> - <bounds x="390" y="361" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix650" element="dmd_dot" state="0"> - <bounds x="134" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix651" element="dmd_dot" state="0"> - <bounds x="138" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix652" element="dmd_dot" state="0"> - <bounds x="142" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix653" element="dmd_dot" state="0"> - <bounds x="146" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix654" element="dmd_dot" state="0"> - <bounds x="150" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix655" element="dmd_dot" state="0"> - <bounds x="154" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix656" element="dmd_dot" state="0"> - <bounds x="158" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix657" element="dmd_dot" state="0"> - <bounds x="162" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix658" element="dmd_dot" state="0"> - <bounds x="166" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix659" element="dmd_dot" state="0"> - <bounds x="170" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix660" element="dmd_dot" state="0"> - <bounds x="174" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix661" element="dmd_dot" state="0"> - <bounds x="178" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix662" element="dmd_dot" state="0"> - <bounds x="182" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix663" element="dmd_dot" state="0"> - <bounds x="186" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix664" element="dmd_dot" state="0"> - <bounds x="190" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix665" element="dmd_dot" state="0"> - <bounds x="194" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix666" element="dmd_dot" state="0"> - <bounds x="198" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix667" element="dmd_dot" state="0"> - <bounds x="202" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix668" element="dmd_dot" state="0"> - <bounds x="206" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix669" element="dmd_dot" state="0"> - <bounds x="210" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix670" element="dmd_dot" state="0"> - <bounds x="214" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix671" element="dmd_dot" state="0"> - <bounds x="218" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix672" element="dmd_dot" state="0"> - <bounds x="222" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix673" element="dmd_dot" state="0"> - <bounds x="226" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix674" element="dmd_dot" state="0"> - <bounds x="230" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix675" element="dmd_dot" state="0"> - <bounds x="234" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix676" element="dmd_dot" state="0"> - <bounds x="238" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix677" element="dmd_dot" state="0"> - <bounds x="242" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix678" element="dmd_dot" state="0"> - <bounds x="246" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix679" element="dmd_dot" state="0"> - <bounds x="250" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix680" element="dmd_dot" state="0"> - <bounds x="254" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix681" element="dmd_dot" state="0"> - <bounds x="258" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix682" element="dmd_dot" state="0"> - <bounds x="262" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix683" element="dmd_dot" state="0"> - <bounds x="266" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix684" element="dmd_dot" state="0"> - <bounds x="270" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix685" element="dmd_dot" state="0"> - <bounds x="274" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix686" element="dmd_dot" state="0"> - <bounds x="278" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix687" element="dmd_dot" state="0"> - <bounds x="282" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix688" element="dmd_dot" state="0"> - <bounds x="286" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix689" element="dmd_dot" state="0"> - <bounds x="290" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix690" element="dmd_dot" state="0"> - <bounds x="294" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix691" element="dmd_dot" state="0"> - <bounds x="298" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix692" element="dmd_dot" state="0"> - <bounds x="302" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix693" element="dmd_dot" state="0"> - <bounds x="306" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix694" element="dmd_dot" state="0"> - <bounds x="310" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix695" element="dmd_dot" state="0"> - <bounds x="314" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix696" element="dmd_dot" state="0"> - <bounds x="318" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix697" element="dmd_dot" state="0"> - <bounds x="322" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix698" element="dmd_dot" state="0"> - <bounds x="326" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix699" element="dmd_dot" state="0"> - <bounds x="330" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix700" element="dmd_dot" state="0"> - <bounds x="334" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix701" element="dmd_dot" state="0"> - <bounds x="338" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix702" element="dmd_dot" state="0"> - <bounds x="342" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix703" element="dmd_dot" state="0"> - <bounds x="346" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix704" element="dmd_dot" state="0"> - <bounds x="350" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix705" element="dmd_dot" state="0"> - <bounds x="354" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix706" element="dmd_dot" state="0"> - <bounds x="358" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix707" element="dmd_dot" state="0"> - <bounds x="362" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix708" element="dmd_dot" state="0"> - <bounds x="366" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix709" element="dmd_dot" state="0"> - <bounds x="370" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix710" element="dmd_dot" state="0"> - <bounds x="374" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix711" element="dmd_dot" state="0"> - <bounds x="378" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix712" element="dmd_dot" state="0"> - <bounds x="382" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix713" element="dmd_dot" state="0"> - <bounds x="386" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix714" element="dmd_dot" state="0"> - <bounds x="390" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix715" element="dmd_dot" state="0"> - <bounds x="134" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix716" element="dmd_dot" state="0"> - <bounds x="138" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix717" element="dmd_dot" state="0"> - <bounds x="142" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix718" element="dmd_dot" state="0"> - <bounds x="146" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix719" element="dmd_dot" state="0"> - <bounds x="150" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix720" element="dmd_dot" state="0"> - <bounds x="154" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix721" element="dmd_dot" state="0"> - <bounds x="158" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix722" element="dmd_dot" state="0"> - <bounds x="162" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix723" element="dmd_dot" state="0"> - <bounds x="166" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix724" element="dmd_dot" state="0"> - <bounds x="170" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix725" element="dmd_dot" state="0"> - <bounds x="174" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix726" element="dmd_dot" state="0"> - <bounds x="178" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix727" element="dmd_dot" state="0"> - <bounds x="182" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix728" element="dmd_dot" state="0"> - <bounds x="186" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix729" element="dmd_dot" state="0"> - <bounds x="190" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix730" element="dmd_dot" state="0"> - <bounds x="194" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix731" element="dmd_dot" state="0"> - <bounds x="198" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix732" element="dmd_dot" state="0"> - <bounds x="202" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix733" element="dmd_dot" state="0"> - <bounds x="206" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix734" element="dmd_dot" state="0"> - <bounds x="210" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix735" element="dmd_dot" state="0"> - <bounds x="214" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix736" element="dmd_dot" state="0"> - <bounds x="218" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix737" element="dmd_dot" state="0"> - <bounds x="222" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix738" element="dmd_dot" state="0"> - <bounds x="226" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix739" element="dmd_dot" state="0"> - <bounds x="230" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix740" element="dmd_dot" state="0"> - <bounds x="234" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix741" element="dmd_dot" state="0"> - <bounds x="238" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix742" element="dmd_dot" state="0"> - <bounds x="242" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix743" element="dmd_dot" state="0"> - <bounds x="246" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix744" element="dmd_dot" state="0"> - <bounds x="250" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix745" element="dmd_dot" state="0"> - <bounds x="254" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix746" element="dmd_dot" state="0"> - <bounds x="258" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix747" element="dmd_dot" state="0"> - <bounds x="262" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix748" element="dmd_dot" state="0"> - <bounds x="266" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix749" element="dmd_dot" state="0"> - <bounds x="270" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix750" element="dmd_dot" state="0"> - <bounds x="274" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix751" element="dmd_dot" state="0"> - <bounds x="278" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix752" element="dmd_dot" state="0"> - <bounds x="282" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix753" element="dmd_dot" state="0"> - <bounds x="286" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix754" element="dmd_dot" state="0"> - <bounds x="290" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix755" element="dmd_dot" state="0"> - <bounds x="294" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix756" element="dmd_dot" state="0"> - <bounds x="298" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix757" element="dmd_dot" state="0"> - <bounds x="302" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix758" element="dmd_dot" state="0"> - <bounds x="306" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix759" element="dmd_dot" state="0"> - <bounds x="310" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix760" element="dmd_dot" state="0"> - <bounds x="314" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix761" element="dmd_dot" state="0"> - <bounds x="318" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix762" element="dmd_dot" state="0"> - <bounds x="322" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix763" element="dmd_dot" state="0"> - <bounds x="326" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix764" element="dmd_dot" state="0"> - <bounds x="330" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix765" element="dmd_dot" state="0"> - <bounds x="334" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix766" element="dmd_dot" state="0"> - <bounds x="338" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix767" element="dmd_dot" state="0"> - <bounds x="342" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix768" element="dmd_dot" state="0"> - <bounds x="346" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix769" element="dmd_dot" state="0"> - <bounds x="350" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix770" element="dmd_dot" state="0"> - <bounds x="354" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix771" element="dmd_dot" state="0"> - <bounds x="358" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix772" element="dmd_dot" state="0"> - <bounds x="362" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix773" element="dmd_dot" state="0"> - <bounds x="366" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix774" element="dmd_dot" state="0"> - <bounds x="370" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix775" element="dmd_dot" state="0"> - <bounds x="374" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix776" element="dmd_dot" state="0"> - <bounds x="378" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix777" element="dmd_dot" state="0"> - <bounds x="382" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix778" element="dmd_dot" state="0"> - <bounds x="386" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix779" element="dmd_dot" state="0"> - <bounds x="390" y="369" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix780" element="dmd_dot" state="0"> - <bounds x="134" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix781" element="dmd_dot" state="0"> - <bounds x="138" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix782" element="dmd_dot" state="0"> - <bounds x="142" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix783" element="dmd_dot" state="0"> - <bounds x="146" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix784" element="dmd_dot" state="0"> - <bounds x="150" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix785" element="dmd_dot" state="0"> - <bounds x="154" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix786" element="dmd_dot" state="0"> - <bounds x="158" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix787" element="dmd_dot" state="0"> - <bounds x="162" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix788" element="dmd_dot" state="0"> - <bounds x="166" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix789" element="dmd_dot" state="0"> - <bounds x="170" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix790" element="dmd_dot" state="0"> - <bounds x="174" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix791" element="dmd_dot" state="0"> - <bounds x="178" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix792" element="dmd_dot" state="0"> - <bounds x="182" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix793" element="dmd_dot" state="0"> - <bounds x="186" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix794" element="dmd_dot" state="0"> - <bounds x="190" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix795" element="dmd_dot" state="0"> - <bounds x="194" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix796" element="dmd_dot" state="0"> - <bounds x="198" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix797" element="dmd_dot" state="0"> - <bounds x="202" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix798" element="dmd_dot" state="0"> - <bounds x="206" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix799" element="dmd_dot" state="0"> - <bounds x="210" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix800" element="dmd_dot" state="0"> - <bounds x="214" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix801" element="dmd_dot" state="0"> - <bounds x="218" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix802" element="dmd_dot" state="0"> - <bounds x="222" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix803" element="dmd_dot" state="0"> - <bounds x="226" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix804" element="dmd_dot" state="0"> - <bounds x="230" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix805" element="dmd_dot" state="0"> - <bounds x="234" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix806" element="dmd_dot" state="0"> - <bounds x="238" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix807" element="dmd_dot" state="0"> - <bounds x="242" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix808" element="dmd_dot" state="0"> - <bounds x="246" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix809" element="dmd_dot" state="0"> - <bounds x="250" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix810" element="dmd_dot" state="0"> - <bounds x="254" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix811" element="dmd_dot" state="0"> - <bounds x="258" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix812" element="dmd_dot" state="0"> - <bounds x="262" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix813" element="dmd_dot" state="0"> - <bounds x="266" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix814" element="dmd_dot" state="0"> - <bounds x="270" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix815" element="dmd_dot" state="0"> - <bounds x="274" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix816" element="dmd_dot" state="0"> - <bounds x="278" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix817" element="dmd_dot" state="0"> - <bounds x="282" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix818" element="dmd_dot" state="0"> - <bounds x="286" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix819" element="dmd_dot" state="0"> - <bounds x="290" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix820" element="dmd_dot" state="0"> - <bounds x="294" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix821" element="dmd_dot" state="0"> - <bounds x="298" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix822" element="dmd_dot" state="0"> - <bounds x="302" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix823" element="dmd_dot" state="0"> - <bounds x="306" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix824" element="dmd_dot" state="0"> - <bounds x="310" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix825" element="dmd_dot" state="0"> - <bounds x="314" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix826" element="dmd_dot" state="0"> - <bounds x="318" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix827" element="dmd_dot" state="0"> - <bounds x="322" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix828" element="dmd_dot" state="0"> - <bounds x="326" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix829" element="dmd_dot" state="0"> - <bounds x="330" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix830" element="dmd_dot" state="0"> - <bounds x="334" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix831" element="dmd_dot" state="0"> - <bounds x="338" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix832" element="dmd_dot" state="0"> - <bounds x="342" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix833" element="dmd_dot" state="0"> - <bounds x="346" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix834" element="dmd_dot" state="0"> - <bounds x="350" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix835" element="dmd_dot" state="0"> - <bounds x="354" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix836" element="dmd_dot" state="0"> - <bounds x="358" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix837" element="dmd_dot" state="0"> - <bounds x="362" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix838" element="dmd_dot" state="0"> - <bounds x="366" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix839" element="dmd_dot" state="0"> - <bounds x="370" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix840" element="dmd_dot" state="0"> - <bounds x="374" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix841" element="dmd_dot" state="0"> - <bounds x="378" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix842" element="dmd_dot" state="0"> - <bounds x="382" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix843" element="dmd_dot" state="0"> - <bounds x="386" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix844" element="dmd_dot" state="0"> - <bounds x="390" y="373" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix845" element="dmd_dot" state="0"> - <bounds x="134" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix846" element="dmd_dot" state="0"> - <bounds x="138" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix847" element="dmd_dot" state="0"> - <bounds x="142" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix848" element="dmd_dot" state="0"> - <bounds x="146" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix849" element="dmd_dot" state="0"> - <bounds x="150" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix850" element="dmd_dot" state="0"> - <bounds x="154" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix851" element="dmd_dot" state="0"> - <bounds x="158" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix852" element="dmd_dot" state="0"> - <bounds x="162" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix853" element="dmd_dot" state="0"> - <bounds x="166" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix854" element="dmd_dot" state="0"> - <bounds x="170" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix855" element="dmd_dot" state="0"> - <bounds x="174" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix856" element="dmd_dot" state="0"> - <bounds x="178" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix857" element="dmd_dot" state="0"> - <bounds x="182" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix858" element="dmd_dot" state="0"> - <bounds x="186" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix859" element="dmd_dot" state="0"> - <bounds x="190" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix860" element="dmd_dot" state="0"> - <bounds x="194" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix861" element="dmd_dot" state="0"> - <bounds x="198" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix862" element="dmd_dot" state="0"> - <bounds x="202" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix863" element="dmd_dot" state="0"> - <bounds x="206" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix864" element="dmd_dot" state="0"> - <bounds x="210" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix865" element="dmd_dot" state="0"> - <bounds x="214" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix866" element="dmd_dot" state="0"> - <bounds x="218" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix867" element="dmd_dot" state="0"> - <bounds x="222" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix868" element="dmd_dot" state="0"> - <bounds x="226" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix869" element="dmd_dot" state="0"> - <bounds x="230" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix870" element="dmd_dot" state="0"> - <bounds x="234" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix871" element="dmd_dot" state="0"> - <bounds x="238" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix872" element="dmd_dot" state="0"> - <bounds x="242" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix873" element="dmd_dot" state="0"> - <bounds x="246" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix874" element="dmd_dot" state="0"> - <bounds x="250" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix875" element="dmd_dot" state="0"> - <bounds x="254" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix876" element="dmd_dot" state="0"> - <bounds x="258" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix877" element="dmd_dot" state="0"> - <bounds x="262" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix878" element="dmd_dot" state="0"> - <bounds x="266" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix879" element="dmd_dot" state="0"> - <bounds x="270" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix880" element="dmd_dot" state="0"> - <bounds x="274" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix881" element="dmd_dot" state="0"> - <bounds x="278" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix882" element="dmd_dot" state="0"> - <bounds x="282" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix883" element="dmd_dot" state="0"> - <bounds x="286" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix884" element="dmd_dot" state="0"> - <bounds x="290" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix885" element="dmd_dot" state="0"> - <bounds x="294" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix886" element="dmd_dot" state="0"> - <bounds x="298" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix887" element="dmd_dot" state="0"> - <bounds x="302" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix888" element="dmd_dot" state="0"> - <bounds x="306" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix889" element="dmd_dot" state="0"> - <bounds x="310" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix890" element="dmd_dot" state="0"> - <bounds x="314" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix891" element="dmd_dot" state="0"> - <bounds x="318" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix892" element="dmd_dot" state="0"> - <bounds x="322" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix893" element="dmd_dot" state="0"> - <bounds x="326" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix894" element="dmd_dot" state="0"> - <bounds x="330" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix895" element="dmd_dot" state="0"> - <bounds x="334" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix896" element="dmd_dot" state="0"> - <bounds x="338" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix897" element="dmd_dot" state="0"> - <bounds x="342" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix898" element="dmd_dot" state="0"> - <bounds x="346" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix899" element="dmd_dot" state="0"> - <bounds x="350" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix900" element="dmd_dot" state="0"> - <bounds x="354" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix901" element="dmd_dot" state="0"> - <bounds x="358" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix902" element="dmd_dot" state="0"> - <bounds x="362" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix903" element="dmd_dot" state="0"> - <bounds x="366" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix904" element="dmd_dot" state="0"> - <bounds x="370" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix905" element="dmd_dot" state="0"> - <bounds x="374" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix906" element="dmd_dot" state="0"> - <bounds x="378" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix907" element="dmd_dot" state="0"> - <bounds x="382" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix908" element="dmd_dot" state="0"> - <bounds x="386" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix909" element="dmd_dot" state="0"> - <bounds x="390" y="377" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix910" element="dmd_dot" state="0"> - <bounds x="134" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix911" element="dmd_dot" state="0"> - <bounds x="138" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix912" element="dmd_dot" state="0"> - <bounds x="142" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix913" element="dmd_dot" state="0"> - <bounds x="146" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix914" element="dmd_dot" state="0"> - <bounds x="150" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix915" element="dmd_dot" state="0"> - <bounds x="154" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix916" element="dmd_dot" state="0"> - <bounds x="158" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix917" element="dmd_dot" state="0"> - <bounds x="162" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix918" element="dmd_dot" state="0"> - <bounds x="166" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix919" element="dmd_dot" state="0"> - <bounds x="170" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix920" element="dmd_dot" state="0"> - <bounds x="174" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix921" element="dmd_dot" state="0"> - <bounds x="178" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix922" element="dmd_dot" state="0"> - <bounds x="182" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix923" element="dmd_dot" state="0"> - <bounds x="186" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix924" element="dmd_dot" state="0"> - <bounds x="190" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix925" element="dmd_dot" state="0"> - <bounds x="194" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix926" element="dmd_dot" state="0"> - <bounds x="198" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix927" element="dmd_dot" state="0"> - <bounds x="202" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix928" element="dmd_dot" state="0"> - <bounds x="206" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix929" element="dmd_dot" state="0"> - <bounds x="210" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix930" element="dmd_dot" state="0"> - <bounds x="214" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix931" element="dmd_dot" state="0"> - <bounds x="218" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix932" element="dmd_dot" state="0"> - <bounds x="222" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix933" element="dmd_dot" state="0"> - <bounds x="226" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix934" element="dmd_dot" state="0"> - <bounds x="230" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix935" element="dmd_dot" state="0"> - <bounds x="234" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix936" element="dmd_dot" state="0"> - <bounds x="238" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix937" element="dmd_dot" state="0"> - <bounds x="242" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix938" element="dmd_dot" state="0"> - <bounds x="246" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix939" element="dmd_dot" state="0"> - <bounds x="250" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix940" element="dmd_dot" state="0"> - <bounds x="254" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix941" element="dmd_dot" state="0"> - <bounds x="258" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix942" element="dmd_dot" state="0"> - <bounds x="262" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix943" element="dmd_dot" state="0"> - <bounds x="266" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix944" element="dmd_dot" state="0"> - <bounds x="270" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix945" element="dmd_dot" state="0"> - <bounds x="274" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix946" element="dmd_dot" state="0"> - <bounds x="278" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix947" element="dmd_dot" state="0"> - <bounds x="282" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix948" element="dmd_dot" state="0"> - <bounds x="286" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix949" element="dmd_dot" state="0"> - <bounds x="290" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix950" element="dmd_dot" state="0"> - <bounds x="294" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix951" element="dmd_dot" state="0"> - <bounds x="298" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix952" element="dmd_dot" state="0"> - <bounds x="302" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix953" element="dmd_dot" state="0"> - <bounds x="306" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix954" element="dmd_dot" state="0"> - <bounds x="310" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix955" element="dmd_dot" state="0"> - <bounds x="314" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix956" element="dmd_dot" state="0"> - <bounds x="318" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix957" element="dmd_dot" state="0"> - <bounds x="322" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix958" element="dmd_dot" state="0"> - <bounds x="326" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix959" element="dmd_dot" state="0"> - <bounds x="330" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix960" element="dmd_dot" state="0"> - <bounds x="334" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix961" element="dmd_dot" state="0"> - <bounds x="338" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix962" element="dmd_dot" state="0"> - <bounds x="342" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix963" element="dmd_dot" state="0"> - <bounds x="346" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix964" element="dmd_dot" state="0"> - <bounds x="350" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix965" element="dmd_dot" state="0"> - <bounds x="354" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix966" element="dmd_dot" state="0"> - <bounds x="358" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix967" element="dmd_dot" state="0"> - <bounds x="362" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix968" element="dmd_dot" state="0"> - <bounds x="366" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix969" element="dmd_dot" state="0"> - <bounds x="370" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix970" element="dmd_dot" state="0"> - <bounds x="374" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix971" element="dmd_dot" state="0"> - <bounds x="378" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix972" element="dmd_dot" state="0"> - <bounds x="382" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix973" element="dmd_dot" state="0"> - <bounds x="386" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix974" element="dmd_dot" state="0"> - <bounds x="390" y="381" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix975" element="dmd_dot" state="0"> - <bounds x="134" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix976" element="dmd_dot" state="0"> - <bounds x="138" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix977" element="dmd_dot" state="0"> - <bounds x="142" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix978" element="dmd_dot" state="0"> - <bounds x="146" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix979" element="dmd_dot" state="0"> - <bounds x="150" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix980" element="dmd_dot" state="0"> - <bounds x="154" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix981" element="dmd_dot" state="0"> - <bounds x="158" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix982" element="dmd_dot" state="0"> - <bounds x="162" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix983" element="dmd_dot" state="0"> - <bounds x="166" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix984" element="dmd_dot" state="0"> - <bounds x="170" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix985" element="dmd_dot" state="0"> - <bounds x="174" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix986" element="dmd_dot" state="0"> - <bounds x="178" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix987" element="dmd_dot" state="0"> - <bounds x="182" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix988" element="dmd_dot" state="0"> - <bounds x="186" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix989" element="dmd_dot" state="0"> - <bounds x="190" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix990" element="dmd_dot" state="0"> - <bounds x="194" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix991" element="dmd_dot" state="0"> - <bounds x="198" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix992" element="dmd_dot" state="0"> - <bounds x="202" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix993" element="dmd_dot" state="0"> - <bounds x="206" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix994" element="dmd_dot" state="0"> - <bounds x="210" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix995" element="dmd_dot" state="0"> - <bounds x="214" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix996" element="dmd_dot" state="0"> - <bounds x="218" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix997" element="dmd_dot" state="0"> - <bounds x="222" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix998" element="dmd_dot" state="0"> - <bounds x="226" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix999" element="dmd_dot" state="0"> - <bounds x="230" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1000" element="dmd_dot" state="0"> - <bounds x="234" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1001" element="dmd_dot" state="0"> - <bounds x="238" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1002" element="dmd_dot" state="0"> - <bounds x="242" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1003" element="dmd_dot" state="0"> - <bounds x="246" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1004" element="dmd_dot" state="0"> - <bounds x="250" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1005" element="dmd_dot" state="0"> - <bounds x="254" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1006" element="dmd_dot" state="0"> - <bounds x="258" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1007" element="dmd_dot" state="0"> - <bounds x="262" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1008" element="dmd_dot" state="0"> - <bounds x="266" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1009" element="dmd_dot" state="0"> - <bounds x="270" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1010" element="dmd_dot" state="0"> - <bounds x="274" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1011" element="dmd_dot" state="0"> - <bounds x="278" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1012" element="dmd_dot" state="0"> - <bounds x="282" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1013" element="dmd_dot" state="0"> - <bounds x="286" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1014" element="dmd_dot" state="0"> - <bounds x="290" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1015" element="dmd_dot" state="0"> - <bounds x="294" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1016" element="dmd_dot" state="0"> - <bounds x="298" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1017" element="dmd_dot" state="0"> - <bounds x="302" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1018" element="dmd_dot" state="0"> - <bounds x="306" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1019" element="dmd_dot" state="0"> - <bounds x="310" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1020" element="dmd_dot" state="0"> - <bounds x="314" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1021" element="dmd_dot" state="0"> - <bounds x="318" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1022" element="dmd_dot" state="0"> - <bounds x="322" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1023" element="dmd_dot" state="0"> - <bounds x="326" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1024" element="dmd_dot" state="0"> - <bounds x="330" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1025" element="dmd_dot" state="0"> - <bounds x="334" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1026" element="dmd_dot" state="0"> - <bounds x="338" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1027" element="dmd_dot" state="0"> - <bounds x="342" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1028" element="dmd_dot" state="0"> - <bounds x="346" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1029" element="dmd_dot" state="0"> - <bounds x="350" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1030" element="dmd_dot" state="0"> - <bounds x="354" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1031" element="dmd_dot" state="0"> - <bounds x="358" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1032" element="dmd_dot" state="0"> - <bounds x="362" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1033" element="dmd_dot" state="0"> - <bounds x="366" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1034" element="dmd_dot" state="0"> - <bounds x="370" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1035" element="dmd_dot" state="0"> - <bounds x="374" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1036" element="dmd_dot" state="0"> - <bounds x="378" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1037" element="dmd_dot" state="0"> - <bounds x="382" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1038" element="dmd_dot" state="0"> - <bounds x="386" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1039" element="dmd_dot" state="0"> - <bounds x="390" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1040" element="dmd_dot" state="0"> - <bounds x="134" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1041" element="dmd_dot" state="0"> - <bounds x="138" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1042" element="dmd_dot" state="0"> - <bounds x="142" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1043" element="dmd_dot" state="0"> - <bounds x="146" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1044" element="dmd_dot" state="0"> - <bounds x="150" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1045" element="dmd_dot" state="0"> - <bounds x="154" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1046" element="dmd_dot" state="0"> - <bounds x="158" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1047" element="dmd_dot" state="0"> - <bounds x="162" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1048" element="dmd_dot" state="0"> - <bounds x="166" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1049" element="dmd_dot" state="0"> - <bounds x="170" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1050" element="dmd_dot" state="0"> - <bounds x="174" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1051" element="dmd_dot" state="0"> - <bounds x="178" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1052" element="dmd_dot" state="0"> - <bounds x="182" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1053" element="dmd_dot" state="0"> - <bounds x="186" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1054" element="dmd_dot" state="0"> - <bounds x="190" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1055" element="dmd_dot" state="0"> - <bounds x="194" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1056" element="dmd_dot" state="0"> - <bounds x="198" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1057" element="dmd_dot" state="0"> - <bounds x="202" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1058" element="dmd_dot" state="0"> - <bounds x="206" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1059" element="dmd_dot" state="0"> - <bounds x="210" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1060" element="dmd_dot" state="0"> - <bounds x="214" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1061" element="dmd_dot" state="0"> - <bounds x="218" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1062" element="dmd_dot" state="0"> - <bounds x="222" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1063" element="dmd_dot" state="0"> - <bounds x="226" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1064" element="dmd_dot" state="0"> - <bounds x="230" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1065" element="dmd_dot" state="0"> - <bounds x="234" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1066" element="dmd_dot" state="0"> - <bounds x="238" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1067" element="dmd_dot" state="0"> - <bounds x="242" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1068" element="dmd_dot" state="0"> - <bounds x="246" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1069" element="dmd_dot" state="0"> - <bounds x="250" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1070" element="dmd_dot" state="0"> - <bounds x="254" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1071" element="dmd_dot" state="0"> - <bounds x="258" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1072" element="dmd_dot" state="0"> - <bounds x="262" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1073" element="dmd_dot" state="0"> - <bounds x="266" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1074" element="dmd_dot" state="0"> - <bounds x="270" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1075" element="dmd_dot" state="0"> - <bounds x="274" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1076" element="dmd_dot" state="0"> - <bounds x="278" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1077" element="dmd_dot" state="0"> - <bounds x="282" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1078" element="dmd_dot" state="0"> - <bounds x="286" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1079" element="dmd_dot" state="0"> - <bounds x="290" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1080" element="dmd_dot" state="0"> - <bounds x="294" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1081" element="dmd_dot" state="0"> - <bounds x="298" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1082" element="dmd_dot" state="0"> - <bounds x="302" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1083" element="dmd_dot" state="0"> - <bounds x="306" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1084" element="dmd_dot" state="0"> - <bounds x="310" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1085" element="dmd_dot" state="0"> - <bounds x="314" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1086" element="dmd_dot" state="0"> - <bounds x="318" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1087" element="dmd_dot" state="0"> - <bounds x="322" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1088" element="dmd_dot" state="0"> - <bounds x="326" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1089" element="dmd_dot" state="0"> - <bounds x="330" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1090" element="dmd_dot" state="0"> - <bounds x="334" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1091" element="dmd_dot" state="0"> - <bounds x="338" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1092" element="dmd_dot" state="0"> - <bounds x="342" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1093" element="dmd_dot" state="0"> - <bounds x="346" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1094" element="dmd_dot" state="0"> - <bounds x="350" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1095" element="dmd_dot" state="0"> - <bounds x="354" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1096" element="dmd_dot" state="0"> - <bounds x="358" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1097" element="dmd_dot" state="0"> - <bounds x="362" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1098" element="dmd_dot" state="0"> - <bounds x="366" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1099" element="dmd_dot" state="0"> - <bounds x="370" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1100" element="dmd_dot" state="0"> - <bounds x="374" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1101" element="dmd_dot" state="0"> - <bounds x="378" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1102" element="dmd_dot" state="0"> - <bounds x="382" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1103" element="dmd_dot" state="0"> - <bounds x="386" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1104" element="dmd_dot" state="0"> - <bounds x="390" y="389" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1105" element="dmd_dot" state="0"> - <bounds x="134" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1106" element="dmd_dot" state="0"> - <bounds x="138" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1107" element="dmd_dot" state="0"> - <bounds x="142" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1108" element="dmd_dot" state="0"> - <bounds x="146" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1109" element="dmd_dot" state="0"> - <bounds x="150" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1110" element="dmd_dot" state="0"> - <bounds x="154" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1111" element="dmd_dot" state="0"> - <bounds x="158" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1112" element="dmd_dot" state="0"> - <bounds x="162" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1113" element="dmd_dot" state="0"> - <bounds x="166" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1114" element="dmd_dot" state="0"> - <bounds x="170" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1115" element="dmd_dot" state="0"> - <bounds x="174" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1116" element="dmd_dot" state="0"> - <bounds x="178" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1117" element="dmd_dot" state="0"> - <bounds x="182" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1118" element="dmd_dot" state="0"> - <bounds x="186" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1119" element="dmd_dot" state="0"> - <bounds x="190" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1120" element="dmd_dot" state="0"> - <bounds x="194" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1121" element="dmd_dot" state="0"> - <bounds x="198" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1122" element="dmd_dot" state="0"> - <bounds x="202" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1123" element="dmd_dot" state="0"> - <bounds x="206" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1124" element="dmd_dot" state="0"> - <bounds x="210" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1125" element="dmd_dot" state="0"> - <bounds x="214" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1126" element="dmd_dot" state="0"> - <bounds x="218" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1127" element="dmd_dot" state="0"> - <bounds x="222" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1128" element="dmd_dot" state="0"> - <bounds x="226" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1129" element="dmd_dot" state="0"> - <bounds x="230" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1130" element="dmd_dot" state="0"> - <bounds x="234" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1131" element="dmd_dot" state="0"> - <bounds x="238" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1132" element="dmd_dot" state="0"> - <bounds x="242" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1133" element="dmd_dot" state="0"> - <bounds x="246" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1134" element="dmd_dot" state="0"> - <bounds x="250" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1135" element="dmd_dot" state="0"> - <bounds x="254" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1136" element="dmd_dot" state="0"> - <bounds x="258" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1137" element="dmd_dot" state="0"> - <bounds x="262" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1138" element="dmd_dot" state="0"> - <bounds x="266" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1139" element="dmd_dot" state="0"> - <bounds x="270" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1140" element="dmd_dot" state="0"> - <bounds x="274" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1141" element="dmd_dot" state="0"> - <bounds x="278" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1142" element="dmd_dot" state="0"> - <bounds x="282" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1143" element="dmd_dot" state="0"> - <bounds x="286" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1144" element="dmd_dot" state="0"> - <bounds x="290" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1145" element="dmd_dot" state="0"> - <bounds x="294" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1146" element="dmd_dot" state="0"> - <bounds x="298" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1147" element="dmd_dot" state="0"> - <bounds x="302" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1148" element="dmd_dot" state="0"> - <bounds x="306" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1149" element="dmd_dot" state="0"> - <bounds x="310" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1150" element="dmd_dot" state="0"> - <bounds x="314" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1151" element="dmd_dot" state="0"> - <bounds x="318" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1152" element="dmd_dot" state="0"> - <bounds x="322" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1153" element="dmd_dot" state="0"> - <bounds x="326" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1154" element="dmd_dot" state="0"> - <bounds x="330" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1155" element="dmd_dot" state="0"> - <bounds x="334" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1156" element="dmd_dot" state="0"> - <bounds x="338" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1157" element="dmd_dot" state="0"> - <bounds x="342" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1158" element="dmd_dot" state="0"> - <bounds x="346" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1159" element="dmd_dot" state="0"> - <bounds x="350" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1160" element="dmd_dot" state="0"> - <bounds x="354" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1161" element="dmd_dot" state="0"> - <bounds x="358" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1162" element="dmd_dot" state="0"> - <bounds x="362" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1163" element="dmd_dot" state="0"> - <bounds x="366" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1164" element="dmd_dot" state="0"> - <bounds x="370" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1165" element="dmd_dot" state="0"> - <bounds x="374" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1166" element="dmd_dot" state="0"> - <bounds x="378" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1167" element="dmd_dot" state="0"> - <bounds x="382" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1168" element="dmd_dot" state="0"> - <bounds x="386" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1169" element="dmd_dot" state="0"> - <bounds x="390" y="393" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1170" element="dmd_dot" state="0"> - <bounds x="134" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1171" element="dmd_dot" state="0"> - <bounds x="138" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1172" element="dmd_dot" state="0"> - <bounds x="142" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1173" element="dmd_dot" state="0"> - <bounds x="146" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1174" element="dmd_dot" state="0"> - <bounds x="150" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1175" element="dmd_dot" state="0"> - <bounds x="154" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1176" element="dmd_dot" state="0"> - <bounds x="158" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1177" element="dmd_dot" state="0"> - <bounds x="162" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1178" element="dmd_dot" state="0"> - <bounds x="166" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1179" element="dmd_dot" state="0"> - <bounds x="170" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1180" element="dmd_dot" state="0"> - <bounds x="174" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1181" element="dmd_dot" state="0"> - <bounds x="178" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1182" element="dmd_dot" state="0"> - <bounds x="182" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1183" element="dmd_dot" state="0"> - <bounds x="186" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1184" element="dmd_dot" state="0"> - <bounds x="190" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1185" element="dmd_dot" state="0"> - <bounds x="194" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1186" element="dmd_dot" state="0"> - <bounds x="198" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1187" element="dmd_dot" state="0"> - <bounds x="202" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1188" element="dmd_dot" state="0"> - <bounds x="206" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1189" element="dmd_dot" state="0"> - <bounds x="210" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1190" element="dmd_dot" state="0"> - <bounds x="214" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1191" element="dmd_dot" state="0"> - <bounds x="218" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1192" element="dmd_dot" state="0"> - <bounds x="222" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1193" element="dmd_dot" state="0"> - <bounds x="226" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1194" element="dmd_dot" state="0"> - <bounds x="230" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1195" element="dmd_dot" state="0"> - <bounds x="234" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1196" element="dmd_dot" state="0"> - <bounds x="238" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1197" element="dmd_dot" state="0"> - <bounds x="242" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1198" element="dmd_dot" state="0"> - <bounds x="246" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1199" element="dmd_dot" state="0"> - <bounds x="250" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1200" element="dmd_dot" state="0"> - <bounds x="254" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1201" element="dmd_dot" state="0"> - <bounds x="258" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1202" element="dmd_dot" state="0"> - <bounds x="262" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1203" element="dmd_dot" state="0"> - <bounds x="266" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1204" element="dmd_dot" state="0"> - <bounds x="270" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1205" element="dmd_dot" state="0"> - <bounds x="274" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1206" element="dmd_dot" state="0"> - <bounds x="278" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1207" element="dmd_dot" state="0"> - <bounds x="282" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1208" element="dmd_dot" state="0"> - <bounds x="286" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1209" element="dmd_dot" state="0"> - <bounds x="290" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1210" element="dmd_dot" state="0"> - <bounds x="294" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1211" element="dmd_dot" state="0"> - <bounds x="298" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1212" element="dmd_dot" state="0"> - <bounds x="302" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1213" element="dmd_dot" state="0"> - <bounds x="306" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1214" element="dmd_dot" state="0"> - <bounds x="310" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1215" element="dmd_dot" state="0"> - <bounds x="314" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1216" element="dmd_dot" state="0"> - <bounds x="318" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1217" element="dmd_dot" state="0"> - <bounds x="322" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1218" element="dmd_dot" state="0"> - <bounds x="326" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1219" element="dmd_dot" state="0"> - <bounds x="330" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1220" element="dmd_dot" state="0"> - <bounds x="334" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1221" element="dmd_dot" state="0"> - <bounds x="338" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1222" element="dmd_dot" state="0"> - <bounds x="342" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1223" element="dmd_dot" state="0"> - <bounds x="346" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1224" element="dmd_dot" state="0"> - <bounds x="350" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1225" element="dmd_dot" state="0"> - <bounds x="354" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1226" element="dmd_dot" state="0"> - <bounds x="358" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1227" element="dmd_dot" state="0"> - <bounds x="362" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1228" element="dmd_dot" state="0"> - <bounds x="366" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1229" element="dmd_dot" state="0"> - <bounds x="370" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1230" element="dmd_dot" state="0"> - <bounds x="374" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1231" element="dmd_dot" state="0"> - <bounds x="378" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1232" element="dmd_dot" state="0"> - <bounds x="382" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1233" element="dmd_dot" state="0"> - <bounds x="386" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1234" element="dmd_dot" state="0"> - <bounds x="390" y="397" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1235" element="dmd_dot" state="0"> - <bounds x="134" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1236" element="dmd_dot" state="0"> - <bounds x="138" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1237" element="dmd_dot" state="0"> - <bounds x="142" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1238" element="dmd_dot" state="0"> - <bounds x="146" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1239" element="dmd_dot" state="0"> - <bounds x="150" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1240" element="dmd_dot" state="0"> - <bounds x="154" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1241" element="dmd_dot" state="0"> - <bounds x="158" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1242" element="dmd_dot" state="0"> - <bounds x="162" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1243" element="dmd_dot" state="0"> - <bounds x="166" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1244" element="dmd_dot" state="0"> - <bounds x="170" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1245" element="dmd_dot" state="0"> - <bounds x="174" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1246" element="dmd_dot" state="0"> - <bounds x="178" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1247" element="dmd_dot" state="0"> - <bounds x="182" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1248" element="dmd_dot" state="0"> - <bounds x="186" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1249" element="dmd_dot" state="0"> - <bounds x="190" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1250" element="dmd_dot" state="0"> - <bounds x="194" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1251" element="dmd_dot" state="0"> - <bounds x="198" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1252" element="dmd_dot" state="0"> - <bounds x="202" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1253" element="dmd_dot" state="0"> - <bounds x="206" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1254" element="dmd_dot" state="0"> - <bounds x="210" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1255" element="dmd_dot" state="0"> - <bounds x="214" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1256" element="dmd_dot" state="0"> - <bounds x="218" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1257" element="dmd_dot" state="0"> - <bounds x="222" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1258" element="dmd_dot" state="0"> - <bounds x="226" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1259" element="dmd_dot" state="0"> - <bounds x="230" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1260" element="dmd_dot" state="0"> - <bounds x="234" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1261" element="dmd_dot" state="0"> - <bounds x="238" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1262" element="dmd_dot" state="0"> - <bounds x="242" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1263" element="dmd_dot" state="0"> - <bounds x="246" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1264" element="dmd_dot" state="0"> - <bounds x="250" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1265" element="dmd_dot" state="0"> - <bounds x="254" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1266" element="dmd_dot" state="0"> - <bounds x="258" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1267" element="dmd_dot" state="0"> - <bounds x="262" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1268" element="dmd_dot" state="0"> - <bounds x="266" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1269" element="dmd_dot" state="0"> - <bounds x="270" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1270" element="dmd_dot" state="0"> - <bounds x="274" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1271" element="dmd_dot" state="0"> - <bounds x="278" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1272" element="dmd_dot" state="0"> - <bounds x="282" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1273" element="dmd_dot" state="0"> - <bounds x="286" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1274" element="dmd_dot" state="0"> - <bounds x="290" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1275" element="dmd_dot" state="0"> - <bounds x="294" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1276" element="dmd_dot" state="0"> - <bounds x="298" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1277" element="dmd_dot" state="0"> - <bounds x="302" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1278" element="dmd_dot" state="0"> - <bounds x="306" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1279" element="dmd_dot" state="0"> - <bounds x="310" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1280" element="dmd_dot" state="0"> - <bounds x="314" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1281" element="dmd_dot" state="0"> - <bounds x="318" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1282" element="dmd_dot" state="0"> - <bounds x="322" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1283" element="dmd_dot" state="0"> - <bounds x="326" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1284" element="dmd_dot" state="0"> - <bounds x="330" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1285" element="dmd_dot" state="0"> - <bounds x="334" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1286" element="dmd_dot" state="0"> - <bounds x="338" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1287" element="dmd_dot" state="0"> - <bounds x="342" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1288" element="dmd_dot" state="0"> - <bounds x="346" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1289" element="dmd_dot" state="0"> - <bounds x="350" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1290" element="dmd_dot" state="0"> - <bounds x="354" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1291" element="dmd_dot" state="0"> - <bounds x="358" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1292" element="dmd_dot" state="0"> - <bounds x="362" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1293" element="dmd_dot" state="0"> - <bounds x="366" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1294" element="dmd_dot" state="0"> - <bounds x="370" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1295" element="dmd_dot" state="0"> - <bounds x="374" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1296" element="dmd_dot" state="0"> - <bounds x="378" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1297" element="dmd_dot" state="0"> - <bounds x="382" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1298" element="dmd_dot" state="0"> - <bounds x="386" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1299" element="dmd_dot" state="0"> - <bounds x="390" y="401" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1300" element="dmd_dot" state="0"> - <bounds x="134" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1301" element="dmd_dot" state="0"> - <bounds x="138" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1302" element="dmd_dot" state="0"> - <bounds x="142" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1303" element="dmd_dot" state="0"> - <bounds x="146" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1304" element="dmd_dot" state="0"> - <bounds x="150" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1305" element="dmd_dot" state="0"> - <bounds x="154" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1306" element="dmd_dot" state="0"> - <bounds x="158" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1307" element="dmd_dot" state="0"> - <bounds x="162" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1308" element="dmd_dot" state="0"> - <bounds x="166" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1309" element="dmd_dot" state="0"> - <bounds x="170" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1310" element="dmd_dot" state="0"> - <bounds x="174" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1311" element="dmd_dot" state="0"> - <bounds x="178" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1312" element="dmd_dot" state="0"> - <bounds x="182" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1313" element="dmd_dot" state="0"> - <bounds x="186" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1314" element="dmd_dot" state="0"> - <bounds x="190" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1315" element="dmd_dot" state="0"> - <bounds x="194" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1316" element="dmd_dot" state="0"> - <bounds x="198" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1317" element="dmd_dot" state="0"> - <bounds x="202" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1318" element="dmd_dot" state="0"> - <bounds x="206" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1319" element="dmd_dot" state="0"> - <bounds x="210" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1320" element="dmd_dot" state="0"> - <bounds x="214" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1321" element="dmd_dot" state="0"> - <bounds x="218" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1322" element="dmd_dot" state="0"> - <bounds x="222" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1323" element="dmd_dot" state="0"> - <bounds x="226" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1324" element="dmd_dot" state="0"> - <bounds x="230" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1325" element="dmd_dot" state="0"> - <bounds x="234" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1326" element="dmd_dot" state="0"> - <bounds x="238" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1327" element="dmd_dot" state="0"> - <bounds x="242" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1328" element="dmd_dot" state="0"> - <bounds x="246" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1329" element="dmd_dot" state="0"> - <bounds x="250" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1330" element="dmd_dot" state="0"> - <bounds x="254" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1331" element="dmd_dot" state="0"> - <bounds x="258" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1332" element="dmd_dot" state="0"> - <bounds x="262" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1333" element="dmd_dot" state="0"> - <bounds x="266" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1334" element="dmd_dot" state="0"> - <bounds x="270" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1335" element="dmd_dot" state="0"> - <bounds x="274" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1336" element="dmd_dot" state="0"> - <bounds x="278" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1337" element="dmd_dot" state="0"> - <bounds x="282" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1338" element="dmd_dot" state="0"> - <bounds x="286" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1339" element="dmd_dot" state="0"> - <bounds x="290" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1340" element="dmd_dot" state="0"> - <bounds x="294" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1341" element="dmd_dot" state="0"> - <bounds x="298" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1342" element="dmd_dot" state="0"> - <bounds x="302" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1343" element="dmd_dot" state="0"> - <bounds x="306" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1344" element="dmd_dot" state="0"> - <bounds x="310" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1345" element="dmd_dot" state="0"> - <bounds x="314" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1346" element="dmd_dot" state="0"> - <bounds x="318" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1347" element="dmd_dot" state="0"> - <bounds x="322" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1348" element="dmd_dot" state="0"> - <bounds x="326" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1349" element="dmd_dot" state="0"> - <bounds x="330" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1350" element="dmd_dot" state="0"> - <bounds x="334" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1351" element="dmd_dot" state="0"> - <bounds x="338" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1352" element="dmd_dot" state="0"> - <bounds x="342" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1353" element="dmd_dot" state="0"> - <bounds x="346" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1354" element="dmd_dot" state="0"> - <bounds x="350" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1355" element="dmd_dot" state="0"> - <bounds x="354" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1356" element="dmd_dot" state="0"> - <bounds x="358" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1357" element="dmd_dot" state="0"> - <bounds x="362" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1358" element="dmd_dot" state="0"> - <bounds x="366" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1359" element="dmd_dot" state="0"> - <bounds x="370" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1360" element="dmd_dot" state="0"> - <bounds x="374" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1361" element="dmd_dot" state="0"> - <bounds x="378" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1362" element="dmd_dot" state="0"> - <bounds x="382" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1363" element="dmd_dot" state="0"> - <bounds x="386" y="405" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1364" element="dmd_dot" state="0"> - <bounds x="390" y="405" width="2" height="2"> - </bounds> - </backdrop> + + <!-- The DMD --> + <screen index="0"> + <bounds left="134" top="325" right="396" bottom="421" /> + </screen> + <backdrop name="label10" element="label_10"> <bounds x="12" y="162" width="32" height="19"> </bounds> diff --git a/src/mame/layout/sc2town2.lay b/src/mame/layout/sc2town2.lay index 16572efed5d..e0c457c8ccf 100644 --- a/src/mame/layout/sc2town2.lay +++ b/src/mame/layout/sc2town2.lay @@ -4022,22 +4022,7 @@ </color> </led7seg> </element> - <element name="dmd_dot" defstate="0"> - <rect state="1"> - <color red="1.0" green="0.5" blue="0.0"> - </color> - </rect> - <rect state="0"> - <color red="0.4" green="0.2" blue="0.0"> - </color> - </rect> - </element> - <element name="dmd_background"> - <rect> - <color red="0.0" green="0.0" blue="0.0"> - </color> - </rect> - </element> + <element name="reel_lamp_layer_0" defstate="0"> <rect> <color red="0.40" green="0.40" blue="0.40"> @@ -7710,5470 +7695,12 @@ <bounds x="696" y="11" width="46" height="12"> </bounds> </backdrop> - <backdrop element="dmd_background"> - <bounds x="10" y="285" width="327" height="107"> - </bounds> - </backdrop> - <backdrop name="dotmatrix0" element="dmd_dot" state="0"> - <bounds x="10" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1" element="dmd_dot" state="0"> - <bounds x="15" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix2" element="dmd_dot" state="0"> - <bounds x="20" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix3" element="dmd_dot" state="0"> - <bounds x="25" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix4" element="dmd_dot" state="0"> - <bounds x="30" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix5" element="dmd_dot" state="0"> - <bounds x="35" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix6" element="dmd_dot" state="0"> - <bounds x="40" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix7" element="dmd_dot" state="0"> - <bounds x="45" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix8" element="dmd_dot" state="0"> - <bounds x="50" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix9" element="dmd_dot" state="0"> - <bounds x="55" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix10" element="dmd_dot" state="0"> - <bounds x="60" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix11" element="dmd_dot" state="0"> - <bounds x="65" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix12" element="dmd_dot" state="0"> - <bounds x="70" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix13" element="dmd_dot" state="0"> - <bounds x="75" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix14" element="dmd_dot" state="0"> - <bounds x="80" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix15" element="dmd_dot" state="0"> - <bounds x="85" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix16" element="dmd_dot" state="0"> - <bounds x="90" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix17" element="dmd_dot" state="0"> - <bounds x="95" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix18" element="dmd_dot" state="0"> - <bounds x="100" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix19" element="dmd_dot" state="0"> - <bounds x="105" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix20" element="dmd_dot" state="0"> - <bounds x="110" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix21" element="dmd_dot" state="0"> - <bounds x="115" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix22" element="dmd_dot" state="0"> - <bounds x="120" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix23" element="dmd_dot" state="0"> - <bounds x="125" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix24" element="dmd_dot" state="0"> - <bounds x="130" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix25" element="dmd_dot" state="0"> - <bounds x="135" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix26" element="dmd_dot" state="0"> - <bounds x="140" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix27" element="dmd_dot" state="0"> - <bounds x="145" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix28" element="dmd_dot" state="0"> - <bounds x="150" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix29" element="dmd_dot" state="0"> - <bounds x="155" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix30" element="dmd_dot" state="0"> - <bounds x="160" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix31" element="dmd_dot" state="0"> - <bounds x="165" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix32" element="dmd_dot" state="0"> - <bounds x="170" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix33" element="dmd_dot" state="0"> - <bounds x="175" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix34" element="dmd_dot" state="0"> - <bounds x="180" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix35" element="dmd_dot" state="0"> - <bounds x="185" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix36" element="dmd_dot" state="0"> - <bounds x="190" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix37" element="dmd_dot" state="0"> - <bounds x="195" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix38" element="dmd_dot" state="0"> - <bounds x="200" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix39" element="dmd_dot" state="0"> - <bounds x="205" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix40" element="dmd_dot" state="0"> - <bounds x="210" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix41" element="dmd_dot" state="0"> - <bounds x="215" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix42" element="dmd_dot" state="0"> - <bounds x="220" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix43" element="dmd_dot" state="0"> - <bounds x="225" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix44" element="dmd_dot" state="0"> - <bounds x="230" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix45" element="dmd_dot" state="0"> - <bounds x="235" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix46" element="dmd_dot" state="0"> - <bounds x="240" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix47" element="dmd_dot" state="0"> - <bounds x="245" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix48" element="dmd_dot" state="0"> - <bounds x="250" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix49" element="dmd_dot" state="0"> - <bounds x="255" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix50" element="dmd_dot" state="0"> - <bounds x="260" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix51" element="dmd_dot" state="0"> - <bounds x="265" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix52" element="dmd_dot" state="0"> - <bounds x="270" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix53" element="dmd_dot" state="0"> - <bounds x="275" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix54" element="dmd_dot" state="0"> - <bounds x="280" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix55" element="dmd_dot" state="0"> - <bounds x="285" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix56" element="dmd_dot" state="0"> - <bounds x="290" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix57" element="dmd_dot" state="0"> - <bounds x="295" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix58" element="dmd_dot" state="0"> - <bounds x="300" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix59" element="dmd_dot" state="0"> - <bounds x="305" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix60" element="dmd_dot" state="0"> - <bounds x="310" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix61" element="dmd_dot" state="0"> - <bounds x="315" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix62" element="dmd_dot" state="0"> - <bounds x="320" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix63" element="dmd_dot" state="0"> - <bounds x="325" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix64" element="dmd_dot" state="0"> - <bounds x="330" y="285" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix65" element="dmd_dot" state="0"> - <bounds x="10" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix66" element="dmd_dot" state="0"> - <bounds x="15" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix67" element="dmd_dot" state="0"> - <bounds x="20" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix68" element="dmd_dot" state="0"> - <bounds x="25" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix69" element="dmd_dot" state="0"> - <bounds x="30" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix70" element="dmd_dot" state="0"> - <bounds x="35" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix71" element="dmd_dot" state="0"> - <bounds x="40" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix72" element="dmd_dot" state="0"> - <bounds x="45" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix73" element="dmd_dot" state="0"> - <bounds x="50" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix74" element="dmd_dot" state="0"> - <bounds x="55" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix75" element="dmd_dot" state="0"> - <bounds x="60" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix76" element="dmd_dot" state="0"> - <bounds x="65" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix77" element="dmd_dot" state="0"> - <bounds x="70" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix78" element="dmd_dot" state="0"> - <bounds x="75" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix79" element="dmd_dot" state="0"> - <bounds x="80" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix80" element="dmd_dot" state="0"> - <bounds x="85" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix81" element="dmd_dot" state="0"> - <bounds x="90" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix82" element="dmd_dot" state="0"> - <bounds x="95" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix83" element="dmd_dot" state="0"> - <bounds x="100" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix84" element="dmd_dot" state="0"> - <bounds x="105" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix85" element="dmd_dot" state="0"> - <bounds x="110" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix86" element="dmd_dot" state="0"> - <bounds x="115" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix87" element="dmd_dot" state="0"> - <bounds x="120" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix88" element="dmd_dot" state="0"> - <bounds x="125" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix89" element="dmd_dot" state="0"> - <bounds x="130" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix90" element="dmd_dot" state="0"> - <bounds x="135" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix91" element="dmd_dot" state="0"> - <bounds x="140" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix92" element="dmd_dot" state="0"> - <bounds x="145" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix93" element="dmd_dot" state="0"> - <bounds x="150" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix94" element="dmd_dot" state="0"> - <bounds x="155" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix95" element="dmd_dot" state="0"> - <bounds x="160" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix96" element="dmd_dot" state="0"> - <bounds x="165" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix97" element="dmd_dot" state="0"> - <bounds x="170" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix98" element="dmd_dot" state="0"> - <bounds x="175" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix99" element="dmd_dot" state="0"> - <bounds x="180" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix100" element="dmd_dot" state="0"> - <bounds x="185" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix101" element="dmd_dot" state="0"> - <bounds x="190" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix102" element="dmd_dot" state="0"> - <bounds x="195" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix103" element="dmd_dot" state="0"> - <bounds x="200" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix104" element="dmd_dot" state="0"> - <bounds x="205" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix105" element="dmd_dot" state="0"> - <bounds x="210" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix106" element="dmd_dot" state="0"> - <bounds x="215" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix107" element="dmd_dot" state="0"> - <bounds x="220" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix108" element="dmd_dot" state="0"> - <bounds x="225" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix109" element="dmd_dot" state="0"> - <bounds x="230" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix110" element="dmd_dot" state="0"> - <bounds x="235" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix111" element="dmd_dot" state="0"> - <bounds x="240" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix112" element="dmd_dot" state="0"> - <bounds x="245" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix113" element="dmd_dot" state="0"> - <bounds x="250" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix114" element="dmd_dot" state="0"> - <bounds x="255" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix115" element="dmd_dot" state="0"> - <bounds x="260" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix116" element="dmd_dot" state="0"> - <bounds x="265" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix117" element="dmd_dot" state="0"> - <bounds x="270" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix118" element="dmd_dot" state="0"> - <bounds x="275" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix119" element="dmd_dot" state="0"> - <bounds x="280" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix120" element="dmd_dot" state="0"> - <bounds x="285" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix121" element="dmd_dot" state="0"> - <bounds x="290" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix122" element="dmd_dot" state="0"> - <bounds x="295" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix123" element="dmd_dot" state="0"> - <bounds x="300" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix124" element="dmd_dot" state="0"> - <bounds x="305" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix125" element="dmd_dot" state="0"> - <bounds x="310" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix126" element="dmd_dot" state="0"> - <bounds x="315" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix127" element="dmd_dot" state="0"> - <bounds x="320" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix128" element="dmd_dot" state="0"> - <bounds x="325" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix129" element="dmd_dot" state="0"> - <bounds x="330" y="290" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix130" element="dmd_dot" state="0"> - <bounds x="10" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix131" element="dmd_dot" state="0"> - <bounds x="15" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix132" element="dmd_dot" state="0"> - <bounds x="20" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix133" element="dmd_dot" state="0"> - <bounds x="25" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix134" element="dmd_dot" state="0"> - <bounds x="30" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix135" element="dmd_dot" state="0"> - <bounds x="35" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix136" element="dmd_dot" state="0"> - <bounds x="40" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix137" element="dmd_dot" state="0"> - <bounds x="45" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix138" element="dmd_dot" state="0"> - <bounds x="50" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix139" element="dmd_dot" state="0"> - <bounds x="55" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix140" element="dmd_dot" state="0"> - <bounds x="60" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix141" element="dmd_dot" state="0"> - <bounds x="65" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix142" element="dmd_dot" state="0"> - <bounds x="70" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix143" element="dmd_dot" state="0"> - <bounds x="75" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix144" element="dmd_dot" state="0"> - <bounds x="80" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix145" element="dmd_dot" state="0"> - <bounds x="85" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix146" element="dmd_dot" state="0"> - <bounds x="90" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix147" element="dmd_dot" state="0"> - <bounds x="95" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix148" element="dmd_dot" state="0"> - <bounds x="100" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix149" element="dmd_dot" state="0"> - <bounds x="105" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix150" element="dmd_dot" state="0"> - <bounds x="110" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix151" element="dmd_dot" state="0"> - <bounds x="115" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix152" element="dmd_dot" state="0"> - <bounds x="120" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix153" element="dmd_dot" state="0"> - <bounds x="125" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix154" element="dmd_dot" state="0"> - <bounds x="130" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix155" element="dmd_dot" state="0"> - <bounds x="135" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix156" element="dmd_dot" state="0"> - <bounds x="140" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix157" element="dmd_dot" state="0"> - <bounds x="145" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix158" element="dmd_dot" state="0"> - <bounds x="150" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix159" element="dmd_dot" state="0"> - <bounds x="155" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix160" element="dmd_dot" state="0"> - <bounds x="160" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix161" element="dmd_dot" state="0"> - <bounds x="165" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix162" element="dmd_dot" state="0"> - <bounds x="170" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix163" element="dmd_dot" state="0"> - <bounds x="175" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix164" element="dmd_dot" state="0"> - <bounds x="180" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix165" element="dmd_dot" state="0"> - <bounds x="185" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix166" element="dmd_dot" state="0"> - <bounds x="190" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix167" element="dmd_dot" state="0"> - <bounds x="195" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix168" element="dmd_dot" state="0"> - <bounds x="200" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix169" element="dmd_dot" state="0"> - <bounds x="205" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix170" element="dmd_dot" state="0"> - <bounds x="210" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix171" element="dmd_dot" state="0"> - <bounds x="215" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix172" element="dmd_dot" state="0"> - <bounds x="220" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix173" element="dmd_dot" state="0"> - <bounds x="225" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix174" element="dmd_dot" state="0"> - <bounds x="230" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix175" element="dmd_dot" state="0"> - <bounds x="235" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix176" element="dmd_dot" state="0"> - <bounds x="240" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix177" element="dmd_dot" state="0"> - <bounds x="245" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix178" element="dmd_dot" state="0"> - <bounds x="250" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix179" element="dmd_dot" state="0"> - <bounds x="255" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix180" element="dmd_dot" state="0"> - <bounds x="260" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix181" element="dmd_dot" state="0"> - <bounds x="265" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix182" element="dmd_dot" state="0"> - <bounds x="270" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix183" element="dmd_dot" state="0"> - <bounds x="275" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix184" element="dmd_dot" state="0"> - <bounds x="280" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix185" element="dmd_dot" state="0"> - <bounds x="285" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix186" element="dmd_dot" state="0"> - <bounds x="290" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix187" element="dmd_dot" state="0"> - <bounds x="295" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix188" element="dmd_dot" state="0"> - <bounds x="300" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix189" element="dmd_dot" state="0"> - <bounds x="305" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix190" element="dmd_dot" state="0"> - <bounds x="310" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix191" element="dmd_dot" state="0"> - <bounds x="315" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix192" element="dmd_dot" state="0"> - <bounds x="320" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix193" element="dmd_dot" state="0"> - <bounds x="325" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix194" element="dmd_dot" state="0"> - <bounds x="330" y="295" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix195" element="dmd_dot" state="0"> - <bounds x="10" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix196" element="dmd_dot" state="0"> - <bounds x="15" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix197" element="dmd_dot" state="0"> - <bounds x="20" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix198" element="dmd_dot" state="0"> - <bounds x="25" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix199" element="dmd_dot" state="0"> - <bounds x="30" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix200" element="dmd_dot" state="0"> - <bounds x="35" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix201" element="dmd_dot" state="0"> - <bounds x="40" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix202" element="dmd_dot" state="0"> - <bounds x="45" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix203" element="dmd_dot" state="0"> - <bounds x="50" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix204" element="dmd_dot" state="0"> - <bounds x="55" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix205" element="dmd_dot" state="0"> - <bounds x="60" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix206" element="dmd_dot" state="0"> - <bounds x="65" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix207" element="dmd_dot" state="0"> - <bounds x="70" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix208" element="dmd_dot" state="0"> - <bounds x="75" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix209" element="dmd_dot" state="0"> - <bounds x="80" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix210" element="dmd_dot" state="0"> - <bounds x="85" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix211" element="dmd_dot" state="0"> - <bounds x="90" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix212" element="dmd_dot" state="0"> - <bounds x="95" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix213" element="dmd_dot" state="0"> - <bounds x="100" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix214" element="dmd_dot" state="0"> - <bounds x="105" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix215" element="dmd_dot" state="0"> - <bounds x="110" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix216" element="dmd_dot" state="0"> - <bounds x="115" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix217" element="dmd_dot" state="0"> - <bounds x="120" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix218" element="dmd_dot" state="0"> - <bounds x="125" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix219" element="dmd_dot" state="0"> - <bounds x="130" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix220" element="dmd_dot" state="0"> - <bounds x="135" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix221" element="dmd_dot" state="0"> - <bounds x="140" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix222" element="dmd_dot" state="0"> - <bounds x="145" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix223" element="dmd_dot" state="0"> - <bounds x="150" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix224" element="dmd_dot" state="0"> - <bounds x="155" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix225" element="dmd_dot" state="0"> - <bounds x="160" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix226" element="dmd_dot" state="0"> - <bounds x="165" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix227" element="dmd_dot" state="0"> - <bounds x="170" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix228" element="dmd_dot" state="0"> - <bounds x="175" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix229" element="dmd_dot" state="0"> - <bounds x="180" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix230" element="dmd_dot" state="0"> - <bounds x="185" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix231" element="dmd_dot" state="0"> - <bounds x="190" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix232" element="dmd_dot" state="0"> - <bounds x="195" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix233" element="dmd_dot" state="0"> - <bounds x="200" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix234" element="dmd_dot" state="0"> - <bounds x="205" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix235" element="dmd_dot" state="0"> - <bounds x="210" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix236" element="dmd_dot" state="0"> - <bounds x="215" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix237" element="dmd_dot" state="0"> - <bounds x="220" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix238" element="dmd_dot" state="0"> - <bounds x="225" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix239" element="dmd_dot" state="0"> - <bounds x="230" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix240" element="dmd_dot" state="0"> - <bounds x="235" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix241" element="dmd_dot" state="0"> - <bounds x="240" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix242" element="dmd_dot" state="0"> - <bounds x="245" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix243" element="dmd_dot" state="0"> - <bounds x="250" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix244" element="dmd_dot" state="0"> - <bounds x="255" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix245" element="dmd_dot" state="0"> - <bounds x="260" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix246" element="dmd_dot" state="0"> - <bounds x="265" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix247" element="dmd_dot" state="0"> - <bounds x="270" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix248" element="dmd_dot" state="0"> - <bounds x="275" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix249" element="dmd_dot" state="0"> - <bounds x="280" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix250" element="dmd_dot" state="0"> - <bounds x="285" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix251" element="dmd_dot" state="0"> - <bounds x="290" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix252" element="dmd_dot" state="0"> - <bounds x="295" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix253" element="dmd_dot" state="0"> - <bounds x="300" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix254" element="dmd_dot" state="0"> - <bounds x="305" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix255" element="dmd_dot" state="0"> - <bounds x="310" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix256" element="dmd_dot" state="0"> - <bounds x="315" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix257" element="dmd_dot" state="0"> - <bounds x="320" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix258" element="dmd_dot" state="0"> - <bounds x="325" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix259" element="dmd_dot" state="0"> - <bounds x="330" y="300" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix260" element="dmd_dot" state="0"> - <bounds x="10" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix261" element="dmd_dot" state="0"> - <bounds x="15" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix262" element="dmd_dot" state="0"> - <bounds x="20" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix263" element="dmd_dot" state="0"> - <bounds x="25" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix264" element="dmd_dot" state="0"> - <bounds x="30" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix265" element="dmd_dot" state="0"> - <bounds x="35" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix266" element="dmd_dot" state="0"> - <bounds x="40" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix267" element="dmd_dot" state="0"> - <bounds x="45" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix268" element="dmd_dot" state="0"> - <bounds x="50" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix269" element="dmd_dot" state="0"> - <bounds x="55" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix270" element="dmd_dot" state="0"> - <bounds x="60" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix271" element="dmd_dot" state="0"> - <bounds x="65" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix272" element="dmd_dot" state="0"> - <bounds x="70" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix273" element="dmd_dot" state="0"> - <bounds x="75" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix274" element="dmd_dot" state="0"> - <bounds x="80" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix275" element="dmd_dot" state="0"> - <bounds x="85" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix276" element="dmd_dot" state="0"> - <bounds x="90" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix277" element="dmd_dot" state="0"> - <bounds x="95" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix278" element="dmd_dot" state="0"> - <bounds x="100" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix279" element="dmd_dot" state="0"> - <bounds x="105" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix280" element="dmd_dot" state="0"> - <bounds x="110" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix281" element="dmd_dot" state="0"> - <bounds x="115" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix282" element="dmd_dot" state="0"> - <bounds x="120" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix283" element="dmd_dot" state="0"> - <bounds x="125" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix284" element="dmd_dot" state="0"> - <bounds x="130" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix285" element="dmd_dot" state="0"> - <bounds x="135" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix286" element="dmd_dot" state="0"> - <bounds x="140" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix287" element="dmd_dot" state="0"> - <bounds x="145" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix288" element="dmd_dot" state="0"> - <bounds x="150" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix289" element="dmd_dot" state="0"> - <bounds x="155" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix290" element="dmd_dot" state="0"> - <bounds x="160" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix291" element="dmd_dot" state="0"> - <bounds x="165" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix292" element="dmd_dot" state="0"> - <bounds x="170" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix293" element="dmd_dot" state="0"> - <bounds x="175" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix294" element="dmd_dot" state="0"> - <bounds x="180" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix295" element="dmd_dot" state="0"> - <bounds x="185" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix296" element="dmd_dot" state="0"> - <bounds x="190" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix297" element="dmd_dot" state="0"> - <bounds x="195" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix298" element="dmd_dot" state="0"> - <bounds x="200" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix299" element="dmd_dot" state="0"> - <bounds x="205" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix300" element="dmd_dot" state="0"> - <bounds x="210" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix301" element="dmd_dot" state="0"> - <bounds x="215" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix302" element="dmd_dot" state="0"> - <bounds x="220" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix303" element="dmd_dot" state="0"> - <bounds x="225" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix304" element="dmd_dot" state="0"> - <bounds x="230" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix305" element="dmd_dot" state="0"> - <bounds x="235" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix306" element="dmd_dot" state="0"> - <bounds x="240" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix307" element="dmd_dot" state="0"> - <bounds x="245" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix308" element="dmd_dot" state="0"> - <bounds x="250" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix309" element="dmd_dot" state="0"> - <bounds x="255" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix310" element="dmd_dot" state="0"> - <bounds x="260" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix311" element="dmd_dot" state="0"> - <bounds x="265" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix312" element="dmd_dot" state="0"> - <bounds x="270" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix313" element="dmd_dot" state="0"> - <bounds x="275" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix314" element="dmd_dot" state="0"> - <bounds x="280" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix315" element="dmd_dot" state="0"> - <bounds x="285" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix316" element="dmd_dot" state="0"> - <bounds x="290" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix317" element="dmd_dot" state="0"> - <bounds x="295" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix318" element="dmd_dot" state="0"> - <bounds x="300" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix319" element="dmd_dot" state="0"> - <bounds x="305" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix320" element="dmd_dot" state="0"> - <bounds x="310" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix321" element="dmd_dot" state="0"> - <bounds x="315" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix322" element="dmd_dot" state="0"> - <bounds x="320" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix323" element="dmd_dot" state="0"> - <bounds x="325" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix324" element="dmd_dot" state="0"> - <bounds x="330" y="305" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix325" element="dmd_dot" state="0"> - <bounds x="10" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix326" element="dmd_dot" state="0"> - <bounds x="15" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix327" element="dmd_dot" state="0"> - <bounds x="20" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix328" element="dmd_dot" state="0"> - <bounds x="25" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix329" element="dmd_dot" state="0"> - <bounds x="30" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix330" element="dmd_dot" state="0"> - <bounds x="35" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix331" element="dmd_dot" state="0"> - <bounds x="40" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix332" element="dmd_dot" state="0"> - <bounds x="45" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix333" element="dmd_dot" state="0"> - <bounds x="50" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix334" element="dmd_dot" state="0"> - <bounds x="55" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix335" element="dmd_dot" state="0"> - <bounds x="60" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix336" element="dmd_dot" state="0"> - <bounds x="65" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix337" element="dmd_dot" state="0"> - <bounds x="70" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix338" element="dmd_dot" state="0"> - <bounds x="75" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix339" element="dmd_dot" state="0"> - <bounds x="80" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix340" element="dmd_dot" state="0"> - <bounds x="85" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix341" element="dmd_dot" state="0"> - <bounds x="90" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix342" element="dmd_dot" state="0"> - <bounds x="95" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix343" element="dmd_dot" state="0"> - <bounds x="100" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix344" element="dmd_dot" state="0"> - <bounds x="105" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix345" element="dmd_dot" state="0"> - <bounds x="110" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix346" element="dmd_dot" state="0"> - <bounds x="115" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix347" element="dmd_dot" state="0"> - <bounds x="120" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix348" element="dmd_dot" state="0"> - <bounds x="125" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix349" element="dmd_dot" state="0"> - <bounds x="130" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix350" element="dmd_dot" state="0"> - <bounds x="135" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix351" element="dmd_dot" state="0"> - <bounds x="140" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix352" element="dmd_dot" state="0"> - <bounds x="145" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix353" element="dmd_dot" state="0"> - <bounds x="150" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix354" element="dmd_dot" state="0"> - <bounds x="155" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix355" element="dmd_dot" state="0"> - <bounds x="160" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix356" element="dmd_dot" state="0"> - <bounds x="165" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix357" element="dmd_dot" state="0"> - <bounds x="170" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix358" element="dmd_dot" state="0"> - <bounds x="175" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix359" element="dmd_dot" state="0"> - <bounds x="180" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix360" element="dmd_dot" state="0"> - <bounds x="185" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix361" element="dmd_dot" state="0"> - <bounds x="190" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix362" element="dmd_dot" state="0"> - <bounds x="195" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix363" element="dmd_dot" state="0"> - <bounds x="200" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix364" element="dmd_dot" state="0"> - <bounds x="205" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix365" element="dmd_dot" state="0"> - <bounds x="210" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix366" element="dmd_dot" state="0"> - <bounds x="215" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix367" element="dmd_dot" state="0"> - <bounds x="220" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix368" element="dmd_dot" state="0"> - <bounds x="225" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix369" element="dmd_dot" state="0"> - <bounds x="230" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix370" element="dmd_dot" state="0"> - <bounds x="235" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix371" element="dmd_dot" state="0"> - <bounds x="240" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix372" element="dmd_dot" state="0"> - <bounds x="245" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix373" element="dmd_dot" state="0"> - <bounds x="250" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix374" element="dmd_dot" state="0"> - <bounds x="255" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix375" element="dmd_dot" state="0"> - <bounds x="260" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix376" element="dmd_dot" state="0"> - <bounds x="265" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix377" element="dmd_dot" state="0"> - <bounds x="270" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix378" element="dmd_dot" state="0"> - <bounds x="275" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix379" element="dmd_dot" state="0"> - <bounds x="280" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix380" element="dmd_dot" state="0"> - <bounds x="285" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix381" element="dmd_dot" state="0"> - <bounds x="290" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix382" element="dmd_dot" state="0"> - <bounds x="295" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix383" element="dmd_dot" state="0"> - <bounds x="300" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix384" element="dmd_dot" state="0"> - <bounds x="305" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix385" element="dmd_dot" state="0"> - <bounds x="310" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix386" element="dmd_dot" state="0"> - <bounds x="315" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix387" element="dmd_dot" state="0"> - <bounds x="320" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix388" element="dmd_dot" state="0"> - <bounds x="325" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix389" element="dmd_dot" state="0"> - <bounds x="330" y="310" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix390" element="dmd_dot" state="0"> - <bounds x="10" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix391" element="dmd_dot" state="0"> - <bounds x="15" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix392" element="dmd_dot" state="0"> - <bounds x="20" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix393" element="dmd_dot" state="0"> - <bounds x="25" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix394" element="dmd_dot" state="0"> - <bounds x="30" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix395" element="dmd_dot" state="0"> - <bounds x="35" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix396" element="dmd_dot" state="0"> - <bounds x="40" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix397" element="dmd_dot" state="0"> - <bounds x="45" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix398" element="dmd_dot" state="0"> - <bounds x="50" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix399" element="dmd_dot" state="0"> - <bounds x="55" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix400" element="dmd_dot" state="0"> - <bounds x="60" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix401" element="dmd_dot" state="0"> - <bounds x="65" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix402" element="dmd_dot" state="0"> - <bounds x="70" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix403" element="dmd_dot" state="0"> - <bounds x="75" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix404" element="dmd_dot" state="0"> - <bounds x="80" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix405" element="dmd_dot" state="0"> - <bounds x="85" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix406" element="dmd_dot" state="0"> - <bounds x="90" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix407" element="dmd_dot" state="0"> - <bounds x="95" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix408" element="dmd_dot" state="0"> - <bounds x="100" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix409" element="dmd_dot" state="0"> - <bounds x="105" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix410" element="dmd_dot" state="0"> - <bounds x="110" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix411" element="dmd_dot" state="0"> - <bounds x="115" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix412" element="dmd_dot" state="0"> - <bounds x="120" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix413" element="dmd_dot" state="0"> - <bounds x="125" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix414" element="dmd_dot" state="0"> - <bounds x="130" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix415" element="dmd_dot" state="0"> - <bounds x="135" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix416" element="dmd_dot" state="0"> - <bounds x="140" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix417" element="dmd_dot" state="0"> - <bounds x="145" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix418" element="dmd_dot" state="0"> - <bounds x="150" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix419" element="dmd_dot" state="0"> - <bounds x="155" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix420" element="dmd_dot" state="0"> - <bounds x="160" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix421" element="dmd_dot" state="0"> - <bounds x="165" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix422" element="dmd_dot" state="0"> - <bounds x="170" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix423" element="dmd_dot" state="0"> - <bounds x="175" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix424" element="dmd_dot" state="0"> - <bounds x="180" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix425" element="dmd_dot" state="0"> - <bounds x="185" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix426" element="dmd_dot" state="0"> - <bounds x="190" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix427" element="dmd_dot" state="0"> - <bounds x="195" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix428" element="dmd_dot" state="0"> - <bounds x="200" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix429" element="dmd_dot" state="0"> - <bounds x="205" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix430" element="dmd_dot" state="0"> - <bounds x="210" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix431" element="dmd_dot" state="0"> - <bounds x="215" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix432" element="dmd_dot" state="0"> - <bounds x="220" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix433" element="dmd_dot" state="0"> - <bounds x="225" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix434" element="dmd_dot" state="0"> - <bounds x="230" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix435" element="dmd_dot" state="0"> - <bounds x="235" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix436" element="dmd_dot" state="0"> - <bounds x="240" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix437" element="dmd_dot" state="0"> - <bounds x="245" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix438" element="dmd_dot" state="0"> - <bounds x="250" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix439" element="dmd_dot" state="0"> - <bounds x="255" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix440" element="dmd_dot" state="0"> - <bounds x="260" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix441" element="dmd_dot" state="0"> - <bounds x="265" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix442" element="dmd_dot" state="0"> - <bounds x="270" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix443" element="dmd_dot" state="0"> - <bounds x="275" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix444" element="dmd_dot" state="0"> - <bounds x="280" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix445" element="dmd_dot" state="0"> - <bounds x="285" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix446" element="dmd_dot" state="0"> - <bounds x="290" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix447" element="dmd_dot" state="0"> - <bounds x="295" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix448" element="dmd_dot" state="0"> - <bounds x="300" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix449" element="dmd_dot" state="0"> - <bounds x="305" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix450" element="dmd_dot" state="0"> - <bounds x="310" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix451" element="dmd_dot" state="0"> - <bounds x="315" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix452" element="dmd_dot" state="0"> - <bounds x="320" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix453" element="dmd_dot" state="0"> - <bounds x="325" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix454" element="dmd_dot" state="0"> - <bounds x="330" y="315" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix455" element="dmd_dot" state="0"> - <bounds x="10" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix456" element="dmd_dot" state="0"> - <bounds x="15" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix457" element="dmd_dot" state="0"> - <bounds x="20" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix458" element="dmd_dot" state="0"> - <bounds x="25" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix459" element="dmd_dot" state="0"> - <bounds x="30" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix460" element="dmd_dot" state="0"> - <bounds x="35" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix461" element="dmd_dot" state="0"> - <bounds x="40" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix462" element="dmd_dot" state="0"> - <bounds x="45" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix463" element="dmd_dot" state="0"> - <bounds x="50" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix464" element="dmd_dot" state="0"> - <bounds x="55" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix465" element="dmd_dot" state="0"> - <bounds x="60" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix466" element="dmd_dot" state="0"> - <bounds x="65" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix467" element="dmd_dot" state="0"> - <bounds x="70" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix468" element="dmd_dot" state="0"> - <bounds x="75" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix469" element="dmd_dot" state="0"> - <bounds x="80" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix470" element="dmd_dot" state="0"> - <bounds x="85" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix471" element="dmd_dot" state="0"> - <bounds x="90" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix472" element="dmd_dot" state="0"> - <bounds x="95" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix473" element="dmd_dot" state="0"> - <bounds x="100" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix474" element="dmd_dot" state="0"> - <bounds x="105" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix475" element="dmd_dot" state="0"> - <bounds x="110" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix476" element="dmd_dot" state="0"> - <bounds x="115" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix477" element="dmd_dot" state="0"> - <bounds x="120" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix478" element="dmd_dot" state="0"> - <bounds x="125" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix479" element="dmd_dot" state="0"> - <bounds x="130" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix480" element="dmd_dot" state="0"> - <bounds x="135" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix481" element="dmd_dot" state="0"> - <bounds x="140" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix482" element="dmd_dot" state="0"> - <bounds x="145" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix483" element="dmd_dot" state="0"> - <bounds x="150" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix484" element="dmd_dot" state="0"> - <bounds x="155" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix485" element="dmd_dot" state="0"> - <bounds x="160" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix486" element="dmd_dot" state="0"> - <bounds x="165" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix487" element="dmd_dot" state="0"> - <bounds x="170" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix488" element="dmd_dot" state="0"> - <bounds x="175" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix489" element="dmd_dot" state="0"> - <bounds x="180" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix490" element="dmd_dot" state="0"> - <bounds x="185" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix491" element="dmd_dot" state="0"> - <bounds x="190" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix492" element="dmd_dot" state="0"> - <bounds x="195" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix493" element="dmd_dot" state="0"> - <bounds x="200" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix494" element="dmd_dot" state="0"> - <bounds x="205" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix495" element="dmd_dot" state="0"> - <bounds x="210" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix496" element="dmd_dot" state="0"> - <bounds x="215" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix497" element="dmd_dot" state="0"> - <bounds x="220" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix498" element="dmd_dot" state="0"> - <bounds x="225" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix499" element="dmd_dot" state="0"> - <bounds x="230" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix500" element="dmd_dot" state="0"> - <bounds x="235" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix501" element="dmd_dot" state="0"> - <bounds x="240" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix502" element="dmd_dot" state="0"> - <bounds x="245" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix503" element="dmd_dot" state="0"> - <bounds x="250" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix504" element="dmd_dot" state="0"> - <bounds x="255" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix505" element="dmd_dot" state="0"> - <bounds x="260" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix506" element="dmd_dot" state="0"> - <bounds x="265" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix507" element="dmd_dot" state="0"> - <bounds x="270" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix508" element="dmd_dot" state="0"> - <bounds x="275" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix509" element="dmd_dot" state="0"> - <bounds x="280" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix510" element="dmd_dot" state="0"> - <bounds x="285" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix511" element="dmd_dot" state="0"> - <bounds x="290" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix512" element="dmd_dot" state="0"> - <bounds x="295" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix513" element="dmd_dot" state="0"> - <bounds x="300" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix514" element="dmd_dot" state="0"> - <bounds x="305" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix515" element="dmd_dot" state="0"> - <bounds x="310" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix516" element="dmd_dot" state="0"> - <bounds x="315" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix517" element="dmd_dot" state="0"> - <bounds x="320" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix518" element="dmd_dot" state="0"> - <bounds x="325" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix519" element="dmd_dot" state="0"> - <bounds x="330" y="320" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix520" element="dmd_dot" state="0"> - <bounds x="10" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix521" element="dmd_dot" state="0"> - <bounds x="15" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix522" element="dmd_dot" state="0"> - <bounds x="20" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix523" element="dmd_dot" state="0"> - <bounds x="25" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix524" element="dmd_dot" state="0"> - <bounds x="30" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix525" element="dmd_dot" state="0"> - <bounds x="35" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix526" element="dmd_dot" state="0"> - <bounds x="40" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix527" element="dmd_dot" state="0"> - <bounds x="45" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix528" element="dmd_dot" state="0"> - <bounds x="50" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix529" element="dmd_dot" state="0"> - <bounds x="55" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix530" element="dmd_dot" state="0"> - <bounds x="60" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix531" element="dmd_dot" state="0"> - <bounds x="65" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix532" element="dmd_dot" state="0"> - <bounds x="70" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix533" element="dmd_dot" state="0"> - <bounds x="75" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix534" element="dmd_dot" state="0"> - <bounds x="80" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix535" element="dmd_dot" state="0"> - <bounds x="85" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix536" element="dmd_dot" state="0"> - <bounds x="90" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix537" element="dmd_dot" state="0"> - <bounds x="95" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix538" element="dmd_dot" state="0"> - <bounds x="100" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix539" element="dmd_dot" state="0"> - <bounds x="105" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix540" element="dmd_dot" state="0"> - <bounds x="110" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix541" element="dmd_dot" state="0"> - <bounds x="115" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix542" element="dmd_dot" state="0"> - <bounds x="120" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix543" element="dmd_dot" state="0"> - <bounds x="125" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix544" element="dmd_dot" state="0"> - <bounds x="130" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix545" element="dmd_dot" state="0"> - <bounds x="135" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix546" element="dmd_dot" state="0"> - <bounds x="140" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix547" element="dmd_dot" state="0"> - <bounds x="145" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix548" element="dmd_dot" state="0"> - <bounds x="150" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix549" element="dmd_dot" state="0"> - <bounds x="155" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix550" element="dmd_dot" state="0"> - <bounds x="160" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix551" element="dmd_dot" state="0"> - <bounds x="165" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix552" element="dmd_dot" state="0"> - <bounds x="170" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix553" element="dmd_dot" state="0"> - <bounds x="175" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix554" element="dmd_dot" state="0"> - <bounds x="180" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix555" element="dmd_dot" state="0"> - <bounds x="185" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix556" element="dmd_dot" state="0"> - <bounds x="190" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix557" element="dmd_dot" state="0"> - <bounds x="195" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix558" element="dmd_dot" state="0"> - <bounds x="200" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix559" element="dmd_dot" state="0"> - <bounds x="205" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix560" element="dmd_dot" state="0"> - <bounds x="210" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix561" element="dmd_dot" state="0"> - <bounds x="215" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix562" element="dmd_dot" state="0"> - <bounds x="220" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix563" element="dmd_dot" state="0"> - <bounds x="225" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix564" element="dmd_dot" state="0"> - <bounds x="230" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix565" element="dmd_dot" state="0"> - <bounds x="235" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix566" element="dmd_dot" state="0"> - <bounds x="240" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix567" element="dmd_dot" state="0"> - <bounds x="245" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix568" element="dmd_dot" state="0"> - <bounds x="250" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix569" element="dmd_dot" state="0"> - <bounds x="255" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix570" element="dmd_dot" state="0"> - <bounds x="260" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix571" element="dmd_dot" state="0"> - <bounds x="265" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix572" element="dmd_dot" state="0"> - <bounds x="270" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix573" element="dmd_dot" state="0"> - <bounds x="275" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix574" element="dmd_dot" state="0"> - <bounds x="280" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix575" element="dmd_dot" state="0"> - <bounds x="285" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix576" element="dmd_dot" state="0"> - <bounds x="290" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix577" element="dmd_dot" state="0"> - <bounds x="295" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix578" element="dmd_dot" state="0"> - <bounds x="300" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix579" element="dmd_dot" state="0"> - <bounds x="305" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix580" element="dmd_dot" state="0"> - <bounds x="310" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix581" element="dmd_dot" state="0"> - <bounds x="315" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix582" element="dmd_dot" state="0"> - <bounds x="320" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix583" element="dmd_dot" state="0"> - <bounds x="325" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix584" element="dmd_dot" state="0"> - <bounds x="330" y="325" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix585" element="dmd_dot" state="0"> - <bounds x="10" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix586" element="dmd_dot" state="0"> - <bounds x="15" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix587" element="dmd_dot" state="0"> - <bounds x="20" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix588" element="dmd_dot" state="0"> - <bounds x="25" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix589" element="dmd_dot" state="0"> - <bounds x="30" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix590" element="dmd_dot" state="0"> - <bounds x="35" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix591" element="dmd_dot" state="0"> - <bounds x="40" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix592" element="dmd_dot" state="0"> - <bounds x="45" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix593" element="dmd_dot" state="0"> - <bounds x="50" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix594" element="dmd_dot" state="0"> - <bounds x="55" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix595" element="dmd_dot" state="0"> - <bounds x="60" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix596" element="dmd_dot" state="0"> - <bounds x="65" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix597" element="dmd_dot" state="0"> - <bounds x="70" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix598" element="dmd_dot" state="0"> - <bounds x="75" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix599" element="dmd_dot" state="0"> - <bounds x="80" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix600" element="dmd_dot" state="0"> - <bounds x="85" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix601" element="dmd_dot" state="0"> - <bounds x="90" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix602" element="dmd_dot" state="0"> - <bounds x="95" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix603" element="dmd_dot" state="0"> - <bounds x="100" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix604" element="dmd_dot" state="0"> - <bounds x="105" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix605" element="dmd_dot" state="0"> - <bounds x="110" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix606" element="dmd_dot" state="0"> - <bounds x="115" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix607" element="dmd_dot" state="0"> - <bounds x="120" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix608" element="dmd_dot" state="0"> - <bounds x="125" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix609" element="dmd_dot" state="0"> - <bounds x="130" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix610" element="dmd_dot" state="0"> - <bounds x="135" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix611" element="dmd_dot" state="0"> - <bounds x="140" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix612" element="dmd_dot" state="0"> - <bounds x="145" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix613" element="dmd_dot" state="0"> - <bounds x="150" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix614" element="dmd_dot" state="0"> - <bounds x="155" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix615" element="dmd_dot" state="0"> - <bounds x="160" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix616" element="dmd_dot" state="0"> - <bounds x="165" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix617" element="dmd_dot" state="0"> - <bounds x="170" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix618" element="dmd_dot" state="0"> - <bounds x="175" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix619" element="dmd_dot" state="0"> - <bounds x="180" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix620" element="dmd_dot" state="0"> - <bounds x="185" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix621" element="dmd_dot" state="0"> - <bounds x="190" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix622" element="dmd_dot" state="0"> - <bounds x="195" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix623" element="dmd_dot" state="0"> - <bounds x="200" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix624" element="dmd_dot" state="0"> - <bounds x="205" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix625" element="dmd_dot" state="0"> - <bounds x="210" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix626" element="dmd_dot" state="0"> - <bounds x="215" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix627" element="dmd_dot" state="0"> - <bounds x="220" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix628" element="dmd_dot" state="0"> - <bounds x="225" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix629" element="dmd_dot" state="0"> - <bounds x="230" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix630" element="dmd_dot" state="0"> - <bounds x="235" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix631" element="dmd_dot" state="0"> - <bounds x="240" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix632" element="dmd_dot" state="0"> - <bounds x="245" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix633" element="dmd_dot" state="0"> - <bounds x="250" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix634" element="dmd_dot" state="0"> - <bounds x="255" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix635" element="dmd_dot" state="0"> - <bounds x="260" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix636" element="dmd_dot" state="0"> - <bounds x="265" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix637" element="dmd_dot" state="0"> - <bounds x="270" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix638" element="dmd_dot" state="0"> - <bounds x="275" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix639" element="dmd_dot" state="0"> - <bounds x="280" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix640" element="dmd_dot" state="0"> - <bounds x="285" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix641" element="dmd_dot" state="0"> - <bounds x="290" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix642" element="dmd_dot" state="0"> - <bounds x="295" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix643" element="dmd_dot" state="0"> - <bounds x="300" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix644" element="dmd_dot" state="0"> - <bounds x="305" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix645" element="dmd_dot" state="0"> - <bounds x="310" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix646" element="dmd_dot" state="0"> - <bounds x="315" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix647" element="dmd_dot" state="0"> - <bounds x="320" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix648" element="dmd_dot" state="0"> - <bounds x="325" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix649" element="dmd_dot" state="0"> - <bounds x="330" y="330" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix650" element="dmd_dot" state="0"> - <bounds x="10" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix651" element="dmd_dot" state="0"> - <bounds x="15" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix652" element="dmd_dot" state="0"> - <bounds x="20" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix653" element="dmd_dot" state="0"> - <bounds x="25" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix654" element="dmd_dot" state="0"> - <bounds x="30" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix655" element="dmd_dot" state="0"> - <bounds x="35" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix656" element="dmd_dot" state="0"> - <bounds x="40" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix657" element="dmd_dot" state="0"> - <bounds x="45" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix658" element="dmd_dot" state="0"> - <bounds x="50" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix659" element="dmd_dot" state="0"> - <bounds x="55" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix660" element="dmd_dot" state="0"> - <bounds x="60" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix661" element="dmd_dot" state="0"> - <bounds x="65" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix662" element="dmd_dot" state="0"> - <bounds x="70" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix663" element="dmd_dot" state="0"> - <bounds x="75" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix664" element="dmd_dot" state="0"> - <bounds x="80" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix665" element="dmd_dot" state="0"> - <bounds x="85" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix666" element="dmd_dot" state="0"> - <bounds x="90" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix667" element="dmd_dot" state="0"> - <bounds x="95" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix668" element="dmd_dot" state="0"> - <bounds x="100" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix669" element="dmd_dot" state="0"> - <bounds x="105" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix670" element="dmd_dot" state="0"> - <bounds x="110" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix671" element="dmd_dot" state="0"> - <bounds x="115" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix672" element="dmd_dot" state="0"> - <bounds x="120" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix673" element="dmd_dot" state="0"> - <bounds x="125" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix674" element="dmd_dot" state="0"> - <bounds x="130" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix675" element="dmd_dot" state="0"> - <bounds x="135" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix676" element="dmd_dot" state="0"> - <bounds x="140" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix677" element="dmd_dot" state="0"> - <bounds x="145" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix678" element="dmd_dot" state="0"> - <bounds x="150" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix679" element="dmd_dot" state="0"> - <bounds x="155" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix680" element="dmd_dot" state="0"> - <bounds x="160" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix681" element="dmd_dot" state="0"> - <bounds x="165" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix682" element="dmd_dot" state="0"> - <bounds x="170" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix683" element="dmd_dot" state="0"> - <bounds x="175" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix684" element="dmd_dot" state="0"> - <bounds x="180" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix685" element="dmd_dot" state="0"> - <bounds x="185" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix686" element="dmd_dot" state="0"> - <bounds x="190" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix687" element="dmd_dot" state="0"> - <bounds x="195" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix688" element="dmd_dot" state="0"> - <bounds x="200" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix689" element="dmd_dot" state="0"> - <bounds x="205" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix690" element="dmd_dot" state="0"> - <bounds x="210" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix691" element="dmd_dot" state="0"> - <bounds x="215" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix692" element="dmd_dot" state="0"> - <bounds x="220" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix693" element="dmd_dot" state="0"> - <bounds x="225" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix694" element="dmd_dot" state="0"> - <bounds x="230" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix695" element="dmd_dot" state="0"> - <bounds x="235" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix696" element="dmd_dot" state="0"> - <bounds x="240" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix697" element="dmd_dot" state="0"> - <bounds x="245" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix698" element="dmd_dot" state="0"> - <bounds x="250" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix699" element="dmd_dot" state="0"> - <bounds x="255" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix700" element="dmd_dot" state="0"> - <bounds x="260" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix701" element="dmd_dot" state="0"> - <bounds x="265" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix702" element="dmd_dot" state="0"> - <bounds x="270" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix703" element="dmd_dot" state="0"> - <bounds x="275" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix704" element="dmd_dot" state="0"> - <bounds x="280" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix705" element="dmd_dot" state="0"> - <bounds x="285" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix706" element="dmd_dot" state="0"> - <bounds x="290" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix707" element="dmd_dot" state="0"> - <bounds x="295" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix708" element="dmd_dot" state="0"> - <bounds x="300" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix709" element="dmd_dot" state="0"> - <bounds x="305" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix710" element="dmd_dot" state="0"> - <bounds x="310" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix711" element="dmd_dot" state="0"> - <bounds x="315" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix712" element="dmd_dot" state="0"> - <bounds x="320" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix713" element="dmd_dot" state="0"> - <bounds x="325" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix714" element="dmd_dot" state="0"> - <bounds x="330" y="335" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix715" element="dmd_dot" state="0"> - <bounds x="10" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix716" element="dmd_dot" state="0"> - <bounds x="15" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix717" element="dmd_dot" state="0"> - <bounds x="20" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix718" element="dmd_dot" state="0"> - <bounds x="25" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix719" element="dmd_dot" state="0"> - <bounds x="30" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix720" element="dmd_dot" state="0"> - <bounds x="35" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix721" element="dmd_dot" state="0"> - <bounds x="40" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix722" element="dmd_dot" state="0"> - <bounds x="45" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix723" element="dmd_dot" state="0"> - <bounds x="50" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix724" element="dmd_dot" state="0"> - <bounds x="55" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix725" element="dmd_dot" state="0"> - <bounds x="60" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix726" element="dmd_dot" state="0"> - <bounds x="65" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix727" element="dmd_dot" state="0"> - <bounds x="70" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix728" element="dmd_dot" state="0"> - <bounds x="75" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix729" element="dmd_dot" state="0"> - <bounds x="80" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix730" element="dmd_dot" state="0"> - <bounds x="85" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix731" element="dmd_dot" state="0"> - <bounds x="90" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix732" element="dmd_dot" state="0"> - <bounds x="95" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix733" element="dmd_dot" state="0"> - <bounds x="100" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix734" element="dmd_dot" state="0"> - <bounds x="105" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix735" element="dmd_dot" state="0"> - <bounds x="110" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix736" element="dmd_dot" state="0"> - <bounds x="115" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix737" element="dmd_dot" state="0"> - <bounds x="120" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix738" element="dmd_dot" state="0"> - <bounds x="125" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix739" element="dmd_dot" state="0"> - <bounds x="130" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix740" element="dmd_dot" state="0"> - <bounds x="135" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix741" element="dmd_dot" state="0"> - <bounds x="140" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix742" element="dmd_dot" state="0"> - <bounds x="145" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix743" element="dmd_dot" state="0"> - <bounds x="150" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix744" element="dmd_dot" state="0"> - <bounds x="155" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix745" element="dmd_dot" state="0"> - <bounds x="160" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix746" element="dmd_dot" state="0"> - <bounds x="165" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix747" element="dmd_dot" state="0"> - <bounds x="170" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix748" element="dmd_dot" state="0"> - <bounds x="175" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix749" element="dmd_dot" state="0"> - <bounds x="180" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix750" element="dmd_dot" state="0"> - <bounds x="185" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix751" element="dmd_dot" state="0"> - <bounds x="190" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix752" element="dmd_dot" state="0"> - <bounds x="195" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix753" element="dmd_dot" state="0"> - <bounds x="200" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix754" element="dmd_dot" state="0"> - <bounds x="205" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix755" element="dmd_dot" state="0"> - <bounds x="210" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix756" element="dmd_dot" state="0"> - <bounds x="215" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix757" element="dmd_dot" state="0"> - <bounds x="220" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix758" element="dmd_dot" state="0"> - <bounds x="225" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix759" element="dmd_dot" state="0"> - <bounds x="230" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix760" element="dmd_dot" state="0"> - <bounds x="235" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix761" element="dmd_dot" state="0"> - <bounds x="240" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix762" element="dmd_dot" state="0"> - <bounds x="245" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix763" element="dmd_dot" state="0"> - <bounds x="250" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix764" element="dmd_dot" state="0"> - <bounds x="255" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix765" element="dmd_dot" state="0"> - <bounds x="260" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix766" element="dmd_dot" state="0"> - <bounds x="265" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix767" element="dmd_dot" state="0"> - <bounds x="270" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix768" element="dmd_dot" state="0"> - <bounds x="275" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix769" element="dmd_dot" state="0"> - <bounds x="280" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix770" element="dmd_dot" state="0"> - <bounds x="285" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix771" element="dmd_dot" state="0"> - <bounds x="290" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix772" element="dmd_dot" state="0"> - <bounds x="295" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix773" element="dmd_dot" state="0"> - <bounds x="300" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix774" element="dmd_dot" state="0"> - <bounds x="305" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix775" element="dmd_dot" state="0"> - <bounds x="310" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix776" element="dmd_dot" state="0"> - <bounds x="315" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix777" element="dmd_dot" state="0"> - <bounds x="320" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix778" element="dmd_dot" state="0"> - <bounds x="325" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix779" element="dmd_dot" state="0"> - <bounds x="330" y="340" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix780" element="dmd_dot" state="0"> - <bounds x="10" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix781" element="dmd_dot" state="0"> - <bounds x="15" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix782" element="dmd_dot" state="0"> - <bounds x="20" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix783" element="dmd_dot" state="0"> - <bounds x="25" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix784" element="dmd_dot" state="0"> - <bounds x="30" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix785" element="dmd_dot" state="0"> - <bounds x="35" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix786" element="dmd_dot" state="0"> - <bounds x="40" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix787" element="dmd_dot" state="0"> - <bounds x="45" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix788" element="dmd_dot" state="0"> - <bounds x="50" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix789" element="dmd_dot" state="0"> - <bounds x="55" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix790" element="dmd_dot" state="0"> - <bounds x="60" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix791" element="dmd_dot" state="0"> - <bounds x="65" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix792" element="dmd_dot" state="0"> - <bounds x="70" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix793" element="dmd_dot" state="0"> - <bounds x="75" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix794" element="dmd_dot" state="0"> - <bounds x="80" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix795" element="dmd_dot" state="0"> - <bounds x="85" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix796" element="dmd_dot" state="0"> - <bounds x="90" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix797" element="dmd_dot" state="0"> - <bounds x="95" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix798" element="dmd_dot" state="0"> - <bounds x="100" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix799" element="dmd_dot" state="0"> - <bounds x="105" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix800" element="dmd_dot" state="0"> - <bounds x="110" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix801" element="dmd_dot" state="0"> - <bounds x="115" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix802" element="dmd_dot" state="0"> - <bounds x="120" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix803" element="dmd_dot" state="0"> - <bounds x="125" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix804" element="dmd_dot" state="0"> - <bounds x="130" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix805" element="dmd_dot" state="0"> - <bounds x="135" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix806" element="dmd_dot" state="0"> - <bounds x="140" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix807" element="dmd_dot" state="0"> - <bounds x="145" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix808" element="dmd_dot" state="0"> - <bounds x="150" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix809" element="dmd_dot" state="0"> - <bounds x="155" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix810" element="dmd_dot" state="0"> - <bounds x="160" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix811" element="dmd_dot" state="0"> - <bounds x="165" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix812" element="dmd_dot" state="0"> - <bounds x="170" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix813" element="dmd_dot" state="0"> - <bounds x="175" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix814" element="dmd_dot" state="0"> - <bounds x="180" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix815" element="dmd_dot" state="0"> - <bounds x="185" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix816" element="dmd_dot" state="0"> - <bounds x="190" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix817" element="dmd_dot" state="0"> - <bounds x="195" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix818" element="dmd_dot" state="0"> - <bounds x="200" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix819" element="dmd_dot" state="0"> - <bounds x="205" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix820" element="dmd_dot" state="0"> - <bounds x="210" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix821" element="dmd_dot" state="0"> - <bounds x="215" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix822" element="dmd_dot" state="0"> - <bounds x="220" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix823" element="dmd_dot" state="0"> - <bounds x="225" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix824" element="dmd_dot" state="0"> - <bounds x="230" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix825" element="dmd_dot" state="0"> - <bounds x="235" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix826" element="dmd_dot" state="0"> - <bounds x="240" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix827" element="dmd_dot" state="0"> - <bounds x="245" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix828" element="dmd_dot" state="0"> - <bounds x="250" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix829" element="dmd_dot" state="0"> - <bounds x="255" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix830" element="dmd_dot" state="0"> - <bounds x="260" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix831" element="dmd_dot" state="0"> - <bounds x="265" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix832" element="dmd_dot" state="0"> - <bounds x="270" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix833" element="dmd_dot" state="0"> - <bounds x="275" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix834" element="dmd_dot" state="0"> - <bounds x="280" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix835" element="dmd_dot" state="0"> - <bounds x="285" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix836" element="dmd_dot" state="0"> - <bounds x="290" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix837" element="dmd_dot" state="0"> - <bounds x="295" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix838" element="dmd_dot" state="0"> - <bounds x="300" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix839" element="dmd_dot" state="0"> - <bounds x="305" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix840" element="dmd_dot" state="0"> - <bounds x="310" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix841" element="dmd_dot" state="0"> - <bounds x="315" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix842" element="dmd_dot" state="0"> - <bounds x="320" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix843" element="dmd_dot" state="0"> - <bounds x="325" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix844" element="dmd_dot" state="0"> - <bounds x="330" y="345" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix845" element="dmd_dot" state="0"> - <bounds x="10" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix846" element="dmd_dot" state="0"> - <bounds x="15" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix847" element="dmd_dot" state="0"> - <bounds x="20" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix848" element="dmd_dot" state="0"> - <bounds x="25" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix849" element="dmd_dot" state="0"> - <bounds x="30" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix850" element="dmd_dot" state="0"> - <bounds x="35" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix851" element="dmd_dot" state="0"> - <bounds x="40" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix852" element="dmd_dot" state="0"> - <bounds x="45" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix853" element="dmd_dot" state="0"> - <bounds x="50" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix854" element="dmd_dot" state="0"> - <bounds x="55" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix855" element="dmd_dot" state="0"> - <bounds x="60" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix856" element="dmd_dot" state="0"> - <bounds x="65" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix857" element="dmd_dot" state="0"> - <bounds x="70" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix858" element="dmd_dot" state="0"> - <bounds x="75" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix859" element="dmd_dot" state="0"> - <bounds x="80" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix860" element="dmd_dot" state="0"> - <bounds x="85" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix861" element="dmd_dot" state="0"> - <bounds x="90" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix862" element="dmd_dot" state="0"> - <bounds x="95" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix863" element="dmd_dot" state="0"> - <bounds x="100" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix864" element="dmd_dot" state="0"> - <bounds x="105" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix865" element="dmd_dot" state="0"> - <bounds x="110" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix866" element="dmd_dot" state="0"> - <bounds x="115" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix867" element="dmd_dot" state="0"> - <bounds x="120" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix868" element="dmd_dot" state="0"> - <bounds x="125" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix869" element="dmd_dot" state="0"> - <bounds x="130" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix870" element="dmd_dot" state="0"> - <bounds x="135" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix871" element="dmd_dot" state="0"> - <bounds x="140" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix872" element="dmd_dot" state="0"> - <bounds x="145" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix873" element="dmd_dot" state="0"> - <bounds x="150" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix874" element="dmd_dot" state="0"> - <bounds x="155" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix875" element="dmd_dot" state="0"> - <bounds x="160" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix876" element="dmd_dot" state="0"> - <bounds x="165" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix877" element="dmd_dot" state="0"> - <bounds x="170" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix878" element="dmd_dot" state="0"> - <bounds x="175" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix879" element="dmd_dot" state="0"> - <bounds x="180" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix880" element="dmd_dot" state="0"> - <bounds x="185" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix881" element="dmd_dot" state="0"> - <bounds x="190" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix882" element="dmd_dot" state="0"> - <bounds x="195" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix883" element="dmd_dot" state="0"> - <bounds x="200" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix884" element="dmd_dot" state="0"> - <bounds x="205" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix885" element="dmd_dot" state="0"> - <bounds x="210" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix886" element="dmd_dot" state="0"> - <bounds x="215" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix887" element="dmd_dot" state="0"> - <bounds x="220" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix888" element="dmd_dot" state="0"> - <bounds x="225" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix889" element="dmd_dot" state="0"> - <bounds x="230" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix890" element="dmd_dot" state="0"> - <bounds x="235" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix891" element="dmd_dot" state="0"> - <bounds x="240" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix892" element="dmd_dot" state="0"> - <bounds x="245" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix893" element="dmd_dot" state="0"> - <bounds x="250" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix894" element="dmd_dot" state="0"> - <bounds x="255" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix895" element="dmd_dot" state="0"> - <bounds x="260" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix896" element="dmd_dot" state="0"> - <bounds x="265" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix897" element="dmd_dot" state="0"> - <bounds x="270" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix898" element="dmd_dot" state="0"> - <bounds x="275" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix899" element="dmd_dot" state="0"> - <bounds x="280" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix900" element="dmd_dot" state="0"> - <bounds x="285" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix901" element="dmd_dot" state="0"> - <bounds x="290" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix902" element="dmd_dot" state="0"> - <bounds x="295" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix903" element="dmd_dot" state="0"> - <bounds x="300" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix904" element="dmd_dot" state="0"> - <bounds x="305" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix905" element="dmd_dot" state="0"> - <bounds x="310" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix906" element="dmd_dot" state="0"> - <bounds x="315" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix907" element="dmd_dot" state="0"> - <bounds x="320" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix908" element="dmd_dot" state="0"> - <bounds x="325" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix909" element="dmd_dot" state="0"> - <bounds x="330" y="350" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix910" element="dmd_dot" state="0"> - <bounds x="10" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix911" element="dmd_dot" state="0"> - <bounds x="15" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix912" element="dmd_dot" state="0"> - <bounds x="20" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix913" element="dmd_dot" state="0"> - <bounds x="25" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix914" element="dmd_dot" state="0"> - <bounds x="30" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix915" element="dmd_dot" state="0"> - <bounds x="35" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix916" element="dmd_dot" state="0"> - <bounds x="40" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix917" element="dmd_dot" state="0"> - <bounds x="45" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix918" element="dmd_dot" state="0"> - <bounds x="50" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix919" element="dmd_dot" state="0"> - <bounds x="55" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix920" element="dmd_dot" state="0"> - <bounds x="60" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix921" element="dmd_dot" state="0"> - <bounds x="65" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix922" element="dmd_dot" state="0"> - <bounds x="70" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix923" element="dmd_dot" state="0"> - <bounds x="75" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix924" element="dmd_dot" state="0"> - <bounds x="80" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix925" element="dmd_dot" state="0"> - <bounds x="85" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix926" element="dmd_dot" state="0"> - <bounds x="90" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix927" element="dmd_dot" state="0"> - <bounds x="95" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix928" element="dmd_dot" state="0"> - <bounds x="100" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix929" element="dmd_dot" state="0"> - <bounds x="105" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix930" element="dmd_dot" state="0"> - <bounds x="110" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix931" element="dmd_dot" state="0"> - <bounds x="115" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix932" element="dmd_dot" state="0"> - <bounds x="120" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix933" element="dmd_dot" state="0"> - <bounds x="125" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix934" element="dmd_dot" state="0"> - <bounds x="130" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix935" element="dmd_dot" state="0"> - <bounds x="135" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix936" element="dmd_dot" state="0"> - <bounds x="140" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix937" element="dmd_dot" state="0"> - <bounds x="145" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix938" element="dmd_dot" state="0"> - <bounds x="150" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix939" element="dmd_dot" state="0"> - <bounds x="155" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix940" element="dmd_dot" state="0"> - <bounds x="160" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix941" element="dmd_dot" state="0"> - <bounds x="165" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix942" element="dmd_dot" state="0"> - <bounds x="170" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix943" element="dmd_dot" state="0"> - <bounds x="175" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix944" element="dmd_dot" state="0"> - <bounds x="180" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix945" element="dmd_dot" state="0"> - <bounds x="185" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix946" element="dmd_dot" state="0"> - <bounds x="190" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix947" element="dmd_dot" state="0"> - <bounds x="195" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix948" element="dmd_dot" state="0"> - <bounds x="200" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix949" element="dmd_dot" state="0"> - <bounds x="205" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix950" element="dmd_dot" state="0"> - <bounds x="210" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix951" element="dmd_dot" state="0"> - <bounds x="215" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix952" element="dmd_dot" state="0"> - <bounds x="220" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix953" element="dmd_dot" state="0"> - <bounds x="225" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix954" element="dmd_dot" state="0"> - <bounds x="230" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix955" element="dmd_dot" state="0"> - <bounds x="235" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix956" element="dmd_dot" state="0"> - <bounds x="240" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix957" element="dmd_dot" state="0"> - <bounds x="245" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix958" element="dmd_dot" state="0"> - <bounds x="250" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix959" element="dmd_dot" state="0"> - <bounds x="255" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix960" element="dmd_dot" state="0"> - <bounds x="260" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix961" element="dmd_dot" state="0"> - <bounds x="265" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix962" element="dmd_dot" state="0"> - <bounds x="270" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix963" element="dmd_dot" state="0"> - <bounds x="275" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix964" element="dmd_dot" state="0"> - <bounds x="280" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix965" element="dmd_dot" state="0"> - <bounds x="285" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix966" element="dmd_dot" state="0"> - <bounds x="290" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix967" element="dmd_dot" state="0"> - <bounds x="295" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix968" element="dmd_dot" state="0"> - <bounds x="300" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix969" element="dmd_dot" state="0"> - <bounds x="305" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix970" element="dmd_dot" state="0"> - <bounds x="310" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix971" element="dmd_dot" state="0"> - <bounds x="315" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix972" element="dmd_dot" state="0"> - <bounds x="320" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix973" element="dmd_dot" state="0"> - <bounds x="325" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix974" element="dmd_dot" state="0"> - <bounds x="330" y="355" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix975" element="dmd_dot" state="0"> - <bounds x="10" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix976" element="dmd_dot" state="0"> - <bounds x="15" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix977" element="dmd_dot" state="0"> - <bounds x="20" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix978" element="dmd_dot" state="0"> - <bounds x="25" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix979" element="dmd_dot" state="0"> - <bounds x="30" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix980" element="dmd_dot" state="0"> - <bounds x="35" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix981" element="dmd_dot" state="0"> - <bounds x="40" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix982" element="dmd_dot" state="0"> - <bounds x="45" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix983" element="dmd_dot" state="0"> - <bounds x="50" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix984" element="dmd_dot" state="0"> - <bounds x="55" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix985" element="dmd_dot" state="0"> - <bounds x="60" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix986" element="dmd_dot" state="0"> - <bounds x="65" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix987" element="dmd_dot" state="0"> - <bounds x="70" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix988" element="dmd_dot" state="0"> - <bounds x="75" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix989" element="dmd_dot" state="0"> - <bounds x="80" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix990" element="dmd_dot" state="0"> - <bounds x="85" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix991" element="dmd_dot" state="0"> - <bounds x="90" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix992" element="dmd_dot" state="0"> - <bounds x="95" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix993" element="dmd_dot" state="0"> - <bounds x="100" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix994" element="dmd_dot" state="0"> - <bounds x="105" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix995" element="dmd_dot" state="0"> - <bounds x="110" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix996" element="dmd_dot" state="0"> - <bounds x="115" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix997" element="dmd_dot" state="0"> - <bounds x="120" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix998" element="dmd_dot" state="0"> - <bounds x="125" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix999" element="dmd_dot" state="0"> - <bounds x="130" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1000" element="dmd_dot" state="0"> - <bounds x="135" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1001" element="dmd_dot" state="0"> - <bounds x="140" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1002" element="dmd_dot" state="0"> - <bounds x="145" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1003" element="dmd_dot" state="0"> - <bounds x="150" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1004" element="dmd_dot" state="0"> - <bounds x="155" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1005" element="dmd_dot" state="0"> - <bounds x="160" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1006" element="dmd_dot" state="0"> - <bounds x="165" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1007" element="dmd_dot" state="0"> - <bounds x="170" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1008" element="dmd_dot" state="0"> - <bounds x="175" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1009" element="dmd_dot" state="0"> - <bounds x="180" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1010" element="dmd_dot" state="0"> - <bounds x="185" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1011" element="dmd_dot" state="0"> - <bounds x="190" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1012" element="dmd_dot" state="0"> - <bounds x="195" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1013" element="dmd_dot" state="0"> - <bounds x="200" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1014" element="dmd_dot" state="0"> - <bounds x="205" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1015" element="dmd_dot" state="0"> - <bounds x="210" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1016" element="dmd_dot" state="0"> - <bounds x="215" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1017" element="dmd_dot" state="0"> - <bounds x="220" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1018" element="dmd_dot" state="0"> - <bounds x="225" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1019" element="dmd_dot" state="0"> - <bounds x="230" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1020" element="dmd_dot" state="0"> - <bounds x="235" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1021" element="dmd_dot" state="0"> - <bounds x="240" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1022" element="dmd_dot" state="0"> - <bounds x="245" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1023" element="dmd_dot" state="0"> - <bounds x="250" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1024" element="dmd_dot" state="0"> - <bounds x="255" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1025" element="dmd_dot" state="0"> - <bounds x="260" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1026" element="dmd_dot" state="0"> - <bounds x="265" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1027" element="dmd_dot" state="0"> - <bounds x="270" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1028" element="dmd_dot" state="0"> - <bounds x="275" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1029" element="dmd_dot" state="0"> - <bounds x="280" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1030" element="dmd_dot" state="0"> - <bounds x="285" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1031" element="dmd_dot" state="0"> - <bounds x="290" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1032" element="dmd_dot" state="0"> - <bounds x="295" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1033" element="dmd_dot" state="0"> - <bounds x="300" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1034" element="dmd_dot" state="0"> - <bounds x="305" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1035" element="dmd_dot" state="0"> - <bounds x="310" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1036" element="dmd_dot" state="0"> - <bounds x="315" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1037" element="dmd_dot" state="0"> - <bounds x="320" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1038" element="dmd_dot" state="0"> - <bounds x="325" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1039" element="dmd_dot" state="0"> - <bounds x="330" y="360" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1040" element="dmd_dot" state="0"> - <bounds x="10" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1041" element="dmd_dot" state="0"> - <bounds x="15" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1042" element="dmd_dot" state="0"> - <bounds x="20" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1043" element="dmd_dot" state="0"> - <bounds x="25" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1044" element="dmd_dot" state="0"> - <bounds x="30" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1045" element="dmd_dot" state="0"> - <bounds x="35" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1046" element="dmd_dot" state="0"> - <bounds x="40" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1047" element="dmd_dot" state="0"> - <bounds x="45" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1048" element="dmd_dot" state="0"> - <bounds x="50" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1049" element="dmd_dot" state="0"> - <bounds x="55" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1050" element="dmd_dot" state="0"> - <bounds x="60" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1051" element="dmd_dot" state="0"> - <bounds x="65" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1052" element="dmd_dot" state="0"> - <bounds x="70" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1053" element="dmd_dot" state="0"> - <bounds x="75" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1054" element="dmd_dot" state="0"> - <bounds x="80" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1055" element="dmd_dot" state="0"> - <bounds x="85" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1056" element="dmd_dot" state="0"> - <bounds x="90" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1057" element="dmd_dot" state="0"> - <bounds x="95" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1058" element="dmd_dot" state="0"> - <bounds x="100" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1059" element="dmd_dot" state="0"> - <bounds x="105" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1060" element="dmd_dot" state="0"> - <bounds x="110" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1061" element="dmd_dot" state="0"> - <bounds x="115" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1062" element="dmd_dot" state="0"> - <bounds x="120" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1063" element="dmd_dot" state="0"> - <bounds x="125" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1064" element="dmd_dot" state="0"> - <bounds x="130" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1065" element="dmd_dot" state="0"> - <bounds x="135" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1066" element="dmd_dot" state="0"> - <bounds x="140" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1067" element="dmd_dot" state="0"> - <bounds x="145" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1068" element="dmd_dot" state="0"> - <bounds x="150" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1069" element="dmd_dot" state="0"> - <bounds x="155" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1070" element="dmd_dot" state="0"> - <bounds x="160" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1071" element="dmd_dot" state="0"> - <bounds x="165" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1072" element="dmd_dot" state="0"> - <bounds x="170" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1073" element="dmd_dot" state="0"> - <bounds x="175" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1074" element="dmd_dot" state="0"> - <bounds x="180" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1075" element="dmd_dot" state="0"> - <bounds x="185" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1076" element="dmd_dot" state="0"> - <bounds x="190" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1077" element="dmd_dot" state="0"> - <bounds x="195" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1078" element="dmd_dot" state="0"> - <bounds x="200" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1079" element="dmd_dot" state="0"> - <bounds x="205" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1080" element="dmd_dot" state="0"> - <bounds x="210" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1081" element="dmd_dot" state="0"> - <bounds x="215" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1082" element="dmd_dot" state="0"> - <bounds x="220" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1083" element="dmd_dot" state="0"> - <bounds x="225" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1084" element="dmd_dot" state="0"> - <bounds x="230" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1085" element="dmd_dot" state="0"> - <bounds x="235" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1086" element="dmd_dot" state="0"> - <bounds x="240" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1087" element="dmd_dot" state="0"> - <bounds x="245" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1088" element="dmd_dot" state="0"> - <bounds x="250" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1089" element="dmd_dot" state="0"> - <bounds x="255" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1090" element="dmd_dot" state="0"> - <bounds x="260" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1091" element="dmd_dot" state="0"> - <bounds x="265" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1092" element="dmd_dot" state="0"> - <bounds x="270" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1093" element="dmd_dot" state="0"> - <bounds x="275" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1094" element="dmd_dot" state="0"> - <bounds x="280" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1095" element="dmd_dot" state="0"> - <bounds x="285" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1096" element="dmd_dot" state="0"> - <bounds x="290" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1097" element="dmd_dot" state="0"> - <bounds x="295" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1098" element="dmd_dot" state="0"> - <bounds x="300" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1099" element="dmd_dot" state="0"> - <bounds x="305" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1100" element="dmd_dot" state="0"> - <bounds x="310" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1101" element="dmd_dot" state="0"> - <bounds x="315" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1102" element="dmd_dot" state="0"> - <bounds x="320" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1103" element="dmd_dot" state="0"> - <bounds x="325" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1104" element="dmd_dot" state="0"> - <bounds x="330" y="365" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1105" element="dmd_dot" state="0"> - <bounds x="10" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1106" element="dmd_dot" state="0"> - <bounds x="15" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1107" element="dmd_dot" state="0"> - <bounds x="20" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1108" element="dmd_dot" state="0"> - <bounds x="25" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1109" element="dmd_dot" state="0"> - <bounds x="30" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1110" element="dmd_dot" state="0"> - <bounds x="35" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1111" element="dmd_dot" state="0"> - <bounds x="40" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1112" element="dmd_dot" state="0"> - <bounds x="45" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1113" element="dmd_dot" state="0"> - <bounds x="50" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1114" element="dmd_dot" state="0"> - <bounds x="55" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1115" element="dmd_dot" state="0"> - <bounds x="60" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1116" element="dmd_dot" state="0"> - <bounds x="65" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1117" element="dmd_dot" state="0"> - <bounds x="70" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1118" element="dmd_dot" state="0"> - <bounds x="75" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1119" element="dmd_dot" state="0"> - <bounds x="80" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1120" element="dmd_dot" state="0"> - <bounds x="85" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1121" element="dmd_dot" state="0"> - <bounds x="90" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1122" element="dmd_dot" state="0"> - <bounds x="95" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1123" element="dmd_dot" state="0"> - <bounds x="100" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1124" element="dmd_dot" state="0"> - <bounds x="105" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1125" element="dmd_dot" state="0"> - <bounds x="110" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1126" element="dmd_dot" state="0"> - <bounds x="115" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1127" element="dmd_dot" state="0"> - <bounds x="120" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1128" element="dmd_dot" state="0"> - <bounds x="125" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1129" element="dmd_dot" state="0"> - <bounds x="130" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1130" element="dmd_dot" state="0"> - <bounds x="135" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1131" element="dmd_dot" state="0"> - <bounds x="140" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1132" element="dmd_dot" state="0"> - <bounds x="145" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1133" element="dmd_dot" state="0"> - <bounds x="150" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1134" element="dmd_dot" state="0"> - <bounds x="155" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1135" element="dmd_dot" state="0"> - <bounds x="160" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1136" element="dmd_dot" state="0"> - <bounds x="165" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1137" element="dmd_dot" state="0"> - <bounds x="170" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1138" element="dmd_dot" state="0"> - <bounds x="175" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1139" element="dmd_dot" state="0"> - <bounds x="180" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1140" element="dmd_dot" state="0"> - <bounds x="185" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1141" element="dmd_dot" state="0"> - <bounds x="190" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1142" element="dmd_dot" state="0"> - <bounds x="195" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1143" element="dmd_dot" state="0"> - <bounds x="200" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1144" element="dmd_dot" state="0"> - <bounds x="205" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1145" element="dmd_dot" state="0"> - <bounds x="210" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1146" element="dmd_dot" state="0"> - <bounds x="215" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1147" element="dmd_dot" state="0"> - <bounds x="220" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1148" element="dmd_dot" state="0"> - <bounds x="225" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1149" element="dmd_dot" state="0"> - <bounds x="230" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1150" element="dmd_dot" state="0"> - <bounds x="235" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1151" element="dmd_dot" state="0"> - <bounds x="240" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1152" element="dmd_dot" state="0"> - <bounds x="245" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1153" element="dmd_dot" state="0"> - <bounds x="250" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1154" element="dmd_dot" state="0"> - <bounds x="255" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1155" element="dmd_dot" state="0"> - <bounds x="260" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1156" element="dmd_dot" state="0"> - <bounds x="265" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1157" element="dmd_dot" state="0"> - <bounds x="270" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1158" element="dmd_dot" state="0"> - <bounds x="275" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1159" element="dmd_dot" state="0"> - <bounds x="280" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1160" element="dmd_dot" state="0"> - <bounds x="285" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1161" element="dmd_dot" state="0"> - <bounds x="290" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1162" element="dmd_dot" state="0"> - <bounds x="295" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1163" element="dmd_dot" state="0"> - <bounds x="300" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1164" element="dmd_dot" state="0"> - <bounds x="305" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1165" element="dmd_dot" state="0"> - <bounds x="310" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1166" element="dmd_dot" state="0"> - <bounds x="315" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1167" element="dmd_dot" state="0"> - <bounds x="320" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1168" element="dmd_dot" state="0"> - <bounds x="325" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1169" element="dmd_dot" state="0"> - <bounds x="330" y="370" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1170" element="dmd_dot" state="0"> - <bounds x="10" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1171" element="dmd_dot" state="0"> - <bounds x="15" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1172" element="dmd_dot" state="0"> - <bounds x="20" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1173" element="dmd_dot" state="0"> - <bounds x="25" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1174" element="dmd_dot" state="0"> - <bounds x="30" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1175" element="dmd_dot" state="0"> - <bounds x="35" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1176" element="dmd_dot" state="0"> - <bounds x="40" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1177" element="dmd_dot" state="0"> - <bounds x="45" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1178" element="dmd_dot" state="0"> - <bounds x="50" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1179" element="dmd_dot" state="0"> - <bounds x="55" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1180" element="dmd_dot" state="0"> - <bounds x="60" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1181" element="dmd_dot" state="0"> - <bounds x="65" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1182" element="dmd_dot" state="0"> - <bounds x="70" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1183" element="dmd_dot" state="0"> - <bounds x="75" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1184" element="dmd_dot" state="0"> - <bounds x="80" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1185" element="dmd_dot" state="0"> - <bounds x="85" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1186" element="dmd_dot" state="0"> - <bounds x="90" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1187" element="dmd_dot" state="0"> - <bounds x="95" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1188" element="dmd_dot" state="0"> - <bounds x="100" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1189" element="dmd_dot" state="0"> - <bounds x="105" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1190" element="dmd_dot" state="0"> - <bounds x="110" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1191" element="dmd_dot" state="0"> - <bounds x="115" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1192" element="dmd_dot" state="0"> - <bounds x="120" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1193" element="dmd_dot" state="0"> - <bounds x="125" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1194" element="dmd_dot" state="0"> - <bounds x="130" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1195" element="dmd_dot" state="0"> - <bounds x="135" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1196" element="dmd_dot" state="0"> - <bounds x="140" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1197" element="dmd_dot" state="0"> - <bounds x="145" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1198" element="dmd_dot" state="0"> - <bounds x="150" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1199" element="dmd_dot" state="0"> - <bounds x="155" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1200" element="dmd_dot" state="0"> - <bounds x="160" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1201" element="dmd_dot" state="0"> - <bounds x="165" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1202" element="dmd_dot" state="0"> - <bounds x="170" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1203" element="dmd_dot" state="0"> - <bounds x="175" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1204" element="dmd_dot" state="0"> - <bounds x="180" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1205" element="dmd_dot" state="0"> - <bounds x="185" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1206" element="dmd_dot" state="0"> - <bounds x="190" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1207" element="dmd_dot" state="0"> - <bounds x="195" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1208" element="dmd_dot" state="0"> - <bounds x="200" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1209" element="dmd_dot" state="0"> - <bounds x="205" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1210" element="dmd_dot" state="0"> - <bounds x="210" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1211" element="dmd_dot" state="0"> - <bounds x="215" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1212" element="dmd_dot" state="0"> - <bounds x="220" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1213" element="dmd_dot" state="0"> - <bounds x="225" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1214" element="dmd_dot" state="0"> - <bounds x="230" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1215" element="dmd_dot" state="0"> - <bounds x="235" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1216" element="dmd_dot" state="0"> - <bounds x="240" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1217" element="dmd_dot" state="0"> - <bounds x="245" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1218" element="dmd_dot" state="0"> - <bounds x="250" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1219" element="dmd_dot" state="0"> - <bounds x="255" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1220" element="dmd_dot" state="0"> - <bounds x="260" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1221" element="dmd_dot" state="0"> - <bounds x="265" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1222" element="dmd_dot" state="0"> - <bounds x="270" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1223" element="dmd_dot" state="0"> - <bounds x="275" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1224" element="dmd_dot" state="0"> - <bounds x="280" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1225" element="dmd_dot" state="0"> - <bounds x="285" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1226" element="dmd_dot" state="0"> - <bounds x="290" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1227" element="dmd_dot" state="0"> - <bounds x="295" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1228" element="dmd_dot" state="0"> - <bounds x="300" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1229" element="dmd_dot" state="0"> - <bounds x="305" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1230" element="dmd_dot" state="0"> - <bounds x="310" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1231" element="dmd_dot" state="0"> - <bounds x="315" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1232" element="dmd_dot" state="0"> - <bounds x="320" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1233" element="dmd_dot" state="0"> - <bounds x="325" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1234" element="dmd_dot" state="0"> - <bounds x="330" y="375" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1235" element="dmd_dot" state="0"> - <bounds x="10" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1236" element="dmd_dot" state="0"> - <bounds x="15" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1237" element="dmd_dot" state="0"> - <bounds x="20" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1238" element="dmd_dot" state="0"> - <bounds x="25" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1239" element="dmd_dot" state="0"> - <bounds x="30" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1240" element="dmd_dot" state="0"> - <bounds x="35" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1241" element="dmd_dot" state="0"> - <bounds x="40" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1242" element="dmd_dot" state="0"> - <bounds x="45" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1243" element="dmd_dot" state="0"> - <bounds x="50" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1244" element="dmd_dot" state="0"> - <bounds x="55" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1245" element="dmd_dot" state="0"> - <bounds x="60" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1246" element="dmd_dot" state="0"> - <bounds x="65" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1247" element="dmd_dot" state="0"> - <bounds x="70" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1248" element="dmd_dot" state="0"> - <bounds x="75" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1249" element="dmd_dot" state="0"> - <bounds x="80" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1250" element="dmd_dot" state="0"> - <bounds x="85" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1251" element="dmd_dot" state="0"> - <bounds x="90" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1252" element="dmd_dot" state="0"> - <bounds x="95" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1253" element="dmd_dot" state="0"> - <bounds x="100" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1254" element="dmd_dot" state="0"> - <bounds x="105" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1255" element="dmd_dot" state="0"> - <bounds x="110" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1256" element="dmd_dot" state="0"> - <bounds x="115" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1257" element="dmd_dot" state="0"> - <bounds x="120" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1258" element="dmd_dot" state="0"> - <bounds x="125" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1259" element="dmd_dot" state="0"> - <bounds x="130" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1260" element="dmd_dot" state="0"> - <bounds x="135" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1261" element="dmd_dot" state="0"> - <bounds x="140" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1262" element="dmd_dot" state="0"> - <bounds x="145" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1263" element="dmd_dot" state="0"> - <bounds x="150" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1264" element="dmd_dot" state="0"> - <bounds x="155" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1265" element="dmd_dot" state="0"> - <bounds x="160" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1266" element="dmd_dot" state="0"> - <bounds x="165" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1267" element="dmd_dot" state="0"> - <bounds x="170" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1268" element="dmd_dot" state="0"> - <bounds x="175" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1269" element="dmd_dot" state="0"> - <bounds x="180" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1270" element="dmd_dot" state="0"> - <bounds x="185" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1271" element="dmd_dot" state="0"> - <bounds x="190" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1272" element="dmd_dot" state="0"> - <bounds x="195" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1273" element="dmd_dot" state="0"> - <bounds x="200" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1274" element="dmd_dot" state="0"> - <bounds x="205" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1275" element="dmd_dot" state="0"> - <bounds x="210" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1276" element="dmd_dot" state="0"> - <bounds x="215" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1277" element="dmd_dot" state="0"> - <bounds x="220" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1278" element="dmd_dot" state="0"> - <bounds x="225" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1279" element="dmd_dot" state="0"> - <bounds x="230" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1280" element="dmd_dot" state="0"> - <bounds x="235" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1281" element="dmd_dot" state="0"> - <bounds x="240" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1282" element="dmd_dot" state="0"> - <bounds x="245" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1283" element="dmd_dot" state="0"> - <bounds x="250" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1284" element="dmd_dot" state="0"> - <bounds x="255" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1285" element="dmd_dot" state="0"> - <bounds x="260" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1286" element="dmd_dot" state="0"> - <bounds x="265" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1287" element="dmd_dot" state="0"> - <bounds x="270" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1288" element="dmd_dot" state="0"> - <bounds x="275" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1289" element="dmd_dot" state="0"> - <bounds x="280" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1290" element="dmd_dot" state="0"> - <bounds x="285" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1291" element="dmd_dot" state="0"> - <bounds x="290" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1292" element="dmd_dot" state="0"> - <bounds x="295" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1293" element="dmd_dot" state="0"> - <bounds x="300" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1294" element="dmd_dot" state="0"> - <bounds x="305" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1295" element="dmd_dot" state="0"> - <bounds x="310" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1296" element="dmd_dot" state="0"> - <bounds x="315" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1297" element="dmd_dot" state="0"> - <bounds x="320" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1298" element="dmd_dot" state="0"> - <bounds x="325" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1299" element="dmd_dot" state="0"> - <bounds x="330" y="380" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1300" element="dmd_dot" state="0"> - <bounds x="10" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1301" element="dmd_dot" state="0"> - <bounds x="15" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1302" element="dmd_dot" state="0"> - <bounds x="20" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1303" element="dmd_dot" state="0"> - <bounds x="25" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1304" element="dmd_dot" state="0"> - <bounds x="30" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1305" element="dmd_dot" state="0"> - <bounds x="35" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1306" element="dmd_dot" state="0"> - <bounds x="40" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1307" element="dmd_dot" state="0"> - <bounds x="45" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1308" element="dmd_dot" state="0"> - <bounds x="50" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1309" element="dmd_dot" state="0"> - <bounds x="55" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1310" element="dmd_dot" state="0"> - <bounds x="60" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1311" element="dmd_dot" state="0"> - <bounds x="65" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1312" element="dmd_dot" state="0"> - <bounds x="70" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1313" element="dmd_dot" state="0"> - <bounds x="75" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1314" element="dmd_dot" state="0"> - <bounds x="80" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1315" element="dmd_dot" state="0"> - <bounds x="85" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1316" element="dmd_dot" state="0"> - <bounds x="90" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1317" element="dmd_dot" state="0"> - <bounds x="95" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1318" element="dmd_dot" state="0"> - <bounds x="100" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1319" element="dmd_dot" state="0"> - <bounds x="105" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1320" element="dmd_dot" state="0"> - <bounds x="110" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1321" element="dmd_dot" state="0"> - <bounds x="115" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1322" element="dmd_dot" state="0"> - <bounds x="120" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1323" element="dmd_dot" state="0"> - <bounds x="125" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1324" element="dmd_dot" state="0"> - <bounds x="130" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1325" element="dmd_dot" state="0"> - <bounds x="135" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1326" element="dmd_dot" state="0"> - <bounds x="140" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1327" element="dmd_dot" state="0"> - <bounds x="145" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1328" element="dmd_dot" state="0"> - <bounds x="150" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1329" element="dmd_dot" state="0"> - <bounds x="155" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1330" element="dmd_dot" state="0"> - <bounds x="160" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1331" element="dmd_dot" state="0"> - <bounds x="165" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1332" element="dmd_dot" state="0"> - <bounds x="170" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1333" element="dmd_dot" state="0"> - <bounds x="175" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1334" element="dmd_dot" state="0"> - <bounds x="180" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1335" element="dmd_dot" state="0"> - <bounds x="185" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1336" element="dmd_dot" state="0"> - <bounds x="190" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1337" element="dmd_dot" state="0"> - <bounds x="195" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1338" element="dmd_dot" state="0"> - <bounds x="200" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1339" element="dmd_dot" state="0"> - <bounds x="205" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1340" element="dmd_dot" state="0"> - <bounds x="210" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1341" element="dmd_dot" state="0"> - <bounds x="215" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1342" element="dmd_dot" state="0"> - <bounds x="220" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1343" element="dmd_dot" state="0"> - <bounds x="225" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1344" element="dmd_dot" state="0"> - <bounds x="230" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1345" element="dmd_dot" state="0"> - <bounds x="235" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1346" element="dmd_dot" state="0"> - <bounds x="240" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1347" element="dmd_dot" state="0"> - <bounds x="245" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1348" element="dmd_dot" state="0"> - <bounds x="250" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1349" element="dmd_dot" state="0"> - <bounds x="255" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1350" element="dmd_dot" state="0"> - <bounds x="260" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1351" element="dmd_dot" state="0"> - <bounds x="265" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1352" element="dmd_dot" state="0"> - <bounds x="270" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1353" element="dmd_dot" state="0"> - <bounds x="275" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1354" element="dmd_dot" state="0"> - <bounds x="280" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1355" element="dmd_dot" state="0"> - <bounds x="285" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1356" element="dmd_dot" state="0"> - <bounds x="290" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1357" element="dmd_dot" state="0"> - <bounds x="295" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1358" element="dmd_dot" state="0"> - <bounds x="300" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1359" element="dmd_dot" state="0"> - <bounds x="305" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1360" element="dmd_dot" state="0"> - <bounds x="310" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1361" element="dmd_dot" state="0"> - <bounds x="315" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1362" element="dmd_dot" state="0"> - <bounds x="320" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1363" element="dmd_dot" state="0"> - <bounds x="325" y="385" width="2" height="2"> - </bounds> - </backdrop> - <backdrop name="dotmatrix1364" element="dmd_dot" state="0"> - <bounds x="330" y="385" width="2" height="2"> - </bounds> - </backdrop> + + <!-- The DMD --> + <screen index="0"> + <bounds left="10" top="285" right="337" bottom="392" /> + </screen> + <backdrop name="label66" element="label_66"> <bounds x="605" y="300" width="31" height="19"> </bounds> diff --git a/src/mame/layout/sc4_dmd.lay b/src/mame/layout/sc4_dmd.lay index afdcce2e9ea..6202e15d5ba 100644 --- a/src/mame/layout/sc4_dmd.lay +++ b/src/mame/layout/sc4_dmd.lay @@ -96,4102 +96,11 @@ </element> <view name="AWP Simulated Video (No Artwork)"> - <backdrop name="dotmatrix0" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix2" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix3" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix4" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix5" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix6" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix7" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix8" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix9" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix10" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix11" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix12" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix13" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix14" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix15" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix16" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix17" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix18" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix19" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix20" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix21" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix22" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix23" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix24" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix25" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix26" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix27" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix28" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix29" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix30" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix31" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix32" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix33" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix34" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix35" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix36" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix37" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix38" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix39" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix40" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix41" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix42" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix43" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix44" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix45" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix46" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix47" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix48" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix49" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix50" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix51" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix52" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix53" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix54" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix55" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix56" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix57" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix58" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix59" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix60" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix61" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix62" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix63" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix64" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="200.0" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix65" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix66" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix67" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix68" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix69" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix70" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix71" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix72" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix73" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix74" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix75" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix76" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix77" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix78" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix79" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix80" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix81" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix82" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix83" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix84" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix85" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix86" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix87" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix88" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix89" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix90" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix91" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix92" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix93" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix94" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix95" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix96" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix97" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix98" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix99" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix100" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix101" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix102" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix103" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix104" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix105" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix106" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix107" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix108" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix109" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix110" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix111" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix112" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix113" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix114" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix115" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix116" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix117" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix118" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix119" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix120" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix121" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix122" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix123" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix124" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix125" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix126" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix127" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix128" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix129" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="201.61904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix130" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix131" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix132" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix133" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix134" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix135" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix136" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix137" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix138" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix139" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix140" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix141" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix142" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix143" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix144" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix145" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix146" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix147" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix148" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix149" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix150" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix151" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix152" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix153" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix154" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix155" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix156" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix157" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix158" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix159" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix160" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix161" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix162" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix163" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix164" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix165" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix166" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix167" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix168" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix169" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix170" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix171" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix172" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix173" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix174" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix175" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix176" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix177" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix178" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix179" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix180" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix181" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix182" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix183" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix184" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix185" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix186" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix187" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix188" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix189" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix190" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix191" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix192" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix193" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix194" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="203.23809523809524" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix195" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix196" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix197" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix198" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix199" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix200" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix201" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix202" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix203" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix204" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix205" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix206" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix207" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix208" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix209" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix210" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix211" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix212" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix213" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix214" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix215" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix216" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix217" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix218" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix219" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix220" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix221" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix222" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix223" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix224" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix225" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix226" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix227" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix228" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix229" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix230" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix231" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix232" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix233" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix234" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix235" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix236" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix237" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix238" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix239" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix240" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix241" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix242" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix243" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix244" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix245" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix246" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix247" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix248" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix249" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix250" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix251" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix252" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix253" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix254" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix255" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix256" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix257" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix258" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix259" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="204.85714285714286" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix260" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix261" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix262" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix263" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix264" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix265" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix266" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix267" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix268" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix269" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix270" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix271" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix272" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix273" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix274" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix275" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix276" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix277" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix278" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix279" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix280" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix281" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix282" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix283" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix284" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix285" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix286" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix287" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix288" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix289" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix290" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix291" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix292" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix293" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix294" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix295" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix296" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix297" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix298" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix299" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix300" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix301" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix302" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix303" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix304" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix305" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix306" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix307" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix308" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix309" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix310" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix311" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix312" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix313" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix314" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix315" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix316" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix317" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix318" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix319" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix320" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix321" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix322" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix323" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix324" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="206.47619047619048" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix325" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix326" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix327" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix328" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix329" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix330" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix331" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix332" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix333" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix334" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix335" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix336" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix337" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix338" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix339" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix340" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix341" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix342" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix343" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix344" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix345" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix346" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix347" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix348" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix349" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix350" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix351" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix352" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix353" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix354" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix355" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix356" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix357" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix358" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix359" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix360" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix361" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix362" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix363" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix364" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix365" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix366" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix367" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix368" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix369" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix370" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix371" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix372" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix373" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix374" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix375" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix376" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix377" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix378" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix379" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix380" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix381" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix382" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix383" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix384" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix385" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix386" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix387" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix388" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix389" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="208.0952380952381" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix390" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix391" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix392" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix393" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix394" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix395" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix396" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix397" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix398" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix399" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix400" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix401" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix402" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix403" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix404" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix405" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix406" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix407" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix408" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix409" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix410" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix411" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix412" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix413" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix414" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix415" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix416" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix417" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix418" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix419" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix420" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix421" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix422" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix423" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix424" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix425" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix426" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix427" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix428" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix429" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix430" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix431" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix432" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix433" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix434" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix435" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix436" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix437" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix438" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix439" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix440" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix441" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix442" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix443" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix444" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix445" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix446" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix447" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix448" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix449" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix450" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix451" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix452" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix453" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix454" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="209.71428571428572" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix455" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix456" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix457" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix458" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix459" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix460" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix461" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix462" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix463" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix464" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix465" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix466" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix467" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix468" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix469" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix470" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix471" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix472" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix473" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix474" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix475" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix476" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix477" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix478" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix479" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix480" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix481" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix482" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix483" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix484" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix485" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix486" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix487" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix488" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix489" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix490" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix491" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix492" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix493" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix494" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix495" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix496" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix497" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix498" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix499" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix500" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix501" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix502" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix503" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix504" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix505" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix506" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix507" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix508" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix509" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix510" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix511" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix512" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix513" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix514" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix515" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix516" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix517" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix518" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix519" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="211.33333333333334" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix520" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix521" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix522" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix523" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix524" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix525" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix526" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix527" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix528" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix529" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix530" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix531" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix532" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix533" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix534" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix535" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix536" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix537" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix538" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix539" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix540" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix541" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix542" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix543" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix544" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix545" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix546" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix547" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix548" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix549" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix550" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix551" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix552" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix553" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix554" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix555" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix556" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix557" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix558" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix559" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix560" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix561" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix562" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix563" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix564" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix565" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix566" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix567" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix568" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix569" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix570" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix571" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix572" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix573" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix574" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix575" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix576" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix577" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix578" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix579" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix580" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix581" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix582" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix583" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix584" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="212.95238095238096" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix585" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix586" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix587" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix588" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix589" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix590" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix591" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix592" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix593" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix594" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix595" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix596" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix597" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix598" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix599" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix600" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix601" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix602" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix603" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix604" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix605" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix606" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix607" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix608" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix609" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix610" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix611" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix612" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix613" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix614" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix615" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix616" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix617" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix618" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix619" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix620" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix621" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix622" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix623" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix624" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix625" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix626" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix627" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix628" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix629" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix630" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix631" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix632" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix633" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix634" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix635" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix636" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix637" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix638" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix639" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix640" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix641" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix642" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix643" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix644" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix645" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix646" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix647" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix648" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix649" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="214.57142857142858" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix650" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix651" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix652" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix653" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix654" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix655" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix656" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix657" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix658" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix659" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix660" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix661" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix662" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix663" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix664" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix665" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix666" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix667" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix668" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix669" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix670" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix671" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix672" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix673" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix674" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix675" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix676" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix677" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix678" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix679" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix680" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix681" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix682" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix683" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix684" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix685" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix686" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix687" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix688" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix689" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix690" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix691" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix692" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix693" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix694" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix695" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix696" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix697" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix698" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix699" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix700" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix701" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix702" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix703" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix704" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix705" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix706" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix707" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix708" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix709" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix710" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix711" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix712" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix713" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix714" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="216.1904761904762" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix715" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix716" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix717" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix718" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix719" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix720" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix721" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix722" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix723" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix724" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix725" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix726" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix727" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix728" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix729" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix730" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix731" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix732" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix733" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix734" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix735" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix736" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix737" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix738" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix739" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix740" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix741" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix742" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix743" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix744" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix745" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix746" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix747" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix748" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix749" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix750" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix751" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix752" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix753" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix754" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix755" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix756" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix757" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix758" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix759" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix760" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix761" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix762" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix763" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix764" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix765" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix766" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix767" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix768" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix769" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix770" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix771" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix772" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix773" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix774" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix775" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix776" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix777" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix778" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix779" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="217.8095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix780" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix781" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix782" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix783" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix784" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix785" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix786" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix787" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix788" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix789" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix790" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix791" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix792" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix793" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix794" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix795" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix796" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix797" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix798" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix799" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix800" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix801" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix802" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix803" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix804" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix805" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix806" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix807" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix808" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix809" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix810" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix811" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix812" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix813" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix814" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix815" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix816" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix817" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix818" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix819" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix820" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix821" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix822" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix823" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix824" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix825" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix826" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix827" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix828" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix829" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix830" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix831" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix832" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix833" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix834" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix835" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix836" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix837" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix838" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix839" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix840" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix841" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix842" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix843" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix844" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="219.42857142857144" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix845" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix846" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix847" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix848" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix849" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix850" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix851" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix852" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix853" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix854" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix855" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix856" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix857" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix858" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix859" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix860" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix861" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix862" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix863" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix864" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix865" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix866" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix867" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix868" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix869" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix870" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix871" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix872" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix873" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix874" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix875" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix876" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix877" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix878" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix879" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix880" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix881" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix882" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix883" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix884" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix885" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix886" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix887" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix888" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix889" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix890" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix891" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix892" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix893" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix894" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix895" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix896" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix897" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix898" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix899" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix900" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix901" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix902" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix903" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix904" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix905" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix906" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix907" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix908" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix909" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="221.04761904761904" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix910" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix911" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix912" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix913" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix914" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix915" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix916" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix917" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix918" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix919" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix920" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix921" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix922" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix923" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix924" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix925" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix926" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix927" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix928" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix929" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix930" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix931" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix932" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix933" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix934" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix935" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix936" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix937" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix938" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix939" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix940" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix941" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix942" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix943" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix944" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix945" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix946" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix947" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix948" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix949" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix950" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix951" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix952" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix953" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix954" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix955" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix956" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix957" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix958" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix959" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix960" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix961" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix962" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix963" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix964" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix965" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix966" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix967" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix968" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix969" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix970" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix971" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix972" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix973" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix974" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="222.66666666666666" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix975" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix976" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix977" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix978" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix979" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix980" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix981" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix982" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix983" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix984" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix985" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix986" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix987" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix988" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix989" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix990" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix991" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix992" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix993" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix994" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix995" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix996" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix997" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix998" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix999" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1000" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1001" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1002" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1003" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1004" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1005" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1006" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1007" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1008" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1009" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1010" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1011" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1012" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1013" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1014" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1015" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1016" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1017" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1018" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1019" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1020" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1021" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1022" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1023" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1024" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1025" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1026" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1027" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1028" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1029" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1030" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1031" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1032" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1033" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1034" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1035" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1036" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1037" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1038" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1039" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="224.28571428571428" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1040" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1041" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1042" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1043" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1044" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1045" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1046" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1047" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1048" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1049" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1050" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1051" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1052" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1053" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1054" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1055" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1056" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1057" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1058" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1059" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1060" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1061" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1062" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1063" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1064" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1065" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1066" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1067" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1068" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1069" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1070" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1071" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1072" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1073" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1074" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1075" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1076" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1077" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1078" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1079" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1080" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1081" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1082" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1083" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1084" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1085" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1086" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1087" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1088" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1089" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1090" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1091" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1092" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1093" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1094" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1095" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1096" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1097" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1098" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1099" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1100" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1101" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1102" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1103" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1104" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="225.9047619047619" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1105" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1106" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1107" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1108" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1109" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1110" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1111" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1112" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1113" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1114" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1115" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1116" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1117" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1118" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1119" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1120" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1121" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1122" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1123" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1124" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1125" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1126" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1127" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1128" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1129" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1130" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1131" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1132" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1133" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1134" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1135" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1136" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1137" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1138" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1139" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1140" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1141" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1142" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1143" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1144" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1145" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1146" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1147" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1148" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1149" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1150" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1151" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1152" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1153" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1154" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1155" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1156" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1157" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1158" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1159" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1160" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1161" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1162" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1163" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1164" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1165" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1166" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1167" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1168" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1169" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="227.52380952380952" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1170" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1171" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1172" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1173" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1174" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1175" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1176" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1177" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1178" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1179" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1180" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1181" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1182" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1183" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1184" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1185" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1186" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1187" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1188" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1189" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1190" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1191" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1192" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1193" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1194" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1195" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1196" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1197" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1198" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1199" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1200" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1201" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1202" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1203" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1204" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1205" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1206" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1207" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1208" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1209" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1210" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1211" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1212" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1213" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1214" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1215" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1216" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1217" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1218" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1219" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1220" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1221" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1222" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1223" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1224" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1225" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1226" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1227" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1228" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1229" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1230" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1231" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1232" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1233" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1234" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="229.14285714285714" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1235" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1236" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1237" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1238" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1239" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1240" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1241" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1242" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1243" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1244" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1245" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1246" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1247" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1248" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1249" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1250" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1251" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1252" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1253" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1254" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1255" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1256" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1257" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1258" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1259" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1260" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1261" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1262" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1263" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1264" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1265" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1266" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1267" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1268" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1269" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1270" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1271" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1272" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1273" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1274" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1275" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1276" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1277" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1278" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1279" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1280" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1281" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1282" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1283" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1284" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1285" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1286" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1287" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1288" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1289" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1290" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1291" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1292" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1293" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1294" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1295" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1296" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1297" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1298" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1299" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="230.76190476190476" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1300" element="dotmatrixdot" state="0"> - <bounds x="210.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1301" element="dotmatrixdot" state="0"> - <bounds x="212.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1302" element="dotmatrixdot" state="0"> - <bounds x="214.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1303" element="dotmatrixdot" state="0"> - <bounds x="216.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1304" element="dotmatrixdot" state="0"> - <bounds x="218.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1305" element="dotmatrixdot" state="0"> - <bounds x="220.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1306" element="dotmatrixdot" state="0"> - <bounds x="222.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1307" element="dotmatrixdot" state="0"> - <bounds x="224.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1308" element="dotmatrixdot" state="0"> - <bounds x="226.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1309" element="dotmatrixdot" state="0"> - <bounds x="228.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1310" element="dotmatrixdot" state="0"> - <bounds x="230.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1311" element="dotmatrixdot" state="0"> - <bounds x="232.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1312" element="dotmatrixdot" state="0"> - <bounds x="234.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1313" element="dotmatrixdot" state="0"> - <bounds x="236.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1314" element="dotmatrixdot" state="0"> - <bounds x="238.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1315" element="dotmatrixdot" state="0"> - <bounds x="240.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1316" element="dotmatrixdot" state="0"> - <bounds x="242.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1317" element="dotmatrixdot" state="0"> - <bounds x="244.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1318" element="dotmatrixdot" state="0"> - <bounds x="246.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1319" element="dotmatrixdot" state="0"> - <bounds x="248.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1320" element="dotmatrixdot" state="0"> - <bounds x="250.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1321" element="dotmatrixdot" state="0"> - <bounds x="252.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1322" element="dotmatrixdot" state="0"> - <bounds x="254.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1323" element="dotmatrixdot" state="0"> - <bounds x="256.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1324" element="dotmatrixdot" state="0"> - <bounds x="258.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1325" element="dotmatrixdot" state="0"> - <bounds x="260.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1326" element="dotmatrixdot" state="0"> - <bounds x="262.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1327" element="dotmatrixdot" state="0"> - <bounds x="264.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1328" element="dotmatrixdot" state="0"> - <bounds x="266.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1329" element="dotmatrixdot" state="0"> - <bounds x="268.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1330" element="dotmatrixdot" state="0"> - <bounds x="270.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1331" element="dotmatrixdot" state="0"> - <bounds x="272.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1332" element="dotmatrixdot" state="0"> - <bounds x="274.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1333" element="dotmatrixdot" state="0"> - <bounds x="276.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1334" element="dotmatrixdot" state="0"> - <bounds x="278.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1335" element="dotmatrixdot" state="0"> - <bounds x="280.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1336" element="dotmatrixdot" state="0"> - <bounds x="282.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1337" element="dotmatrixdot" state="0"> - <bounds x="284.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1338" element="dotmatrixdot" state="0"> - <bounds x="286.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1339" element="dotmatrixdot" state="0"> - <bounds x="288.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1340" element="dotmatrixdot" state="0"> - <bounds x="290.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1341" element="dotmatrixdot" state="0"> - <bounds x="292.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1342" element="dotmatrixdot" state="0"> - <bounds x="294.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1343" element="dotmatrixdot" state="0"> - <bounds x="296.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1344" element="dotmatrixdot" state="0"> - <bounds x="298.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1345" element="dotmatrixdot" state="0"> - <bounds x="300.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1346" element="dotmatrixdot" state="0"> - <bounds x="302.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1347" element="dotmatrixdot" state="0"> - <bounds x="304.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1348" element="dotmatrixdot" state="0"> - <bounds x="306.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1349" element="dotmatrixdot" state="0"> - <bounds x="308.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1350" element="dotmatrixdot" state="0"> - <bounds x="310.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1351" element="dotmatrixdot" state="0"> - <bounds x="312.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1352" element="dotmatrixdot" state="0"> - <bounds x="314.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1353" element="dotmatrixdot" state="0"> - <bounds x="316.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1354" element="dotmatrixdot" state="0"> - <bounds x="318.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1355" element="dotmatrixdot" state="0"> - <bounds x="320.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1356" element="dotmatrixdot" state="0"> - <bounds x="322.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1357" element="dotmatrixdot" state="0"> - <bounds x="324.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1358" element="dotmatrixdot" state="0"> - <bounds x="326.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1359" element="dotmatrixdot" state="0"> - <bounds x="328.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1360" element="dotmatrixdot" state="0"> - <bounds x="330.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1361" element="dotmatrixdot" state="0"> - <bounds x="332.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1362" element="dotmatrixdot" state="0"> - <bounds x="334.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1363" element="dotmatrixdot" state="0"> - <bounds x="336.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> - <backdrop name="dotmatrix1364" element="dotmatrixdot" state="0"> - <bounds x="338.0" y="232.38095238095238" width="2.0" height="1.619047619047619" /> - </backdrop> + <!-- The DMD --> + <screen index="0"> + <bounds left="210" top="200" right="340" bottom="233" /> + </screen> <backdrop name="reel1" element="Steppers" state="0"> <bounds x="250" y="350" width="10" height="5"/> @@ -5928,4101 +1837,5 @@ <bounds x="250" y="124" width="9" height="19"/> </backdrop> </view> - <view name="DMD Display Output Only"> - <backdrop name="dotmatrix0" element="dotmatrixdot" state="0"> - <bounds x="0" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1" element="dotmatrixdot" state="0"> - <bounds x="1" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix2" element="dotmatrixdot" state="0"> - <bounds x="2" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix3" element="dotmatrixdot" state="0"> - <bounds x="3" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix4" element="dotmatrixdot" state="0"> - <bounds x="4" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix5" element="dotmatrixdot" state="0"> - <bounds x="5" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix6" element="dotmatrixdot" state="0"> - <bounds x="6" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix7" element="dotmatrixdot" state="0"> - <bounds x="7" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix8" element="dotmatrixdot" state="0"> - <bounds x="8" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix9" element="dotmatrixdot" state="0"> - <bounds x="9" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix10" element="dotmatrixdot" state="0"> - <bounds x="10" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix11" element="dotmatrixdot" state="0"> - <bounds x="11" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix12" element="dotmatrixdot" state="0"> - <bounds x="12" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix13" element="dotmatrixdot" state="0"> - <bounds x="13" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix14" element="dotmatrixdot" state="0"> - <bounds x="14" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix15" element="dotmatrixdot" state="0"> - <bounds x="15" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix16" element="dotmatrixdot" state="0"> - <bounds x="16" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix17" element="dotmatrixdot" state="0"> - <bounds x="17" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix18" element="dotmatrixdot" state="0"> - <bounds x="18" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix19" element="dotmatrixdot" state="0"> - <bounds x="19" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix20" element="dotmatrixdot" state="0"> - <bounds x="20" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix21" element="dotmatrixdot" state="0"> - <bounds x="21" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix22" element="dotmatrixdot" state="0"> - <bounds x="22" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix23" element="dotmatrixdot" state="0"> - <bounds x="23" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix24" element="dotmatrixdot" state="0"> - <bounds x="24" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix25" element="dotmatrixdot" state="0"> - <bounds x="25" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix26" element="dotmatrixdot" state="0"> - <bounds x="26" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix27" element="dotmatrixdot" state="0"> - <bounds x="27" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix28" element="dotmatrixdot" state="0"> - <bounds x="28" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix29" element="dotmatrixdot" state="0"> - <bounds x="29" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix30" element="dotmatrixdot" state="0"> - <bounds x="30" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix31" element="dotmatrixdot" state="0"> - <bounds x="31" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix32" element="dotmatrixdot" state="0"> - <bounds x="32" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix33" element="dotmatrixdot" state="0"> - <bounds x="33" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix34" element="dotmatrixdot" state="0"> - <bounds x="34" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix35" element="dotmatrixdot" state="0"> - <bounds x="35" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix36" element="dotmatrixdot" state="0"> - <bounds x="36" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix37" element="dotmatrixdot" state="0"> - <bounds x="37" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix38" element="dotmatrixdot" state="0"> - <bounds x="38" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix39" element="dotmatrixdot" state="0"> - <bounds x="39" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix40" element="dotmatrixdot" state="0"> - <bounds x="40" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix41" element="dotmatrixdot" state="0"> - <bounds x="41" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix42" element="dotmatrixdot" state="0"> - <bounds x="42" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix43" element="dotmatrixdot" state="0"> - <bounds x="43" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix44" element="dotmatrixdot" state="0"> - <bounds x="44" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix45" element="dotmatrixdot" state="0"> - <bounds x="45" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix46" element="dotmatrixdot" state="0"> - <bounds x="46" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix47" element="dotmatrixdot" state="0"> - <bounds x="47" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix48" element="dotmatrixdot" state="0"> - <bounds x="48" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix49" element="dotmatrixdot" state="0"> - <bounds x="49" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix50" element="dotmatrixdot" state="0"> - <bounds x="50" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix51" element="dotmatrixdot" state="0"> - <bounds x="51" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix52" element="dotmatrixdot" state="0"> - <bounds x="52" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix53" element="dotmatrixdot" state="0"> - <bounds x="53" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix54" element="dotmatrixdot" state="0"> - <bounds x="54" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix55" element="dotmatrixdot" state="0"> - <bounds x="55" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix56" element="dotmatrixdot" state="0"> - <bounds x="56" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix57" element="dotmatrixdot" state="0"> - <bounds x="57" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix58" element="dotmatrixdot" state="0"> - <bounds x="58" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix59" element="dotmatrixdot" state="0"> - <bounds x="59" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix60" element="dotmatrixdot" state="0"> - <bounds x="60" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix61" element="dotmatrixdot" state="0"> - <bounds x="61" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix62" element="dotmatrixdot" state="0"> - <bounds x="62" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix63" element="dotmatrixdot" state="0"> - <bounds x="63" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix64" element="dotmatrixdot" state="0"> - <bounds x="64" y="0" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix65" element="dotmatrixdot" state="0"> - <bounds x="0" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix66" element="dotmatrixdot" state="0"> - <bounds x="1" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix67" element="dotmatrixdot" state="0"> - <bounds x="2" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix68" element="dotmatrixdot" state="0"> - <bounds x="3" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix69" element="dotmatrixdot" state="0"> - <bounds x="4" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix70" element="dotmatrixdot" state="0"> - <bounds x="5" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix71" element="dotmatrixdot" state="0"> - <bounds x="6" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix72" element="dotmatrixdot" state="0"> - <bounds x="7" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix73" element="dotmatrixdot" state="0"> - <bounds x="8" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix74" element="dotmatrixdot" state="0"> - <bounds x="9" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix75" element="dotmatrixdot" state="0"> - <bounds x="10" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix76" element="dotmatrixdot" state="0"> - <bounds x="11" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix77" element="dotmatrixdot" state="0"> - <bounds x="12" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix78" element="dotmatrixdot" state="0"> - <bounds x="13" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix79" element="dotmatrixdot" state="0"> - <bounds x="14" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix80" element="dotmatrixdot" state="0"> - <bounds x="15" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix81" element="dotmatrixdot" state="0"> - <bounds x="16" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix82" element="dotmatrixdot" state="0"> - <bounds x="17" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix83" element="dotmatrixdot" state="0"> - <bounds x="18" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix84" element="dotmatrixdot" state="0"> - <bounds x="19" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix85" element="dotmatrixdot" state="0"> - <bounds x="20" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix86" element="dotmatrixdot" state="0"> - <bounds x="21" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix87" element="dotmatrixdot" state="0"> - <bounds x="22" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix88" element="dotmatrixdot" state="0"> - <bounds x="23" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix89" element="dotmatrixdot" state="0"> - <bounds x="24" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix90" element="dotmatrixdot" state="0"> - <bounds x="25" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix91" element="dotmatrixdot" state="0"> - <bounds x="26" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix92" element="dotmatrixdot" state="0"> - <bounds x="27" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix93" element="dotmatrixdot" state="0"> - <bounds x="28" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix94" element="dotmatrixdot" state="0"> - <bounds x="29" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix95" element="dotmatrixdot" state="0"> - <bounds x="30" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix96" element="dotmatrixdot" state="0"> - <bounds x="31" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix97" element="dotmatrixdot" state="0"> - <bounds x="32" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix98" element="dotmatrixdot" state="0"> - <bounds x="33" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix99" element="dotmatrixdot" state="0"> - <bounds x="34" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix100" element="dotmatrixdot" state="0"> - <bounds x="35" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix101" element="dotmatrixdot" state="0"> - <bounds x="36" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix102" element="dotmatrixdot" state="0"> - <bounds x="37" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix103" element="dotmatrixdot" state="0"> - <bounds x="38" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix104" element="dotmatrixdot" state="0"> - <bounds x="39" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix105" element="dotmatrixdot" state="0"> - <bounds x="40" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix106" element="dotmatrixdot" state="0"> - <bounds x="41" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix107" element="dotmatrixdot" state="0"> - <bounds x="42" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix108" element="dotmatrixdot" state="0"> - <bounds x="43" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix109" element="dotmatrixdot" state="0"> - <bounds x="44" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix110" element="dotmatrixdot" state="0"> - <bounds x="45" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix111" element="dotmatrixdot" state="0"> - <bounds x="46" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix112" element="dotmatrixdot" state="0"> - <bounds x="47" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix113" element="dotmatrixdot" state="0"> - <bounds x="48" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix114" element="dotmatrixdot" state="0"> - <bounds x="49" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix115" element="dotmatrixdot" state="0"> - <bounds x="50" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix116" element="dotmatrixdot" state="0"> - <bounds x="51" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix117" element="dotmatrixdot" state="0"> - <bounds x="52" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix118" element="dotmatrixdot" state="0"> - <bounds x="53" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix119" element="dotmatrixdot" state="0"> - <bounds x="54" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix120" element="dotmatrixdot" state="0"> - <bounds x="55" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix121" element="dotmatrixdot" state="0"> - <bounds x="56" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix122" element="dotmatrixdot" state="0"> - <bounds x="57" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix123" element="dotmatrixdot" state="0"> - <bounds x="58" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix124" element="dotmatrixdot" state="0"> - <bounds x="59" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix125" element="dotmatrixdot" state="0"> - <bounds x="60" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix126" element="dotmatrixdot" state="0"> - <bounds x="61" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix127" element="dotmatrixdot" state="0"> - <bounds x="62" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix128" element="dotmatrixdot" state="0"> - <bounds x="63" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix129" element="dotmatrixdot" state="0"> - <bounds x="64" y="1" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix130" element="dotmatrixdot" state="0"> - <bounds x="0" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix131" element="dotmatrixdot" state="0"> - <bounds x="1" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix132" element="dotmatrixdot" state="0"> - <bounds x="2" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix133" element="dotmatrixdot" state="0"> - <bounds x="3" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix134" element="dotmatrixdot" state="0"> - <bounds x="4" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix135" element="dotmatrixdot" state="0"> - <bounds x="5" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix136" element="dotmatrixdot" state="0"> - <bounds x="6" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix137" element="dotmatrixdot" state="0"> - <bounds x="7" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix138" element="dotmatrixdot" state="0"> - <bounds x="8" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix139" element="dotmatrixdot" state="0"> - <bounds x="9" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix140" element="dotmatrixdot" state="0"> - <bounds x="10" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix141" element="dotmatrixdot" state="0"> - <bounds x="11" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix142" element="dotmatrixdot" state="0"> - <bounds x="12" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix143" element="dotmatrixdot" state="0"> - <bounds x="13" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix144" element="dotmatrixdot" state="0"> - <bounds x="14" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix145" element="dotmatrixdot" state="0"> - <bounds x="15" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix146" element="dotmatrixdot" state="0"> - <bounds x="16" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix147" element="dotmatrixdot" state="0"> - <bounds x="17" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix148" element="dotmatrixdot" state="0"> - <bounds x="18" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix149" element="dotmatrixdot" state="0"> - <bounds x="19" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix150" element="dotmatrixdot" state="0"> - <bounds x="20" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix151" element="dotmatrixdot" state="0"> - <bounds x="21" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix152" element="dotmatrixdot" state="0"> - <bounds x="22" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix153" element="dotmatrixdot" state="0"> - <bounds x="23" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix154" element="dotmatrixdot" state="0"> - <bounds x="24" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix155" element="dotmatrixdot" state="0"> - <bounds x="25" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix156" element="dotmatrixdot" state="0"> - <bounds x="26" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix157" element="dotmatrixdot" state="0"> - <bounds x="27" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix158" element="dotmatrixdot" state="0"> - <bounds x="28" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix159" element="dotmatrixdot" state="0"> - <bounds x="29" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix160" element="dotmatrixdot" state="0"> - <bounds x="30" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix161" element="dotmatrixdot" state="0"> - <bounds x="31" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix162" element="dotmatrixdot" state="0"> - <bounds x="32" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix163" element="dotmatrixdot" state="0"> - <bounds x="33" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix164" element="dotmatrixdot" state="0"> - <bounds x="34" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix165" element="dotmatrixdot" state="0"> - <bounds x="35" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix166" element="dotmatrixdot" state="0"> - <bounds x="36" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix167" element="dotmatrixdot" state="0"> - <bounds x="37" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix168" element="dotmatrixdot" state="0"> - <bounds x="38" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix169" element="dotmatrixdot" state="0"> - <bounds x="39" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix170" element="dotmatrixdot" state="0"> - <bounds x="40" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix171" element="dotmatrixdot" state="0"> - <bounds x="41" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix172" element="dotmatrixdot" state="0"> - <bounds x="42" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix173" element="dotmatrixdot" state="0"> - <bounds x="43" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix174" element="dotmatrixdot" state="0"> - <bounds x="44" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix175" element="dotmatrixdot" state="0"> - <bounds x="45" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix176" element="dotmatrixdot" state="0"> - <bounds x="46" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix177" element="dotmatrixdot" state="0"> - <bounds x="47" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix178" element="dotmatrixdot" state="0"> - <bounds x="48" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix179" element="dotmatrixdot" state="0"> - <bounds x="49" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix180" element="dotmatrixdot" state="0"> - <bounds x="50" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix181" element="dotmatrixdot" state="0"> - <bounds x="51" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix182" element="dotmatrixdot" state="0"> - <bounds x="52" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix183" element="dotmatrixdot" state="0"> - <bounds x="53" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix184" element="dotmatrixdot" state="0"> - <bounds x="54" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix185" element="dotmatrixdot" state="0"> - <bounds x="55" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix186" element="dotmatrixdot" state="0"> - <bounds x="56" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix187" element="dotmatrixdot" state="0"> - <bounds x="57" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix188" element="dotmatrixdot" state="0"> - <bounds x="58" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix189" element="dotmatrixdot" state="0"> - <bounds x="59" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix190" element="dotmatrixdot" state="0"> - <bounds x="60" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix191" element="dotmatrixdot" state="0"> - <bounds x="61" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix192" element="dotmatrixdot" state="0"> - <bounds x="62" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix193" element="dotmatrixdot" state="0"> - <bounds x="63" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix194" element="dotmatrixdot" state="0"> - <bounds x="64" y="2" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix195" element="dotmatrixdot" state="0"> - <bounds x="0" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix196" element="dotmatrixdot" state="0"> - <bounds x="1" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix197" element="dotmatrixdot" state="0"> - <bounds x="2" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix198" element="dotmatrixdot" state="0"> - <bounds x="3" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix199" element="dotmatrixdot" state="0"> - <bounds x="4" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix200" element="dotmatrixdot" state="0"> - <bounds x="5" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix201" element="dotmatrixdot" state="0"> - <bounds x="6" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix202" element="dotmatrixdot" state="0"> - <bounds x="7" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix203" element="dotmatrixdot" state="0"> - <bounds x="8" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix204" element="dotmatrixdot" state="0"> - <bounds x="9" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix205" element="dotmatrixdot" state="0"> - <bounds x="10" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix206" element="dotmatrixdot" state="0"> - <bounds x="11" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix207" element="dotmatrixdot" state="0"> - <bounds x="12" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix208" element="dotmatrixdot" state="0"> - <bounds x="13" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix209" element="dotmatrixdot" state="0"> - <bounds x="14" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix210" element="dotmatrixdot" state="0"> - <bounds x="15" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix211" element="dotmatrixdot" state="0"> - <bounds x="16" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix212" element="dotmatrixdot" state="0"> - <bounds x="17" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix213" element="dotmatrixdot" state="0"> - <bounds x="18" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix214" element="dotmatrixdot" state="0"> - <bounds x="19" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix215" element="dotmatrixdot" state="0"> - <bounds x="20" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix216" element="dotmatrixdot" state="0"> - <bounds x="21" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix217" element="dotmatrixdot" state="0"> - <bounds x="22" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix218" element="dotmatrixdot" state="0"> - <bounds x="23" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix219" element="dotmatrixdot" state="0"> - <bounds x="24" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix220" element="dotmatrixdot" state="0"> - <bounds x="25" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix221" element="dotmatrixdot" state="0"> - <bounds x="26" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix222" element="dotmatrixdot" state="0"> - <bounds x="27" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix223" element="dotmatrixdot" state="0"> - <bounds x="28" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix224" element="dotmatrixdot" state="0"> - <bounds x="29" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix225" element="dotmatrixdot" state="0"> - <bounds x="30" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix226" element="dotmatrixdot" state="0"> - <bounds x="31" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix227" element="dotmatrixdot" state="0"> - <bounds x="32" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix228" element="dotmatrixdot" state="0"> - <bounds x="33" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix229" element="dotmatrixdot" state="0"> - <bounds x="34" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix230" element="dotmatrixdot" state="0"> - <bounds x="35" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix231" element="dotmatrixdot" state="0"> - <bounds x="36" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix232" element="dotmatrixdot" state="0"> - <bounds x="37" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix233" element="dotmatrixdot" state="0"> - <bounds x="38" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix234" element="dotmatrixdot" state="0"> - <bounds x="39" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix235" element="dotmatrixdot" state="0"> - <bounds x="40" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix236" element="dotmatrixdot" state="0"> - <bounds x="41" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix237" element="dotmatrixdot" state="0"> - <bounds x="42" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix238" element="dotmatrixdot" state="0"> - <bounds x="43" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix239" element="dotmatrixdot" state="0"> - <bounds x="44" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix240" element="dotmatrixdot" state="0"> - <bounds x="45" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix241" element="dotmatrixdot" state="0"> - <bounds x="46" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix242" element="dotmatrixdot" state="0"> - <bounds x="47" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix243" element="dotmatrixdot" state="0"> - <bounds x="48" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix244" element="dotmatrixdot" state="0"> - <bounds x="49" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix245" element="dotmatrixdot" state="0"> - <bounds x="50" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix246" element="dotmatrixdot" state="0"> - <bounds x="51" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix247" element="dotmatrixdot" state="0"> - <bounds x="52" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix248" element="dotmatrixdot" state="0"> - <bounds x="53" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix249" element="dotmatrixdot" state="0"> - <bounds x="54" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix250" element="dotmatrixdot" state="0"> - <bounds x="55" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix251" element="dotmatrixdot" state="0"> - <bounds x="56" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix252" element="dotmatrixdot" state="0"> - <bounds x="57" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix253" element="dotmatrixdot" state="0"> - <bounds x="58" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix254" element="dotmatrixdot" state="0"> - <bounds x="59" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix255" element="dotmatrixdot" state="0"> - <bounds x="60" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix256" element="dotmatrixdot" state="0"> - <bounds x="61" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix257" element="dotmatrixdot" state="0"> - <bounds x="62" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix258" element="dotmatrixdot" state="0"> - <bounds x="63" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix259" element="dotmatrixdot" state="0"> - <bounds x="64" y="3" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix260" element="dotmatrixdot" state="0"> - <bounds x="0" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix261" element="dotmatrixdot" state="0"> - <bounds x="1" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix262" element="dotmatrixdot" state="0"> - <bounds x="2" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix263" element="dotmatrixdot" state="0"> - <bounds x="3" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix264" element="dotmatrixdot" state="0"> - <bounds x="4" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix265" element="dotmatrixdot" state="0"> - <bounds x="5" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix266" element="dotmatrixdot" state="0"> - <bounds x="6" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix267" element="dotmatrixdot" state="0"> - <bounds x="7" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix268" element="dotmatrixdot" state="0"> - <bounds x="8" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix269" element="dotmatrixdot" state="0"> - <bounds x="9" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix270" element="dotmatrixdot" state="0"> - <bounds x="10" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix271" element="dotmatrixdot" state="0"> - <bounds x="11" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix272" element="dotmatrixdot" state="0"> - <bounds x="12" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix273" element="dotmatrixdot" state="0"> - <bounds x="13" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix274" element="dotmatrixdot" state="0"> - <bounds x="14" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix275" element="dotmatrixdot" state="0"> - <bounds x="15" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix276" element="dotmatrixdot" state="0"> - <bounds x="16" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix277" element="dotmatrixdot" state="0"> - <bounds x="17" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix278" element="dotmatrixdot" state="0"> - <bounds x="18" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix279" element="dotmatrixdot" state="0"> - <bounds x="19" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix280" element="dotmatrixdot" state="0"> - <bounds x="20" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix281" element="dotmatrixdot" state="0"> - <bounds x="21" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix282" element="dotmatrixdot" state="0"> - <bounds x="22" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix283" element="dotmatrixdot" state="0"> - <bounds x="23" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix284" element="dotmatrixdot" state="0"> - <bounds x="24" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix285" element="dotmatrixdot" state="0"> - <bounds x="25" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix286" element="dotmatrixdot" state="0"> - <bounds x="26" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix287" element="dotmatrixdot" state="0"> - <bounds x="27" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix288" element="dotmatrixdot" state="0"> - <bounds x="28" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix289" element="dotmatrixdot" state="0"> - <bounds x="29" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix290" element="dotmatrixdot" state="0"> - <bounds x="30" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix291" element="dotmatrixdot" state="0"> - <bounds x="31" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix292" element="dotmatrixdot" state="0"> - <bounds x="32" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix293" element="dotmatrixdot" state="0"> - <bounds x="33" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix294" element="dotmatrixdot" state="0"> - <bounds x="34" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix295" element="dotmatrixdot" state="0"> - <bounds x="35" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix296" element="dotmatrixdot" state="0"> - <bounds x="36" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix297" element="dotmatrixdot" state="0"> - <bounds x="37" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix298" element="dotmatrixdot" state="0"> - <bounds x="38" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix299" element="dotmatrixdot" state="0"> - <bounds x="39" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix300" element="dotmatrixdot" state="0"> - <bounds x="40" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix301" element="dotmatrixdot" state="0"> - <bounds x="41" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix302" element="dotmatrixdot" state="0"> - <bounds x="42" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix303" element="dotmatrixdot" state="0"> - <bounds x="43" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix304" element="dotmatrixdot" state="0"> - <bounds x="44" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix305" element="dotmatrixdot" state="0"> - <bounds x="45" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix306" element="dotmatrixdot" state="0"> - <bounds x="46" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix307" element="dotmatrixdot" state="0"> - <bounds x="47" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix308" element="dotmatrixdot" state="0"> - <bounds x="48" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix309" element="dotmatrixdot" state="0"> - <bounds x="49" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix310" element="dotmatrixdot" state="0"> - <bounds x="50" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix311" element="dotmatrixdot" state="0"> - <bounds x="51" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix312" element="dotmatrixdot" state="0"> - <bounds x="52" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix313" element="dotmatrixdot" state="0"> - <bounds x="53" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix314" element="dotmatrixdot" state="0"> - <bounds x="54" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix315" element="dotmatrixdot" state="0"> - <bounds x="55" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix316" element="dotmatrixdot" state="0"> - <bounds x="56" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix317" element="dotmatrixdot" state="0"> - <bounds x="57" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix318" element="dotmatrixdot" state="0"> - <bounds x="58" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix319" element="dotmatrixdot" state="0"> - <bounds x="59" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix320" element="dotmatrixdot" state="0"> - <bounds x="60" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix321" element="dotmatrixdot" state="0"> - <bounds x="61" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix322" element="dotmatrixdot" state="0"> - <bounds x="62" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix323" element="dotmatrixdot" state="0"> - <bounds x="63" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix324" element="dotmatrixdot" state="0"> - <bounds x="64" y="4" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix325" element="dotmatrixdot" state="0"> - <bounds x="0" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix326" element="dotmatrixdot" state="0"> - <bounds x="1" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix327" element="dotmatrixdot" state="0"> - <bounds x="2" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix328" element="dotmatrixdot" state="0"> - <bounds x="3" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix329" element="dotmatrixdot" state="0"> - <bounds x="4" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix330" element="dotmatrixdot" state="0"> - <bounds x="5" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix331" element="dotmatrixdot" state="0"> - <bounds x="6" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix332" element="dotmatrixdot" state="0"> - <bounds x="7" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix333" element="dotmatrixdot" state="0"> - <bounds x="8" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix334" element="dotmatrixdot" state="0"> - <bounds x="9" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix335" element="dotmatrixdot" state="0"> - <bounds x="10" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix336" element="dotmatrixdot" state="0"> - <bounds x="11" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix337" element="dotmatrixdot" state="0"> - <bounds x="12" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix338" element="dotmatrixdot" state="0"> - <bounds x="13" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix339" element="dotmatrixdot" state="0"> - <bounds x="14" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix340" element="dotmatrixdot" state="0"> - <bounds x="15" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix341" element="dotmatrixdot" state="0"> - <bounds x="16" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix342" element="dotmatrixdot" state="0"> - <bounds x="17" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix343" element="dotmatrixdot" state="0"> - <bounds x="18" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix344" element="dotmatrixdot" state="0"> - <bounds x="19" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix345" element="dotmatrixdot" state="0"> - <bounds x="20" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix346" element="dotmatrixdot" state="0"> - <bounds x="21" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix347" element="dotmatrixdot" state="0"> - <bounds x="22" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix348" element="dotmatrixdot" state="0"> - <bounds x="23" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix349" element="dotmatrixdot" state="0"> - <bounds x="24" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix350" element="dotmatrixdot" state="0"> - <bounds x="25" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix351" element="dotmatrixdot" state="0"> - <bounds x="26" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix352" element="dotmatrixdot" state="0"> - <bounds x="27" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix353" element="dotmatrixdot" state="0"> - <bounds x="28" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix354" element="dotmatrixdot" state="0"> - <bounds x="29" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix355" element="dotmatrixdot" state="0"> - <bounds x="30" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix356" element="dotmatrixdot" state="0"> - <bounds x="31" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix357" element="dotmatrixdot" state="0"> - <bounds x="32" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix358" element="dotmatrixdot" state="0"> - <bounds x="33" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix359" element="dotmatrixdot" state="0"> - <bounds x="34" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix360" element="dotmatrixdot" state="0"> - <bounds x="35" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix361" element="dotmatrixdot" state="0"> - <bounds x="36" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix362" element="dotmatrixdot" state="0"> - <bounds x="37" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix363" element="dotmatrixdot" state="0"> - <bounds x="38" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix364" element="dotmatrixdot" state="0"> - <bounds x="39" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix365" element="dotmatrixdot" state="0"> - <bounds x="40" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix366" element="dotmatrixdot" state="0"> - <bounds x="41" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix367" element="dotmatrixdot" state="0"> - <bounds x="42" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix368" element="dotmatrixdot" state="0"> - <bounds x="43" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix369" element="dotmatrixdot" state="0"> - <bounds x="44" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix370" element="dotmatrixdot" state="0"> - <bounds x="45" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix371" element="dotmatrixdot" state="0"> - <bounds x="46" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix372" element="dotmatrixdot" state="0"> - <bounds x="47" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix373" element="dotmatrixdot" state="0"> - <bounds x="48" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix374" element="dotmatrixdot" state="0"> - <bounds x="49" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix375" element="dotmatrixdot" state="0"> - <bounds x="50" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix376" element="dotmatrixdot" state="0"> - <bounds x="51" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix377" element="dotmatrixdot" state="0"> - <bounds x="52" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix378" element="dotmatrixdot" state="0"> - <bounds x="53" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix379" element="dotmatrixdot" state="0"> - <bounds x="54" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix380" element="dotmatrixdot" state="0"> - <bounds x="55" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix381" element="dotmatrixdot" state="0"> - <bounds x="56" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix382" element="dotmatrixdot" state="0"> - <bounds x="57" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix383" element="dotmatrixdot" state="0"> - <bounds x="58" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix384" element="dotmatrixdot" state="0"> - <bounds x="59" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix385" element="dotmatrixdot" state="0"> - <bounds x="60" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix386" element="dotmatrixdot" state="0"> - <bounds x="61" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix387" element="dotmatrixdot" state="0"> - <bounds x="62" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix388" element="dotmatrixdot" state="0"> - <bounds x="63" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix389" element="dotmatrixdot" state="0"> - <bounds x="64" y="5" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix390" element="dotmatrixdot" state="0"> - <bounds x="0" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix391" element="dotmatrixdot" state="0"> - <bounds x="1" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix392" element="dotmatrixdot" state="0"> - <bounds x="2" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix393" element="dotmatrixdot" state="0"> - <bounds x="3" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix394" element="dotmatrixdot" state="0"> - <bounds x="4" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix395" element="dotmatrixdot" state="0"> - <bounds x="5" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix396" element="dotmatrixdot" state="0"> - <bounds x="6" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix397" element="dotmatrixdot" state="0"> - <bounds x="7" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix398" element="dotmatrixdot" state="0"> - <bounds x="8" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix399" element="dotmatrixdot" state="0"> - <bounds x="9" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix400" element="dotmatrixdot" state="0"> - <bounds x="10" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix401" element="dotmatrixdot" state="0"> - <bounds x="11" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix402" element="dotmatrixdot" state="0"> - <bounds x="12" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix403" element="dotmatrixdot" state="0"> - <bounds x="13" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix404" element="dotmatrixdot" state="0"> - <bounds x="14" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix405" element="dotmatrixdot" state="0"> - <bounds x="15" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix406" element="dotmatrixdot" state="0"> - <bounds x="16" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix407" element="dotmatrixdot" state="0"> - <bounds x="17" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix408" element="dotmatrixdot" state="0"> - <bounds x="18" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix409" element="dotmatrixdot" state="0"> - <bounds x="19" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix410" element="dotmatrixdot" state="0"> - <bounds x="20" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix411" element="dotmatrixdot" state="0"> - <bounds x="21" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix412" element="dotmatrixdot" state="0"> - <bounds x="22" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix413" element="dotmatrixdot" state="0"> - <bounds x="23" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix414" element="dotmatrixdot" state="0"> - <bounds x="24" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix415" element="dotmatrixdot" state="0"> - <bounds x="25" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix416" element="dotmatrixdot" state="0"> - <bounds x="26" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix417" element="dotmatrixdot" state="0"> - <bounds x="27" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix418" element="dotmatrixdot" state="0"> - <bounds x="28" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix419" element="dotmatrixdot" state="0"> - <bounds x="29" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix420" element="dotmatrixdot" state="0"> - <bounds x="30" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix421" element="dotmatrixdot" state="0"> - <bounds x="31" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix422" element="dotmatrixdot" state="0"> - <bounds x="32" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix423" element="dotmatrixdot" state="0"> - <bounds x="33" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix424" element="dotmatrixdot" state="0"> - <bounds x="34" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix425" element="dotmatrixdot" state="0"> - <bounds x="35" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix426" element="dotmatrixdot" state="0"> - <bounds x="36" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix427" element="dotmatrixdot" state="0"> - <bounds x="37" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix428" element="dotmatrixdot" state="0"> - <bounds x="38" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix429" element="dotmatrixdot" state="0"> - <bounds x="39" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix430" element="dotmatrixdot" state="0"> - <bounds x="40" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix431" element="dotmatrixdot" state="0"> - <bounds x="41" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix432" element="dotmatrixdot" state="0"> - <bounds x="42" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix433" element="dotmatrixdot" state="0"> - <bounds x="43" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix434" element="dotmatrixdot" state="0"> - <bounds x="44" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix435" element="dotmatrixdot" state="0"> - <bounds x="45" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix436" element="dotmatrixdot" state="0"> - <bounds x="46" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix437" element="dotmatrixdot" state="0"> - <bounds x="47" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix438" element="dotmatrixdot" state="0"> - <bounds x="48" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix439" element="dotmatrixdot" state="0"> - <bounds x="49" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix440" element="dotmatrixdot" state="0"> - <bounds x="50" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix441" element="dotmatrixdot" state="0"> - <bounds x="51" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix442" element="dotmatrixdot" state="0"> - <bounds x="52" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix443" element="dotmatrixdot" state="0"> - <bounds x="53" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix444" element="dotmatrixdot" state="0"> - <bounds x="54" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix445" element="dotmatrixdot" state="0"> - <bounds x="55" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix446" element="dotmatrixdot" state="0"> - <bounds x="56" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix447" element="dotmatrixdot" state="0"> - <bounds x="57" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix448" element="dotmatrixdot" state="0"> - <bounds x="58" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix449" element="dotmatrixdot" state="0"> - <bounds x="59" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix450" element="dotmatrixdot" state="0"> - <bounds x="60" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix451" element="dotmatrixdot" state="0"> - <bounds x="61" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix452" element="dotmatrixdot" state="0"> - <bounds x="62" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix453" element="dotmatrixdot" state="0"> - <bounds x="63" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix454" element="dotmatrixdot" state="0"> - <bounds x="64" y="6" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix455" element="dotmatrixdot" state="0"> - <bounds x="0" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix456" element="dotmatrixdot" state="0"> - <bounds x="1" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix457" element="dotmatrixdot" state="0"> - <bounds x="2" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix458" element="dotmatrixdot" state="0"> - <bounds x="3" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix459" element="dotmatrixdot" state="0"> - <bounds x="4" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix460" element="dotmatrixdot" state="0"> - <bounds x="5" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix461" element="dotmatrixdot" state="0"> - <bounds x="6" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix462" element="dotmatrixdot" state="0"> - <bounds x="7" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix463" element="dotmatrixdot" state="0"> - <bounds x="8" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix464" element="dotmatrixdot" state="0"> - <bounds x="9" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix465" element="dotmatrixdot" state="0"> - <bounds x="10" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix466" element="dotmatrixdot" state="0"> - <bounds x="11" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix467" element="dotmatrixdot" state="0"> - <bounds x="12" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix468" element="dotmatrixdot" state="0"> - <bounds x="13" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix469" element="dotmatrixdot" state="0"> - <bounds x="14" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix470" element="dotmatrixdot" state="0"> - <bounds x="15" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix471" element="dotmatrixdot" state="0"> - <bounds x="16" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix472" element="dotmatrixdot" state="0"> - <bounds x="17" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix473" element="dotmatrixdot" state="0"> - <bounds x="18" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix474" element="dotmatrixdot" state="0"> - <bounds x="19" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix475" element="dotmatrixdot" state="0"> - <bounds x="20" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix476" element="dotmatrixdot" state="0"> - <bounds x="21" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix477" element="dotmatrixdot" state="0"> - <bounds x="22" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix478" element="dotmatrixdot" state="0"> - <bounds x="23" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix479" element="dotmatrixdot" state="0"> - <bounds x="24" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix480" element="dotmatrixdot" state="0"> - <bounds x="25" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix481" element="dotmatrixdot" state="0"> - <bounds x="26" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix482" element="dotmatrixdot" state="0"> - <bounds x="27" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix483" element="dotmatrixdot" state="0"> - <bounds x="28" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix484" element="dotmatrixdot" state="0"> - <bounds x="29" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix485" element="dotmatrixdot" state="0"> - <bounds x="30" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix486" element="dotmatrixdot" state="0"> - <bounds x="31" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix487" element="dotmatrixdot" state="0"> - <bounds x="32" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix488" element="dotmatrixdot" state="0"> - <bounds x="33" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix489" element="dotmatrixdot" state="0"> - <bounds x="34" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix490" element="dotmatrixdot" state="0"> - <bounds x="35" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix491" element="dotmatrixdot" state="0"> - <bounds x="36" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix492" element="dotmatrixdot" state="0"> - <bounds x="37" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix493" element="dotmatrixdot" state="0"> - <bounds x="38" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix494" element="dotmatrixdot" state="0"> - <bounds x="39" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix495" element="dotmatrixdot" state="0"> - <bounds x="40" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix496" element="dotmatrixdot" state="0"> - <bounds x="41" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix497" element="dotmatrixdot" state="0"> - <bounds x="42" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix498" element="dotmatrixdot" state="0"> - <bounds x="43" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix499" element="dotmatrixdot" state="0"> - <bounds x="44" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix500" element="dotmatrixdot" state="0"> - <bounds x="45" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix501" element="dotmatrixdot" state="0"> - <bounds x="46" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix502" element="dotmatrixdot" state="0"> - <bounds x="47" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix503" element="dotmatrixdot" state="0"> - <bounds x="48" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix504" element="dotmatrixdot" state="0"> - <bounds x="49" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix505" element="dotmatrixdot" state="0"> - <bounds x="50" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix506" element="dotmatrixdot" state="0"> - <bounds x="51" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix507" element="dotmatrixdot" state="0"> - <bounds x="52" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix508" element="dotmatrixdot" state="0"> - <bounds x="53" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix509" element="dotmatrixdot" state="0"> - <bounds x="54" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix510" element="dotmatrixdot" state="0"> - <bounds x="55" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix511" element="dotmatrixdot" state="0"> - <bounds x="56" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix512" element="dotmatrixdot" state="0"> - <bounds x="57" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix513" element="dotmatrixdot" state="0"> - <bounds x="58" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix514" element="dotmatrixdot" state="0"> - <bounds x="59" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix515" element="dotmatrixdot" state="0"> - <bounds x="60" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix516" element="dotmatrixdot" state="0"> - <bounds x="61" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix517" element="dotmatrixdot" state="0"> - <bounds x="62" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix518" element="dotmatrixdot" state="0"> - <bounds x="63" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix519" element="dotmatrixdot" state="0"> - <bounds x="64" y="7" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix520" element="dotmatrixdot" state="0"> - <bounds x="0" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix521" element="dotmatrixdot" state="0"> - <bounds x="1" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix522" element="dotmatrixdot" state="0"> - <bounds x="2" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix523" element="dotmatrixdot" state="0"> - <bounds x="3" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix524" element="dotmatrixdot" state="0"> - <bounds x="4" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix525" element="dotmatrixdot" state="0"> - <bounds x="5" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix526" element="dotmatrixdot" state="0"> - <bounds x="6" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix527" element="dotmatrixdot" state="0"> - <bounds x="7" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix528" element="dotmatrixdot" state="0"> - <bounds x="8" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix529" element="dotmatrixdot" state="0"> - <bounds x="9" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix530" element="dotmatrixdot" state="0"> - <bounds x="10" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix531" element="dotmatrixdot" state="0"> - <bounds x="11" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix532" element="dotmatrixdot" state="0"> - <bounds x="12" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix533" element="dotmatrixdot" state="0"> - <bounds x="13" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix534" element="dotmatrixdot" state="0"> - <bounds x="14" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix535" element="dotmatrixdot" state="0"> - <bounds x="15" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix536" element="dotmatrixdot" state="0"> - <bounds x="16" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix537" element="dotmatrixdot" state="0"> - <bounds x="17" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix538" element="dotmatrixdot" state="0"> - <bounds x="18" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix539" element="dotmatrixdot" state="0"> - <bounds x="19" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix540" element="dotmatrixdot" state="0"> - <bounds x="20" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix541" element="dotmatrixdot" state="0"> - <bounds x="21" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix542" element="dotmatrixdot" state="0"> - <bounds x="22" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix543" element="dotmatrixdot" state="0"> - <bounds x="23" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix544" element="dotmatrixdot" state="0"> - <bounds x="24" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix545" element="dotmatrixdot" state="0"> - <bounds x="25" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix546" element="dotmatrixdot" state="0"> - <bounds x="26" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix547" element="dotmatrixdot" state="0"> - <bounds x="27" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix548" element="dotmatrixdot" state="0"> - <bounds x="28" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix549" element="dotmatrixdot" state="0"> - <bounds x="29" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix550" element="dotmatrixdot" state="0"> - <bounds x="30" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix551" element="dotmatrixdot" state="0"> - <bounds x="31" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix552" element="dotmatrixdot" state="0"> - <bounds x="32" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix553" element="dotmatrixdot" state="0"> - <bounds x="33" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix554" element="dotmatrixdot" state="0"> - <bounds x="34" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix555" element="dotmatrixdot" state="0"> - <bounds x="35" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix556" element="dotmatrixdot" state="0"> - <bounds x="36" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix557" element="dotmatrixdot" state="0"> - <bounds x="37" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix558" element="dotmatrixdot" state="0"> - <bounds x="38" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix559" element="dotmatrixdot" state="0"> - <bounds x="39" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix560" element="dotmatrixdot" state="0"> - <bounds x="40" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix561" element="dotmatrixdot" state="0"> - <bounds x="41" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix562" element="dotmatrixdot" state="0"> - <bounds x="42" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix563" element="dotmatrixdot" state="0"> - <bounds x="43" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix564" element="dotmatrixdot" state="0"> - <bounds x="44" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix565" element="dotmatrixdot" state="0"> - <bounds x="45" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix566" element="dotmatrixdot" state="0"> - <bounds x="46" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix567" element="dotmatrixdot" state="0"> - <bounds x="47" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix568" element="dotmatrixdot" state="0"> - <bounds x="48" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix569" element="dotmatrixdot" state="0"> - <bounds x="49" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix570" element="dotmatrixdot" state="0"> - <bounds x="50" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix571" element="dotmatrixdot" state="0"> - <bounds x="51" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix572" element="dotmatrixdot" state="0"> - <bounds x="52" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix573" element="dotmatrixdot" state="0"> - <bounds x="53" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix574" element="dotmatrixdot" state="0"> - <bounds x="54" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix575" element="dotmatrixdot" state="0"> - <bounds x="55" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix576" element="dotmatrixdot" state="0"> - <bounds x="56" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix577" element="dotmatrixdot" state="0"> - <bounds x="57" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix578" element="dotmatrixdot" state="0"> - <bounds x="58" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix579" element="dotmatrixdot" state="0"> - <bounds x="59" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix580" element="dotmatrixdot" state="0"> - <bounds x="60" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix581" element="dotmatrixdot" state="0"> - <bounds x="61" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix582" element="dotmatrixdot" state="0"> - <bounds x="62" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix583" element="dotmatrixdot" state="0"> - <bounds x="63" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix584" element="dotmatrixdot" state="0"> - <bounds x="64" y="8" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix585" element="dotmatrixdot" state="0"> - <bounds x="0" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix586" element="dotmatrixdot" state="0"> - <bounds x="1" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix587" element="dotmatrixdot" state="0"> - <bounds x="2" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix588" element="dotmatrixdot" state="0"> - <bounds x="3" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix589" element="dotmatrixdot" state="0"> - <bounds x="4" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix590" element="dotmatrixdot" state="0"> - <bounds x="5" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix591" element="dotmatrixdot" state="0"> - <bounds x="6" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix592" element="dotmatrixdot" state="0"> - <bounds x="7" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix593" element="dotmatrixdot" state="0"> - <bounds x="8" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix594" element="dotmatrixdot" state="0"> - <bounds x="9" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix595" element="dotmatrixdot" state="0"> - <bounds x="10" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix596" element="dotmatrixdot" state="0"> - <bounds x="11" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix597" element="dotmatrixdot" state="0"> - <bounds x="12" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix598" element="dotmatrixdot" state="0"> - <bounds x="13" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix599" element="dotmatrixdot" state="0"> - <bounds x="14" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix600" element="dotmatrixdot" state="0"> - <bounds x="15" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix601" element="dotmatrixdot" state="0"> - <bounds x="16" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix602" element="dotmatrixdot" state="0"> - <bounds x="17" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix603" element="dotmatrixdot" state="0"> - <bounds x="18" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix604" element="dotmatrixdot" state="0"> - <bounds x="19" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix605" element="dotmatrixdot" state="0"> - <bounds x="20" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix606" element="dotmatrixdot" state="0"> - <bounds x="21" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix607" element="dotmatrixdot" state="0"> - <bounds x="22" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix608" element="dotmatrixdot" state="0"> - <bounds x="23" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix609" element="dotmatrixdot" state="0"> - <bounds x="24" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix610" element="dotmatrixdot" state="0"> - <bounds x="25" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix611" element="dotmatrixdot" state="0"> - <bounds x="26" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix612" element="dotmatrixdot" state="0"> - <bounds x="27" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix613" element="dotmatrixdot" state="0"> - <bounds x="28" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix614" element="dotmatrixdot" state="0"> - <bounds x="29" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix615" element="dotmatrixdot" state="0"> - <bounds x="30" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix616" element="dotmatrixdot" state="0"> - <bounds x="31" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix617" element="dotmatrixdot" state="0"> - <bounds x="32" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix618" element="dotmatrixdot" state="0"> - <bounds x="33" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix619" element="dotmatrixdot" state="0"> - <bounds x="34" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix620" element="dotmatrixdot" state="0"> - <bounds x="35" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix621" element="dotmatrixdot" state="0"> - <bounds x="36" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix622" element="dotmatrixdot" state="0"> - <bounds x="37" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix623" element="dotmatrixdot" state="0"> - <bounds x="38" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix624" element="dotmatrixdot" state="0"> - <bounds x="39" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix625" element="dotmatrixdot" state="0"> - <bounds x="40" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix626" element="dotmatrixdot" state="0"> - <bounds x="41" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix627" element="dotmatrixdot" state="0"> - <bounds x="42" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix628" element="dotmatrixdot" state="0"> - <bounds x="43" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix629" element="dotmatrixdot" state="0"> - <bounds x="44" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix630" element="dotmatrixdot" state="0"> - <bounds x="45" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix631" element="dotmatrixdot" state="0"> - <bounds x="46" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix632" element="dotmatrixdot" state="0"> - <bounds x="47" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix633" element="dotmatrixdot" state="0"> - <bounds x="48" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix634" element="dotmatrixdot" state="0"> - <bounds x="49" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix635" element="dotmatrixdot" state="0"> - <bounds x="50" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix636" element="dotmatrixdot" state="0"> - <bounds x="51" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix637" element="dotmatrixdot" state="0"> - <bounds x="52" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix638" element="dotmatrixdot" state="0"> - <bounds x="53" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix639" element="dotmatrixdot" state="0"> - <bounds x="54" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix640" element="dotmatrixdot" state="0"> - <bounds x="55" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix641" element="dotmatrixdot" state="0"> - <bounds x="56" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix642" element="dotmatrixdot" state="0"> - <bounds x="57" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix643" element="dotmatrixdot" state="0"> - <bounds x="58" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix644" element="dotmatrixdot" state="0"> - <bounds x="59" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix645" element="dotmatrixdot" state="0"> - <bounds x="60" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix646" element="dotmatrixdot" state="0"> - <bounds x="61" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix647" element="dotmatrixdot" state="0"> - <bounds x="62" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix648" element="dotmatrixdot" state="0"> - <bounds x="63" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix649" element="dotmatrixdot" state="0"> - <bounds x="64" y="9" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix650" element="dotmatrixdot" state="0"> - <bounds x="0" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix651" element="dotmatrixdot" state="0"> - <bounds x="1" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix652" element="dotmatrixdot" state="0"> - <bounds x="2" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix653" element="dotmatrixdot" state="0"> - <bounds x="3" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix654" element="dotmatrixdot" state="0"> - <bounds x="4" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix655" element="dotmatrixdot" state="0"> - <bounds x="5" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix656" element="dotmatrixdot" state="0"> - <bounds x="6" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix657" element="dotmatrixdot" state="0"> - <bounds x="7" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix658" element="dotmatrixdot" state="0"> - <bounds x="8" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix659" element="dotmatrixdot" state="0"> - <bounds x="9" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix660" element="dotmatrixdot" state="0"> - <bounds x="10" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix661" element="dotmatrixdot" state="0"> - <bounds x="11" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix662" element="dotmatrixdot" state="0"> - <bounds x="12" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix663" element="dotmatrixdot" state="0"> - <bounds x="13" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix664" element="dotmatrixdot" state="0"> - <bounds x="14" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix665" element="dotmatrixdot" state="0"> - <bounds x="15" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix666" element="dotmatrixdot" state="0"> - <bounds x="16" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix667" element="dotmatrixdot" state="0"> - <bounds x="17" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix668" element="dotmatrixdot" state="0"> - <bounds x="18" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix669" element="dotmatrixdot" state="0"> - <bounds x="19" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix670" element="dotmatrixdot" state="0"> - <bounds x="20" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix671" element="dotmatrixdot" state="0"> - <bounds x="21" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix672" element="dotmatrixdot" state="0"> - <bounds x="22" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix673" element="dotmatrixdot" state="0"> - <bounds x="23" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix674" element="dotmatrixdot" state="0"> - <bounds x="24" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix675" element="dotmatrixdot" state="0"> - <bounds x="25" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix676" element="dotmatrixdot" state="0"> - <bounds x="26" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix677" element="dotmatrixdot" state="0"> - <bounds x="27" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix678" element="dotmatrixdot" state="0"> - <bounds x="28" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix679" element="dotmatrixdot" state="0"> - <bounds x="29" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix680" element="dotmatrixdot" state="0"> - <bounds x="30" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix681" element="dotmatrixdot" state="0"> - <bounds x="31" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix682" element="dotmatrixdot" state="0"> - <bounds x="32" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix683" element="dotmatrixdot" state="0"> - <bounds x="33" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix684" element="dotmatrixdot" state="0"> - <bounds x="34" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix685" element="dotmatrixdot" state="0"> - <bounds x="35" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix686" element="dotmatrixdot" state="0"> - <bounds x="36" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix687" element="dotmatrixdot" state="0"> - <bounds x="37" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix688" element="dotmatrixdot" state="0"> - <bounds x="38" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix689" element="dotmatrixdot" state="0"> - <bounds x="39" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix690" element="dotmatrixdot" state="0"> - <bounds x="40" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix691" element="dotmatrixdot" state="0"> - <bounds x="41" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix692" element="dotmatrixdot" state="0"> - <bounds x="42" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix693" element="dotmatrixdot" state="0"> - <bounds x="43" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix694" element="dotmatrixdot" state="0"> - <bounds x="44" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix695" element="dotmatrixdot" state="0"> - <bounds x="45" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix696" element="dotmatrixdot" state="0"> - <bounds x="46" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix697" element="dotmatrixdot" state="0"> - <bounds x="47" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix698" element="dotmatrixdot" state="0"> - <bounds x="48" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix699" element="dotmatrixdot" state="0"> - <bounds x="49" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix700" element="dotmatrixdot" state="0"> - <bounds x="50" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix701" element="dotmatrixdot" state="0"> - <bounds x="51" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix702" element="dotmatrixdot" state="0"> - <bounds x="52" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix703" element="dotmatrixdot" state="0"> - <bounds x="53" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix704" element="dotmatrixdot" state="0"> - <bounds x="54" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix705" element="dotmatrixdot" state="0"> - <bounds x="55" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix706" element="dotmatrixdot" state="0"> - <bounds x="56" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix707" element="dotmatrixdot" state="0"> - <bounds x="57" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix708" element="dotmatrixdot" state="0"> - <bounds x="58" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix709" element="dotmatrixdot" state="0"> - <bounds x="59" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix710" element="dotmatrixdot" state="0"> - <bounds x="60" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix711" element="dotmatrixdot" state="0"> - <bounds x="61" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix712" element="dotmatrixdot" state="0"> - <bounds x="62" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix713" element="dotmatrixdot" state="0"> - <bounds x="63" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix714" element="dotmatrixdot" state="0"> - <bounds x="64" y="10" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix715" element="dotmatrixdot" state="0"> - <bounds x="0" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix716" element="dotmatrixdot" state="0"> - <bounds x="1" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix717" element="dotmatrixdot" state="0"> - <bounds x="2" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix718" element="dotmatrixdot" state="0"> - <bounds x="3" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix719" element="dotmatrixdot" state="0"> - <bounds x="4" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix720" element="dotmatrixdot" state="0"> - <bounds x="5" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix721" element="dotmatrixdot" state="0"> - <bounds x="6" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix722" element="dotmatrixdot" state="0"> - <bounds x="7" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix723" element="dotmatrixdot" state="0"> - <bounds x="8" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix724" element="dotmatrixdot" state="0"> - <bounds x="9" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix725" element="dotmatrixdot" state="0"> - <bounds x="10" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix726" element="dotmatrixdot" state="0"> - <bounds x="11" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix727" element="dotmatrixdot" state="0"> - <bounds x="12" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix728" element="dotmatrixdot" state="0"> - <bounds x="13" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix729" element="dotmatrixdot" state="0"> - <bounds x="14" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix730" element="dotmatrixdot" state="0"> - <bounds x="15" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix731" element="dotmatrixdot" state="0"> - <bounds x="16" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix732" element="dotmatrixdot" state="0"> - <bounds x="17" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix733" element="dotmatrixdot" state="0"> - <bounds x="18" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix734" element="dotmatrixdot" state="0"> - <bounds x="19" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix735" element="dotmatrixdot" state="0"> - <bounds x="20" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix736" element="dotmatrixdot" state="0"> - <bounds x="21" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix737" element="dotmatrixdot" state="0"> - <bounds x="22" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix738" element="dotmatrixdot" state="0"> - <bounds x="23" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix739" element="dotmatrixdot" state="0"> - <bounds x="24" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix740" element="dotmatrixdot" state="0"> - <bounds x="25" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix741" element="dotmatrixdot" state="0"> - <bounds x="26" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix742" element="dotmatrixdot" state="0"> - <bounds x="27" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix743" element="dotmatrixdot" state="0"> - <bounds x="28" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix744" element="dotmatrixdot" state="0"> - <bounds x="29" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix745" element="dotmatrixdot" state="0"> - <bounds x="30" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix746" element="dotmatrixdot" state="0"> - <bounds x="31" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix747" element="dotmatrixdot" state="0"> - <bounds x="32" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix748" element="dotmatrixdot" state="0"> - <bounds x="33" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix749" element="dotmatrixdot" state="0"> - <bounds x="34" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix750" element="dotmatrixdot" state="0"> - <bounds x="35" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix751" element="dotmatrixdot" state="0"> - <bounds x="36" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix752" element="dotmatrixdot" state="0"> - <bounds x="37" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix753" element="dotmatrixdot" state="0"> - <bounds x="38" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix754" element="dotmatrixdot" state="0"> - <bounds x="39" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix755" element="dotmatrixdot" state="0"> - <bounds x="40" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix756" element="dotmatrixdot" state="0"> - <bounds x="41" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix757" element="dotmatrixdot" state="0"> - <bounds x="42" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix758" element="dotmatrixdot" state="0"> - <bounds x="43" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix759" element="dotmatrixdot" state="0"> - <bounds x="44" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix760" element="dotmatrixdot" state="0"> - <bounds x="45" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix761" element="dotmatrixdot" state="0"> - <bounds x="46" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix762" element="dotmatrixdot" state="0"> - <bounds x="47" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix763" element="dotmatrixdot" state="0"> - <bounds x="48" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix764" element="dotmatrixdot" state="0"> - <bounds x="49" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix765" element="dotmatrixdot" state="0"> - <bounds x="50" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix766" element="dotmatrixdot" state="0"> - <bounds x="51" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix767" element="dotmatrixdot" state="0"> - <bounds x="52" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix768" element="dotmatrixdot" state="0"> - <bounds x="53" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix769" element="dotmatrixdot" state="0"> - <bounds x="54" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix770" element="dotmatrixdot" state="0"> - <bounds x="55" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix771" element="dotmatrixdot" state="0"> - <bounds x="56" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix772" element="dotmatrixdot" state="0"> - <bounds x="57" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix773" element="dotmatrixdot" state="0"> - <bounds x="58" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix774" element="dotmatrixdot" state="0"> - <bounds x="59" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix775" element="dotmatrixdot" state="0"> - <bounds x="60" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix776" element="dotmatrixdot" state="0"> - <bounds x="61" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix777" element="dotmatrixdot" state="0"> - <bounds x="62" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix778" element="dotmatrixdot" state="0"> - <bounds x="63" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix779" element="dotmatrixdot" state="0"> - <bounds x="64" y="11" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix780" element="dotmatrixdot" state="0"> - <bounds x="0" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix781" element="dotmatrixdot" state="0"> - <bounds x="1" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix782" element="dotmatrixdot" state="0"> - <bounds x="2" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix783" element="dotmatrixdot" state="0"> - <bounds x="3" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix784" element="dotmatrixdot" state="0"> - <bounds x="4" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix785" element="dotmatrixdot" state="0"> - <bounds x="5" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix786" element="dotmatrixdot" state="0"> - <bounds x="6" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix787" element="dotmatrixdot" state="0"> - <bounds x="7" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix788" element="dotmatrixdot" state="0"> - <bounds x="8" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix789" element="dotmatrixdot" state="0"> - <bounds x="9" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix790" element="dotmatrixdot" state="0"> - <bounds x="10" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix791" element="dotmatrixdot" state="0"> - <bounds x="11" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix792" element="dotmatrixdot" state="0"> - <bounds x="12" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix793" element="dotmatrixdot" state="0"> - <bounds x="13" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix794" element="dotmatrixdot" state="0"> - <bounds x="14" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix795" element="dotmatrixdot" state="0"> - <bounds x="15" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix796" element="dotmatrixdot" state="0"> - <bounds x="16" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix797" element="dotmatrixdot" state="0"> - <bounds x="17" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix798" element="dotmatrixdot" state="0"> - <bounds x="18" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix799" element="dotmatrixdot" state="0"> - <bounds x="19" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix800" element="dotmatrixdot" state="0"> - <bounds x="20" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix801" element="dotmatrixdot" state="0"> - <bounds x="21" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix802" element="dotmatrixdot" state="0"> - <bounds x="22" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix803" element="dotmatrixdot" state="0"> - <bounds x="23" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix804" element="dotmatrixdot" state="0"> - <bounds x="24" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix805" element="dotmatrixdot" state="0"> - <bounds x="25" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix806" element="dotmatrixdot" state="0"> - <bounds x="26" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix807" element="dotmatrixdot" state="0"> - <bounds x="27" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix808" element="dotmatrixdot" state="0"> - <bounds x="28" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix809" element="dotmatrixdot" state="0"> - <bounds x="29" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix810" element="dotmatrixdot" state="0"> - <bounds x="30" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix811" element="dotmatrixdot" state="0"> - <bounds x="31" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix812" element="dotmatrixdot" state="0"> - <bounds x="32" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix813" element="dotmatrixdot" state="0"> - <bounds x="33" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix814" element="dotmatrixdot" state="0"> - <bounds x="34" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix815" element="dotmatrixdot" state="0"> - <bounds x="35" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix816" element="dotmatrixdot" state="0"> - <bounds x="36" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix817" element="dotmatrixdot" state="0"> - <bounds x="37" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix818" element="dotmatrixdot" state="0"> - <bounds x="38" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix819" element="dotmatrixdot" state="0"> - <bounds x="39" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix820" element="dotmatrixdot" state="0"> - <bounds x="40" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix821" element="dotmatrixdot" state="0"> - <bounds x="41" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix822" element="dotmatrixdot" state="0"> - <bounds x="42" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix823" element="dotmatrixdot" state="0"> - <bounds x="43" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix824" element="dotmatrixdot" state="0"> - <bounds x="44" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix825" element="dotmatrixdot" state="0"> - <bounds x="45" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix826" element="dotmatrixdot" state="0"> - <bounds x="46" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix827" element="dotmatrixdot" state="0"> - <bounds x="47" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix828" element="dotmatrixdot" state="0"> - <bounds x="48" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix829" element="dotmatrixdot" state="0"> - <bounds x="49" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix830" element="dotmatrixdot" state="0"> - <bounds x="50" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix831" element="dotmatrixdot" state="0"> - <bounds x="51" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix832" element="dotmatrixdot" state="0"> - <bounds x="52" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix833" element="dotmatrixdot" state="0"> - <bounds x="53" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix834" element="dotmatrixdot" state="0"> - <bounds x="54" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix835" element="dotmatrixdot" state="0"> - <bounds x="55" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix836" element="dotmatrixdot" state="0"> - <bounds x="56" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix837" element="dotmatrixdot" state="0"> - <bounds x="57" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix838" element="dotmatrixdot" state="0"> - <bounds x="58" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix839" element="dotmatrixdot" state="0"> - <bounds x="59" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix840" element="dotmatrixdot" state="0"> - <bounds x="60" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix841" element="dotmatrixdot" state="0"> - <bounds x="61" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix842" element="dotmatrixdot" state="0"> - <bounds x="62" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix843" element="dotmatrixdot" state="0"> - <bounds x="63" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix844" element="dotmatrixdot" state="0"> - <bounds x="64" y="12" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix845" element="dotmatrixdot" state="0"> - <bounds x="0" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix846" element="dotmatrixdot" state="0"> - <bounds x="1" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix847" element="dotmatrixdot" state="0"> - <bounds x="2" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix848" element="dotmatrixdot" state="0"> - <bounds x="3" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix849" element="dotmatrixdot" state="0"> - <bounds x="4" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix850" element="dotmatrixdot" state="0"> - <bounds x="5" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix851" element="dotmatrixdot" state="0"> - <bounds x="6" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix852" element="dotmatrixdot" state="0"> - <bounds x="7" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix853" element="dotmatrixdot" state="0"> - <bounds x="8" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix854" element="dotmatrixdot" state="0"> - <bounds x="9" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix855" element="dotmatrixdot" state="0"> - <bounds x="10" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix856" element="dotmatrixdot" state="0"> - <bounds x="11" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix857" element="dotmatrixdot" state="0"> - <bounds x="12" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix858" element="dotmatrixdot" state="0"> - <bounds x="13" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix859" element="dotmatrixdot" state="0"> - <bounds x="14" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix860" element="dotmatrixdot" state="0"> - <bounds x="15" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix861" element="dotmatrixdot" state="0"> - <bounds x="16" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix862" element="dotmatrixdot" state="0"> - <bounds x="17" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix863" element="dotmatrixdot" state="0"> - <bounds x="18" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix864" element="dotmatrixdot" state="0"> - <bounds x="19" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix865" element="dotmatrixdot" state="0"> - <bounds x="20" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix866" element="dotmatrixdot" state="0"> - <bounds x="21" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix867" element="dotmatrixdot" state="0"> - <bounds x="22" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix868" element="dotmatrixdot" state="0"> - <bounds x="23" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix869" element="dotmatrixdot" state="0"> - <bounds x="24" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix870" element="dotmatrixdot" state="0"> - <bounds x="25" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix871" element="dotmatrixdot" state="0"> - <bounds x="26" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix872" element="dotmatrixdot" state="0"> - <bounds x="27" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix873" element="dotmatrixdot" state="0"> - <bounds x="28" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix874" element="dotmatrixdot" state="0"> - <bounds x="29" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix875" element="dotmatrixdot" state="0"> - <bounds x="30" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix876" element="dotmatrixdot" state="0"> - <bounds x="31" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix877" element="dotmatrixdot" state="0"> - <bounds x="32" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix878" element="dotmatrixdot" state="0"> - <bounds x="33" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix879" element="dotmatrixdot" state="0"> - <bounds x="34" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix880" element="dotmatrixdot" state="0"> - <bounds x="35" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix881" element="dotmatrixdot" state="0"> - <bounds x="36" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix882" element="dotmatrixdot" state="0"> - <bounds x="37" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix883" element="dotmatrixdot" state="0"> - <bounds x="38" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix884" element="dotmatrixdot" state="0"> - <bounds x="39" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix885" element="dotmatrixdot" state="0"> - <bounds x="40" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix886" element="dotmatrixdot" state="0"> - <bounds x="41" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix887" element="dotmatrixdot" state="0"> - <bounds x="42" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix888" element="dotmatrixdot" state="0"> - <bounds x="43" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix889" element="dotmatrixdot" state="0"> - <bounds x="44" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix890" element="dotmatrixdot" state="0"> - <bounds x="45" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix891" element="dotmatrixdot" state="0"> - <bounds x="46" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix892" element="dotmatrixdot" state="0"> - <bounds x="47" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix893" element="dotmatrixdot" state="0"> - <bounds x="48" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix894" element="dotmatrixdot" state="0"> - <bounds x="49" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix895" element="dotmatrixdot" state="0"> - <bounds x="50" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix896" element="dotmatrixdot" state="0"> - <bounds x="51" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix897" element="dotmatrixdot" state="0"> - <bounds x="52" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix898" element="dotmatrixdot" state="0"> - <bounds x="53" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix899" element="dotmatrixdot" state="0"> - <bounds x="54" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix900" element="dotmatrixdot" state="0"> - <bounds x="55" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix901" element="dotmatrixdot" state="0"> - <bounds x="56" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix902" element="dotmatrixdot" state="0"> - <bounds x="57" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix903" element="dotmatrixdot" state="0"> - <bounds x="58" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix904" element="dotmatrixdot" state="0"> - <bounds x="59" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix905" element="dotmatrixdot" state="0"> - <bounds x="60" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix906" element="dotmatrixdot" state="0"> - <bounds x="61" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix907" element="dotmatrixdot" state="0"> - <bounds x="62" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix908" element="dotmatrixdot" state="0"> - <bounds x="63" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix909" element="dotmatrixdot" state="0"> - <bounds x="64" y="13" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix910" element="dotmatrixdot" state="0"> - <bounds x="0" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix911" element="dotmatrixdot" state="0"> - <bounds x="1" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix912" element="dotmatrixdot" state="0"> - <bounds x="2" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix913" element="dotmatrixdot" state="0"> - <bounds x="3" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix914" element="dotmatrixdot" state="0"> - <bounds x="4" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix915" element="dotmatrixdot" state="0"> - <bounds x="5" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix916" element="dotmatrixdot" state="0"> - <bounds x="6" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix917" element="dotmatrixdot" state="0"> - <bounds x="7" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix918" element="dotmatrixdot" state="0"> - <bounds x="8" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix919" element="dotmatrixdot" state="0"> - <bounds x="9" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix920" element="dotmatrixdot" state="0"> - <bounds x="10" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix921" element="dotmatrixdot" state="0"> - <bounds x="11" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix922" element="dotmatrixdot" state="0"> - <bounds x="12" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix923" element="dotmatrixdot" state="0"> - <bounds x="13" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix924" element="dotmatrixdot" state="0"> - <bounds x="14" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix925" element="dotmatrixdot" state="0"> - <bounds x="15" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix926" element="dotmatrixdot" state="0"> - <bounds x="16" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix927" element="dotmatrixdot" state="0"> - <bounds x="17" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix928" element="dotmatrixdot" state="0"> - <bounds x="18" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix929" element="dotmatrixdot" state="0"> - <bounds x="19" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix930" element="dotmatrixdot" state="0"> - <bounds x="20" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix931" element="dotmatrixdot" state="0"> - <bounds x="21" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix932" element="dotmatrixdot" state="0"> - <bounds x="22" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix933" element="dotmatrixdot" state="0"> - <bounds x="23" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix934" element="dotmatrixdot" state="0"> - <bounds x="24" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix935" element="dotmatrixdot" state="0"> - <bounds x="25" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix936" element="dotmatrixdot" state="0"> - <bounds x="26" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix937" element="dotmatrixdot" state="0"> - <bounds x="27" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix938" element="dotmatrixdot" state="0"> - <bounds x="28" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix939" element="dotmatrixdot" state="0"> - <bounds x="29" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix940" element="dotmatrixdot" state="0"> - <bounds x="30" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix941" element="dotmatrixdot" state="0"> - <bounds x="31" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix942" element="dotmatrixdot" state="0"> - <bounds x="32" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix943" element="dotmatrixdot" state="0"> - <bounds x="33" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix944" element="dotmatrixdot" state="0"> - <bounds x="34" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix945" element="dotmatrixdot" state="0"> - <bounds x="35" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix946" element="dotmatrixdot" state="0"> - <bounds x="36" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix947" element="dotmatrixdot" state="0"> - <bounds x="37" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix948" element="dotmatrixdot" state="0"> - <bounds x="38" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix949" element="dotmatrixdot" state="0"> - <bounds x="39" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix950" element="dotmatrixdot" state="0"> - <bounds x="40" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix951" element="dotmatrixdot" state="0"> - <bounds x="41" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix952" element="dotmatrixdot" state="0"> - <bounds x="42" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix953" element="dotmatrixdot" state="0"> - <bounds x="43" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix954" element="dotmatrixdot" state="0"> - <bounds x="44" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix955" element="dotmatrixdot" state="0"> - <bounds x="45" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix956" element="dotmatrixdot" state="0"> - <bounds x="46" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix957" element="dotmatrixdot" state="0"> - <bounds x="47" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix958" element="dotmatrixdot" state="0"> - <bounds x="48" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix959" element="dotmatrixdot" state="0"> - <bounds x="49" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix960" element="dotmatrixdot" state="0"> - <bounds x="50" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix961" element="dotmatrixdot" state="0"> - <bounds x="51" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix962" element="dotmatrixdot" state="0"> - <bounds x="52" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix963" element="dotmatrixdot" state="0"> - <bounds x="53" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix964" element="dotmatrixdot" state="0"> - <bounds x="54" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix965" element="dotmatrixdot" state="0"> - <bounds x="55" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix966" element="dotmatrixdot" state="0"> - <bounds x="56" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix967" element="dotmatrixdot" state="0"> - <bounds x="57" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix968" element="dotmatrixdot" state="0"> - <bounds x="58" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix969" element="dotmatrixdot" state="0"> - <bounds x="59" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix970" element="dotmatrixdot" state="0"> - <bounds x="60" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix971" element="dotmatrixdot" state="0"> - <bounds x="61" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix972" element="dotmatrixdot" state="0"> - <bounds x="62" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix973" element="dotmatrixdot" state="0"> - <bounds x="63" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix974" element="dotmatrixdot" state="0"> - <bounds x="64" y="14" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix975" element="dotmatrixdot" state="0"> - <bounds x="0" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix976" element="dotmatrixdot" state="0"> - <bounds x="1" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix977" element="dotmatrixdot" state="0"> - <bounds x="2" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix978" element="dotmatrixdot" state="0"> - <bounds x="3" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix979" element="dotmatrixdot" state="0"> - <bounds x="4" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix980" element="dotmatrixdot" state="0"> - <bounds x="5" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix981" element="dotmatrixdot" state="0"> - <bounds x="6" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix982" element="dotmatrixdot" state="0"> - <bounds x="7" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix983" element="dotmatrixdot" state="0"> - <bounds x="8" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix984" element="dotmatrixdot" state="0"> - <bounds x="9" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix985" element="dotmatrixdot" state="0"> - <bounds x="10" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix986" element="dotmatrixdot" state="0"> - <bounds x="11" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix987" element="dotmatrixdot" state="0"> - <bounds x="12" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix988" element="dotmatrixdot" state="0"> - <bounds x="13" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix989" element="dotmatrixdot" state="0"> - <bounds x="14" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix990" element="dotmatrixdot" state="0"> - <bounds x="15" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix991" element="dotmatrixdot" state="0"> - <bounds x="16" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix992" element="dotmatrixdot" state="0"> - <bounds x="17" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix993" element="dotmatrixdot" state="0"> - <bounds x="18" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix994" element="dotmatrixdot" state="0"> - <bounds x="19" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix995" element="dotmatrixdot" state="0"> - <bounds x="20" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix996" element="dotmatrixdot" state="0"> - <bounds x="21" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix997" element="dotmatrixdot" state="0"> - <bounds x="22" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix998" element="dotmatrixdot" state="0"> - <bounds x="23" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix999" element="dotmatrixdot" state="0"> - <bounds x="24" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1000" element="dotmatrixdot" state="0"> - <bounds x="25" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1001" element="dotmatrixdot" state="0"> - <bounds x="26" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1002" element="dotmatrixdot" state="0"> - <bounds x="27" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1003" element="dotmatrixdot" state="0"> - <bounds x="28" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1004" element="dotmatrixdot" state="0"> - <bounds x="29" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1005" element="dotmatrixdot" state="0"> - <bounds x="30" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1006" element="dotmatrixdot" state="0"> - <bounds x="31" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1007" element="dotmatrixdot" state="0"> - <bounds x="32" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1008" element="dotmatrixdot" state="0"> - <bounds x="33" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1009" element="dotmatrixdot" state="0"> - <bounds x="34" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1010" element="dotmatrixdot" state="0"> - <bounds x="35" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1011" element="dotmatrixdot" state="0"> - <bounds x="36" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1012" element="dotmatrixdot" state="0"> - <bounds x="37" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1013" element="dotmatrixdot" state="0"> - <bounds x="38" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1014" element="dotmatrixdot" state="0"> - <bounds x="39" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1015" element="dotmatrixdot" state="0"> - <bounds x="40" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1016" element="dotmatrixdot" state="0"> - <bounds x="41" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1017" element="dotmatrixdot" state="0"> - <bounds x="42" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1018" element="dotmatrixdot" state="0"> - <bounds x="43" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1019" element="dotmatrixdot" state="0"> - <bounds x="44" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1020" element="dotmatrixdot" state="0"> - <bounds x="45" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1021" element="dotmatrixdot" state="0"> - <bounds x="46" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1022" element="dotmatrixdot" state="0"> - <bounds x="47" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1023" element="dotmatrixdot" state="0"> - <bounds x="48" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1024" element="dotmatrixdot" state="0"> - <bounds x="49" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1025" element="dotmatrixdot" state="0"> - <bounds x="50" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1026" element="dotmatrixdot" state="0"> - <bounds x="51" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1027" element="dotmatrixdot" state="0"> - <bounds x="52" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1028" element="dotmatrixdot" state="0"> - <bounds x="53" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1029" element="dotmatrixdot" state="0"> - <bounds x="54" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1030" element="dotmatrixdot" state="0"> - <bounds x="55" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1031" element="dotmatrixdot" state="0"> - <bounds x="56" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1032" element="dotmatrixdot" state="0"> - <bounds x="57" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1033" element="dotmatrixdot" state="0"> - <bounds x="58" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1034" element="dotmatrixdot" state="0"> - <bounds x="59" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1035" element="dotmatrixdot" state="0"> - <bounds x="60" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1036" element="dotmatrixdot" state="0"> - <bounds x="61" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1037" element="dotmatrixdot" state="0"> - <bounds x="62" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1038" element="dotmatrixdot" state="0"> - <bounds x="63" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1039" element="dotmatrixdot" state="0"> - <bounds x="64" y="15" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1040" element="dotmatrixdot" state="0"> - <bounds x="0" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1041" element="dotmatrixdot" state="0"> - <bounds x="1" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1042" element="dotmatrixdot" state="0"> - <bounds x="2" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1043" element="dotmatrixdot" state="0"> - <bounds x="3" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1044" element="dotmatrixdot" state="0"> - <bounds x="4" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1045" element="dotmatrixdot" state="0"> - <bounds x="5" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1046" element="dotmatrixdot" state="0"> - <bounds x="6" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1047" element="dotmatrixdot" state="0"> - <bounds x="7" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1048" element="dotmatrixdot" state="0"> - <bounds x="8" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1049" element="dotmatrixdot" state="0"> - <bounds x="9" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1050" element="dotmatrixdot" state="0"> - <bounds x="10" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1051" element="dotmatrixdot" state="0"> - <bounds x="11" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1052" element="dotmatrixdot" state="0"> - <bounds x="12" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1053" element="dotmatrixdot" state="0"> - <bounds x="13" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1054" element="dotmatrixdot" state="0"> - <bounds x="14" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1055" element="dotmatrixdot" state="0"> - <bounds x="15" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1056" element="dotmatrixdot" state="0"> - <bounds x="16" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1057" element="dotmatrixdot" state="0"> - <bounds x="17" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1058" element="dotmatrixdot" state="0"> - <bounds x="18" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1059" element="dotmatrixdot" state="0"> - <bounds x="19" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1060" element="dotmatrixdot" state="0"> - <bounds x="20" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1061" element="dotmatrixdot" state="0"> - <bounds x="21" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1062" element="dotmatrixdot" state="0"> - <bounds x="22" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1063" element="dotmatrixdot" state="0"> - <bounds x="23" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1064" element="dotmatrixdot" state="0"> - <bounds x="24" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1065" element="dotmatrixdot" state="0"> - <bounds x="25" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1066" element="dotmatrixdot" state="0"> - <bounds x="26" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1067" element="dotmatrixdot" state="0"> - <bounds x="27" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1068" element="dotmatrixdot" state="0"> - <bounds x="28" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1069" element="dotmatrixdot" state="0"> - <bounds x="29" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1070" element="dotmatrixdot" state="0"> - <bounds x="30" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1071" element="dotmatrixdot" state="0"> - <bounds x="31" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1072" element="dotmatrixdot" state="0"> - <bounds x="32" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1073" element="dotmatrixdot" state="0"> - <bounds x="33" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1074" element="dotmatrixdot" state="0"> - <bounds x="34" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1075" element="dotmatrixdot" state="0"> - <bounds x="35" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1076" element="dotmatrixdot" state="0"> - <bounds x="36" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1077" element="dotmatrixdot" state="0"> - <bounds x="37" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1078" element="dotmatrixdot" state="0"> - <bounds x="38" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1079" element="dotmatrixdot" state="0"> - <bounds x="39" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1080" element="dotmatrixdot" state="0"> - <bounds x="40" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1081" element="dotmatrixdot" state="0"> - <bounds x="41" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1082" element="dotmatrixdot" state="0"> - <bounds x="42" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1083" element="dotmatrixdot" state="0"> - <bounds x="43" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1084" element="dotmatrixdot" state="0"> - <bounds x="44" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1085" element="dotmatrixdot" state="0"> - <bounds x="45" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1086" element="dotmatrixdot" state="0"> - <bounds x="46" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1087" element="dotmatrixdot" state="0"> - <bounds x="47" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1088" element="dotmatrixdot" state="0"> - <bounds x="48" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1089" element="dotmatrixdot" state="0"> - <bounds x="49" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1090" element="dotmatrixdot" state="0"> - <bounds x="50" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1091" element="dotmatrixdot" state="0"> - <bounds x="51" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1092" element="dotmatrixdot" state="0"> - <bounds x="52" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1093" element="dotmatrixdot" state="0"> - <bounds x="53" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1094" element="dotmatrixdot" state="0"> - <bounds x="54" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1095" element="dotmatrixdot" state="0"> - <bounds x="55" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1096" element="dotmatrixdot" state="0"> - <bounds x="56" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1097" element="dotmatrixdot" state="0"> - <bounds x="57" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1098" element="dotmatrixdot" state="0"> - <bounds x="58" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1099" element="dotmatrixdot" state="0"> - <bounds x="59" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1100" element="dotmatrixdot" state="0"> - <bounds x="60" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1101" element="dotmatrixdot" state="0"> - <bounds x="61" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1102" element="dotmatrixdot" state="0"> - <bounds x="62" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1103" element="dotmatrixdot" state="0"> - <bounds x="63" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1104" element="dotmatrixdot" state="0"> - <bounds x="64" y="16" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1105" element="dotmatrixdot" state="0"> - <bounds x="0" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1106" element="dotmatrixdot" state="0"> - <bounds x="1" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1107" element="dotmatrixdot" state="0"> - <bounds x="2" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1108" element="dotmatrixdot" state="0"> - <bounds x="3" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1109" element="dotmatrixdot" state="0"> - <bounds x="4" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1110" element="dotmatrixdot" state="0"> - <bounds x="5" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1111" element="dotmatrixdot" state="0"> - <bounds x="6" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1112" element="dotmatrixdot" state="0"> - <bounds x="7" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1113" element="dotmatrixdot" state="0"> - <bounds x="8" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1114" element="dotmatrixdot" state="0"> - <bounds x="9" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1115" element="dotmatrixdot" state="0"> - <bounds x="10" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1116" element="dotmatrixdot" state="0"> - <bounds x="11" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1117" element="dotmatrixdot" state="0"> - <bounds x="12" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1118" element="dotmatrixdot" state="0"> - <bounds x="13" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1119" element="dotmatrixdot" state="0"> - <bounds x="14" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1120" element="dotmatrixdot" state="0"> - <bounds x="15" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1121" element="dotmatrixdot" state="0"> - <bounds x="16" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1122" element="dotmatrixdot" state="0"> - <bounds x="17" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1123" element="dotmatrixdot" state="0"> - <bounds x="18" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1124" element="dotmatrixdot" state="0"> - <bounds x="19" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1125" element="dotmatrixdot" state="0"> - <bounds x="20" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1126" element="dotmatrixdot" state="0"> - <bounds x="21" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1127" element="dotmatrixdot" state="0"> - <bounds x="22" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1128" element="dotmatrixdot" state="0"> - <bounds x="23" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1129" element="dotmatrixdot" state="0"> - <bounds x="24" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1130" element="dotmatrixdot" state="0"> - <bounds x="25" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1131" element="dotmatrixdot" state="0"> - <bounds x="26" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1132" element="dotmatrixdot" state="0"> - <bounds x="27" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1133" element="dotmatrixdot" state="0"> - <bounds x="28" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1134" element="dotmatrixdot" state="0"> - <bounds x="29" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1135" element="dotmatrixdot" state="0"> - <bounds x="30" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1136" element="dotmatrixdot" state="0"> - <bounds x="31" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1137" element="dotmatrixdot" state="0"> - <bounds x="32" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1138" element="dotmatrixdot" state="0"> - <bounds x="33" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1139" element="dotmatrixdot" state="0"> - <bounds x="34" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1140" element="dotmatrixdot" state="0"> - <bounds x="35" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1141" element="dotmatrixdot" state="0"> - <bounds x="36" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1142" element="dotmatrixdot" state="0"> - <bounds x="37" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1143" element="dotmatrixdot" state="0"> - <bounds x="38" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1144" element="dotmatrixdot" state="0"> - <bounds x="39" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1145" element="dotmatrixdot" state="0"> - <bounds x="40" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1146" element="dotmatrixdot" state="0"> - <bounds x="41" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1147" element="dotmatrixdot" state="0"> - <bounds x="42" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1148" element="dotmatrixdot" state="0"> - <bounds x="43" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1149" element="dotmatrixdot" state="0"> - <bounds x="44" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1150" element="dotmatrixdot" state="0"> - <bounds x="45" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1151" element="dotmatrixdot" state="0"> - <bounds x="46" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1152" element="dotmatrixdot" state="0"> - <bounds x="47" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1153" element="dotmatrixdot" state="0"> - <bounds x="48" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1154" element="dotmatrixdot" state="0"> - <bounds x="49" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1155" element="dotmatrixdot" state="0"> - <bounds x="50" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1156" element="dotmatrixdot" state="0"> - <bounds x="51" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1157" element="dotmatrixdot" state="0"> - <bounds x="52" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1158" element="dotmatrixdot" state="0"> - <bounds x="53" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1159" element="dotmatrixdot" state="0"> - <bounds x="54" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1160" element="dotmatrixdot" state="0"> - <bounds x="55" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1161" element="dotmatrixdot" state="0"> - <bounds x="56" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1162" element="dotmatrixdot" state="0"> - <bounds x="57" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1163" element="dotmatrixdot" state="0"> - <bounds x="58" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1164" element="dotmatrixdot" state="0"> - <bounds x="59" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1165" element="dotmatrixdot" state="0"> - <bounds x="60" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1166" element="dotmatrixdot" state="0"> - <bounds x="61" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1167" element="dotmatrixdot" state="0"> - <bounds x="62" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1168" element="dotmatrixdot" state="0"> - <bounds x="63" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1169" element="dotmatrixdot" state="0"> - <bounds x="64" y="17" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1170" element="dotmatrixdot" state="0"> - <bounds x="0" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1171" element="dotmatrixdot" state="0"> - <bounds x="1" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1172" element="dotmatrixdot" state="0"> - <bounds x="2" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1173" element="dotmatrixdot" state="0"> - <bounds x="3" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1174" element="dotmatrixdot" state="0"> - <bounds x="4" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1175" element="dotmatrixdot" state="0"> - <bounds x="5" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1176" element="dotmatrixdot" state="0"> - <bounds x="6" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1177" element="dotmatrixdot" state="0"> - <bounds x="7" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1178" element="dotmatrixdot" state="0"> - <bounds x="8" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1179" element="dotmatrixdot" state="0"> - <bounds x="9" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1180" element="dotmatrixdot" state="0"> - <bounds x="10" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1181" element="dotmatrixdot" state="0"> - <bounds x="11" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1182" element="dotmatrixdot" state="0"> - <bounds x="12" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1183" element="dotmatrixdot" state="0"> - <bounds x="13" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1184" element="dotmatrixdot" state="0"> - <bounds x="14" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1185" element="dotmatrixdot" state="0"> - <bounds x="15" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1186" element="dotmatrixdot" state="0"> - <bounds x="16" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1187" element="dotmatrixdot" state="0"> - <bounds x="17" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1188" element="dotmatrixdot" state="0"> - <bounds x="18" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1189" element="dotmatrixdot" state="0"> - <bounds x="19" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1190" element="dotmatrixdot" state="0"> - <bounds x="20" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1191" element="dotmatrixdot" state="0"> - <bounds x="21" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1192" element="dotmatrixdot" state="0"> - <bounds x="22" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1193" element="dotmatrixdot" state="0"> - <bounds x="23" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1194" element="dotmatrixdot" state="0"> - <bounds x="24" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1195" element="dotmatrixdot" state="0"> - <bounds x="25" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1196" element="dotmatrixdot" state="0"> - <bounds x="26" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1197" element="dotmatrixdot" state="0"> - <bounds x="27" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1198" element="dotmatrixdot" state="0"> - <bounds x="28" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1199" element="dotmatrixdot" state="0"> - <bounds x="29" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1200" element="dotmatrixdot" state="0"> - <bounds x="30" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1201" element="dotmatrixdot" state="0"> - <bounds x="31" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1202" element="dotmatrixdot" state="0"> - <bounds x="32" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1203" element="dotmatrixdot" state="0"> - <bounds x="33" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1204" element="dotmatrixdot" state="0"> - <bounds x="34" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1205" element="dotmatrixdot" state="0"> - <bounds x="35" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1206" element="dotmatrixdot" state="0"> - <bounds x="36" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1207" element="dotmatrixdot" state="0"> - <bounds x="37" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1208" element="dotmatrixdot" state="0"> - <bounds x="38" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1209" element="dotmatrixdot" state="0"> - <bounds x="39" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1210" element="dotmatrixdot" state="0"> - <bounds x="40" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1211" element="dotmatrixdot" state="0"> - <bounds x="41" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1212" element="dotmatrixdot" state="0"> - <bounds x="42" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1213" element="dotmatrixdot" state="0"> - <bounds x="43" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1214" element="dotmatrixdot" state="0"> - <bounds x="44" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1215" element="dotmatrixdot" state="0"> - <bounds x="45" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1216" element="dotmatrixdot" state="0"> - <bounds x="46" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1217" element="dotmatrixdot" state="0"> - <bounds x="47" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1218" element="dotmatrixdot" state="0"> - <bounds x="48" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1219" element="dotmatrixdot" state="0"> - <bounds x="49" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1220" element="dotmatrixdot" state="0"> - <bounds x="50" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1221" element="dotmatrixdot" state="0"> - <bounds x="51" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1222" element="dotmatrixdot" state="0"> - <bounds x="52" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1223" element="dotmatrixdot" state="0"> - <bounds x="53" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1224" element="dotmatrixdot" state="0"> - <bounds x="54" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1225" element="dotmatrixdot" state="0"> - <bounds x="55" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1226" element="dotmatrixdot" state="0"> - <bounds x="56" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1227" element="dotmatrixdot" state="0"> - <bounds x="57" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1228" element="dotmatrixdot" state="0"> - <bounds x="58" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1229" element="dotmatrixdot" state="0"> - <bounds x="59" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1230" element="dotmatrixdot" state="0"> - <bounds x="60" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1231" element="dotmatrixdot" state="0"> - <bounds x="61" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1232" element="dotmatrixdot" state="0"> - <bounds x="62" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1233" element="dotmatrixdot" state="0"> - <bounds x="63" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1234" element="dotmatrixdot" state="0"> - <bounds x="64" y="18" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1235" element="dotmatrixdot" state="0"> - <bounds x="0" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1236" element="dotmatrixdot" state="0"> - <bounds x="1" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1237" element="dotmatrixdot" state="0"> - <bounds x="2" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1238" element="dotmatrixdot" state="0"> - <bounds x="3" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1239" element="dotmatrixdot" state="0"> - <bounds x="4" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1240" element="dotmatrixdot" state="0"> - <bounds x="5" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1241" element="dotmatrixdot" state="0"> - <bounds x="6" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1242" element="dotmatrixdot" state="0"> - <bounds x="7" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1243" element="dotmatrixdot" state="0"> - <bounds x="8" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1244" element="dotmatrixdot" state="0"> - <bounds x="9" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1245" element="dotmatrixdot" state="0"> - <bounds x="10" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1246" element="dotmatrixdot" state="0"> - <bounds x="11" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1247" element="dotmatrixdot" state="0"> - <bounds x="12" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1248" element="dotmatrixdot" state="0"> - <bounds x="13" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1249" element="dotmatrixdot" state="0"> - <bounds x="14" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1250" element="dotmatrixdot" state="0"> - <bounds x="15" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1251" element="dotmatrixdot" state="0"> - <bounds x="16" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1252" element="dotmatrixdot" state="0"> - <bounds x="17" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1253" element="dotmatrixdot" state="0"> - <bounds x="18" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1254" element="dotmatrixdot" state="0"> - <bounds x="19" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1255" element="dotmatrixdot" state="0"> - <bounds x="20" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1256" element="dotmatrixdot" state="0"> - <bounds x="21" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1257" element="dotmatrixdot" state="0"> - <bounds x="22" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1258" element="dotmatrixdot" state="0"> - <bounds x="23" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1259" element="dotmatrixdot" state="0"> - <bounds x="24" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1260" element="dotmatrixdot" state="0"> - <bounds x="25" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1261" element="dotmatrixdot" state="0"> - <bounds x="26" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1262" element="dotmatrixdot" state="0"> - <bounds x="27" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1263" element="dotmatrixdot" state="0"> - <bounds x="28" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1264" element="dotmatrixdot" state="0"> - <bounds x="29" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1265" element="dotmatrixdot" state="0"> - <bounds x="30" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1266" element="dotmatrixdot" state="0"> - <bounds x="31" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1267" element="dotmatrixdot" state="0"> - <bounds x="32" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1268" element="dotmatrixdot" state="0"> - <bounds x="33" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1269" element="dotmatrixdot" state="0"> - <bounds x="34" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1270" element="dotmatrixdot" state="0"> - <bounds x="35" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1271" element="dotmatrixdot" state="0"> - <bounds x="36" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1272" element="dotmatrixdot" state="0"> - <bounds x="37" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1273" element="dotmatrixdot" state="0"> - <bounds x="38" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1274" element="dotmatrixdot" state="0"> - <bounds x="39" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1275" element="dotmatrixdot" state="0"> - <bounds x="40" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1276" element="dotmatrixdot" state="0"> - <bounds x="41" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1277" element="dotmatrixdot" state="0"> - <bounds x="42" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1278" element="dotmatrixdot" state="0"> - <bounds x="43" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1279" element="dotmatrixdot" state="0"> - <bounds x="44" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1280" element="dotmatrixdot" state="0"> - <bounds x="45" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1281" element="dotmatrixdot" state="0"> - <bounds x="46" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1282" element="dotmatrixdot" state="0"> - <bounds x="47" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1283" element="dotmatrixdot" state="0"> - <bounds x="48" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1284" element="dotmatrixdot" state="0"> - <bounds x="49" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1285" element="dotmatrixdot" state="0"> - <bounds x="50" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1286" element="dotmatrixdot" state="0"> - <bounds x="51" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1287" element="dotmatrixdot" state="0"> - <bounds x="52" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1288" element="dotmatrixdot" state="0"> - <bounds x="53" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1289" element="dotmatrixdot" state="0"> - <bounds x="54" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1290" element="dotmatrixdot" state="0"> - <bounds x="55" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1291" element="dotmatrixdot" state="0"> - <bounds x="56" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1292" element="dotmatrixdot" state="0"> - <bounds x="57" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1293" element="dotmatrixdot" state="0"> - <bounds x="58" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1294" element="dotmatrixdot" state="0"> - <bounds x="59" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1295" element="dotmatrixdot" state="0"> - <bounds x="60" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1296" element="dotmatrixdot" state="0"> - <bounds x="61" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1297" element="dotmatrixdot" state="0"> - <bounds x="62" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1298" element="dotmatrixdot" state="0"> - <bounds x="63" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1299" element="dotmatrixdot" state="0"> - <bounds x="64" y="19" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1300" element="dotmatrixdot" state="0"> - <bounds x="0" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1301" element="dotmatrixdot" state="0"> - <bounds x="1" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1302" element="dotmatrixdot" state="0"> - <bounds x="2" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1303" element="dotmatrixdot" state="0"> - <bounds x="3" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1304" element="dotmatrixdot" state="0"> - <bounds x="4" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1305" element="dotmatrixdot" state="0"> - <bounds x="5" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1306" element="dotmatrixdot" state="0"> - <bounds x="6" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1307" element="dotmatrixdot" state="0"> - <bounds x="7" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1308" element="dotmatrixdot" state="0"> - <bounds x="8" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1309" element="dotmatrixdot" state="0"> - <bounds x="9" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1310" element="dotmatrixdot" state="0"> - <bounds x="10" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1311" element="dotmatrixdot" state="0"> - <bounds x="11" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1312" element="dotmatrixdot" state="0"> - <bounds x="12" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1313" element="dotmatrixdot" state="0"> - <bounds x="13" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1314" element="dotmatrixdot" state="0"> - <bounds x="14" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1315" element="dotmatrixdot" state="0"> - <bounds x="15" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1316" element="dotmatrixdot" state="0"> - <bounds x="16" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1317" element="dotmatrixdot" state="0"> - <bounds x="17" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1318" element="dotmatrixdot" state="0"> - <bounds x="18" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1319" element="dotmatrixdot" state="0"> - <bounds x="19" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1320" element="dotmatrixdot" state="0"> - <bounds x="20" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1321" element="dotmatrixdot" state="0"> - <bounds x="21" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1322" element="dotmatrixdot" state="0"> - <bounds x="22" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1323" element="dotmatrixdot" state="0"> - <bounds x="23" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1324" element="dotmatrixdot" state="0"> - <bounds x="24" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1325" element="dotmatrixdot" state="0"> - <bounds x="25" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1326" element="dotmatrixdot" state="0"> - <bounds x="26" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1327" element="dotmatrixdot" state="0"> - <bounds x="27" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1328" element="dotmatrixdot" state="0"> - <bounds x="28" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1329" element="dotmatrixdot" state="0"> - <bounds x="29" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1330" element="dotmatrixdot" state="0"> - <bounds x="30" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1331" element="dotmatrixdot" state="0"> - <bounds x="31" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1332" element="dotmatrixdot" state="0"> - <bounds x="32" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1333" element="dotmatrixdot" state="0"> - <bounds x="33" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1334" element="dotmatrixdot" state="0"> - <bounds x="34" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1335" element="dotmatrixdot" state="0"> - <bounds x="35" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1336" element="dotmatrixdot" state="0"> - <bounds x="36" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1337" element="dotmatrixdot" state="0"> - <bounds x="37" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1338" element="dotmatrixdot" state="0"> - <bounds x="38" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1339" element="dotmatrixdot" state="0"> - <bounds x="39" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1340" element="dotmatrixdot" state="0"> - <bounds x="40" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1341" element="dotmatrixdot" state="0"> - <bounds x="41" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1342" element="dotmatrixdot" state="0"> - <bounds x="42" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1343" element="dotmatrixdot" state="0"> - <bounds x="43" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1344" element="dotmatrixdot" state="0"> - <bounds x="44" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1345" element="dotmatrixdot" state="0"> - <bounds x="45" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1346" element="dotmatrixdot" state="0"> - <bounds x="46" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1347" element="dotmatrixdot" state="0"> - <bounds x="47" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1348" element="dotmatrixdot" state="0"> - <bounds x="48" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1349" element="dotmatrixdot" state="0"> - <bounds x="49" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1350" element="dotmatrixdot" state="0"> - <bounds x="50" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1351" element="dotmatrixdot" state="0"> - <bounds x="51" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1352" element="dotmatrixdot" state="0"> - <bounds x="52" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1353" element="dotmatrixdot" state="0"> - <bounds x="53" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1354" element="dotmatrixdot" state="0"> - <bounds x="54" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1355" element="dotmatrixdot" state="0"> - <bounds x="55" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1356" element="dotmatrixdot" state="0"> - <bounds x="56" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1357" element="dotmatrixdot" state="0"> - <bounds x="57" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1358" element="dotmatrixdot" state="0"> - <bounds x="58" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1359" element="dotmatrixdot" state="0"> - <bounds x="59" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1360" element="dotmatrixdot" state="0"> - <bounds x="60" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1361" element="dotmatrixdot" state="0"> - <bounds x="61" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1362" element="dotmatrixdot" state="0"> - <bounds x="62" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1363" element="dotmatrixdot" state="0"> - <bounds x="63" y="20" width="1" height="1" /> - </backdrop> - <backdrop name="dotmatrix1364" element="dotmatrixdot" state="0"> - <bounds x="64" y="20" width="1" height="1" /> - </backdrop> - </view> + </mamelayout> diff --git a/src/mame/video/bfm_dm01.cpp b/src/mame/video/bfm_dm01.cpp index 1520433bb08..194cf043706 100644 --- a/src/mame/video/bfm_dm01.cpp +++ b/src/mame/video/bfm_dm01.cpp @@ -57,6 +57,8 @@ const device_type BF_DM01 = &device_creator<bfmdm01_device>; bfmdm01_device::bfmdm01_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, BF_DM01, "BFM Dotmatrix 01", tag, owner, clock, "bfm_dm01", __FILE__), m_matrixcpu(*this, "matrix"), + m_screen(*this, "dmd"), + m_palette(*this, "palette_lcd"), m_data_avail(0), m_control(0), m_xcounter(0), @@ -77,6 +79,12 @@ bfmdm01_device::bfmdm01_device(const machine_config &mconfig, const char *tag, d void bfmdm01_device::device_start() { + if(!m_screen->started()) + throw device_missing_dependencies(); + + if(!m_palette->started()) + throw device_missing_dependencies(); + m_busy_cb.resolve_safe(); save_item(NAME(m_data_avail)); @@ -90,8 +98,15 @@ void bfmdm01_device::device_start() for (int i = 0; i < DM_BYTESPERROW; i++) save_item(NAME(m_scanline), i); + + m_screen->register_screen_bitmap(m_tmpbitmap); + m_palette->set_pen_color(0, rgb_t(10, 5, 0)); + m_palette->set_pen_color(1, rgb_t(100, 50, 0)); + m_palette->set_pen_color(2, rgb_t(255, 127, 0)); } + + //------------------------------------------------- // device_reset - device-specific reset //------------------------------------------------- @@ -162,6 +177,8 @@ READ8_MEMBER( bfmdm01_device::mux_r ) WRITE8_MEMBER( bfmdm01_device::mux_w ) { + g_profiler.start(PROFILER_USER2); + if ( m_xcounter < DM_BYTESPERROW ) { m_scanline[m_xcounter] = data; @@ -190,16 +207,19 @@ WRITE8_MEMBER( bfmdm01_device::mux_w ) p++; } - g_profiler.start(PROFILER_USER1); - + UINT16* pix = &m_tmpbitmap.pix16(row*2); + UINT16* pix2 = &m_tmpbitmap.pix16((row*2)+1); for (int pos=0;pos<65;pos++) { - machine().output().set_indexed_value("dotmatrix", pos +(65*row), m_segbuffer[(pos)]); - } - - g_profiler.stop(); + pix[0 + (pos * 2)] = m_segbuffer[(pos)]+1; + pix[1 + (pos * 2)] = 0; + pix2[0 + (pos * 2)] = 0; + pix2[1 + (pos * 2)] = 0; + } } } + + g_profiler.stop(); } /////////////////////////////////////////////////////////////////////////// @@ -253,6 +273,15 @@ ADDRESS_MAP_START( bfm_dm01_memmap, AS_PROGRAM, 8, bfmdm01_device ) AM_RANGE(0x4000, 0xFfff) AM_ROM // 48k ROM ADDRESS_MAP_END + +UINT32 bfmdm01_device::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) +{ + copybitmap(bitmap, m_tmpbitmap, 0, 0, 0, 0, cliprect); + return 0; +} + + + INTERRUPT_GEN_MEMBER( bfmdm01_device::nmi_line_assert ) { m_matrixcpu->set_input_line(INPUT_LINE_NMI, ASSERT_LINE); @@ -263,7 +292,16 @@ static MACHINE_CONFIG_FRAGMENT( bdmdm01 ) MCFG_CPU_PROGRAM_MAP(bfm_dm01_memmap) MCFG_CPU_PERIODIC_INT_DRIVER(bfmdm01_device, nmi_line_assert, 1500 ) /* generate 1500 NMI's per second ?? what is the exact freq?? */ + MCFG_PALETTE_ADD("palette_lcd", 3) + + MCFG_SCREEN_ADD("dmd", RASTER) + MCFG_SCREEN_REFRESH_RATE(60) + MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(0)) + MCFG_SCREEN_SIZE(65*2, 21*2) + MCFG_SCREEN_VISIBLE_AREA(0, 65*2-1, 0, 21*2-1) + MCFG_SCREEN_UPDATE_DRIVER(bfmdm01_device, screen_update) + MCFG_SCREEN_PALETTE("palette_lcd") MACHINE_CONFIG_END machine_config_constructor bfmdm01_device::device_mconfig_additions() const diff --git a/src/mame/video/bfm_dm01.h b/src/mame/video/bfm_dm01.h index f933008bb1e..e9ff023a7ef 100644 --- a/src/mame/video/bfm_dm01.h +++ b/src/mame/video/bfm_dm01.h @@ -35,6 +35,8 @@ public: INTERRUPT_GEN_MEMBER(nmi_line_assert); + UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + protected: // device-level overrides virtual machine_config_constructor device_mconfig_additions() const override; @@ -43,6 +45,8 @@ protected: private: required_device<cpu_device> m_matrixcpu; + required_device<screen_device> m_screen; + required_device<palette_device> m_palette; // internal state int m_data_avail; @@ -57,6 +61,8 @@ private: devcb_write_line m_busy_cb; int read_data(void); + + bitmap_ind16 m_tmpbitmap; }; |