Repeat Region Relations

Embed Size (px)

DESCRIPTION

PROE

Citation preview

Customizing Information in Repeat RegionsNovember, 2002, by Jason Turk of MCAD Central

Have you ever placed a bill of material table on a drawing, complete with part numbers, quantities, and descriptions, only to find out that you are missing key information for particular parts? There may be instances when you want to change the output of the BOM table, but you cannot modify the model from which the information is taken. For instance, you have a part in your BOM table that is missing the description, but the part is at a commercial level and cannot be modified. In another situation, you used an instance of a family table for a particular part model named T1092322_OPEN, but you just want the basic part number, T1092322, to appear in the table instead. Or, you might have a wire part in an assembly, and want to change the quantity to read "6 inches" rather than a quantity of 1. There may be instances in which more than one of these conditions occurs at the same time. In these cases, it is necessary to write a relation or series of relations to change the output information in the BOM table. For example, if you have a part named H384283 that does not have a TITLE parameter for the description, you can write a relation that says (in English form) "For part number H384283 in the table, make the title read 'SIGNAL PROCESSOR, SMD106'". In the following segments, we'll learn how to write these relations to modify the BOM table to suit our needs.

What are Repeat Regions?Repeat regions are user-defined rows, columns, or combinations of rows/columns (cells) that duplicate themselves to accommodate the amount of data that the model currently possesses. They contain the following: System and user-defined parameters (such as description, time, and cost) for which the values are extracted from the model that is associated with the report. Standard table text

By using repeat regions, your tables that contain report data can expand and contract with varying quantities of data supplied by the models. The following example shows a BOM with repeat regions.

Figure 1 - BOM with Repeat Regions

Source: Pro/ENGINEER Help Manual, Parametric Technology Corporation

The Basic BOM TableA basic BOM table is shown below in Table 1. The table is shown in its symbolic form. The first row is plain text entered by the command Table > Enter Text > Keyboard and serves the column headers for the table. The second row contains the report symbols, entered by the command Table > Enter Text > Report Sym. The table is automatically populated with the following parameters: Part Number (asm.mbr.name) - internal parameter for the name of the model Quantity (rpt.qty) - automatically derived from Pro/REPORT Title or Description (asm.mbr.title) - a user-defined string parameter in the model called "title"

The part names, quantities, and descriptions are automatically populated throughout the table. Figure 2 shows the result of the table when it is shown in its regular report form.

Figure 2 - Basic BOM Table (Report Text) Pro/E builds the table by going through the assembly, one component at a time, and issues information from each component on a single row.

About Writing RelationsUsing the Relations command in the Table > Repeat Region > TBL REGIONS menu, you can write relations among parameter symbols in a repeat region and output the computed information in the same repeat region. The system stores the relations' parameter symbols created in a repeat region with it and you cannot reference them outside of the region. In assignment statements, you can put only new parameter symbols on the left-hand side. You

must refer to parameter symbols in repeat regions by specifying their full name and converting the period (.) to an underscore (_), as shown in the following figure. To use the following example, you must add "rpt_qty" as a repeat region parameter symbol.

Figure 3 - Example of Relation

Source: Pro/ENGINEER Help Manual, Parametric Technology Corporation

Relations for Missing TitlesA common problem for BOM tables is that the model parameter TITLE is missing. In many cases the part was created years earlier without any standards or direction. In Figures 4 & 5 you will see the before and after results of writing relations to fix missing TITLE parameters.

Figure 4 - Before Relations

Figure 5 - After Relations

Using our basic table from before, we will need to change the BOM Table symbolic text under the "TITLE" column to look like Figure 16:

Figure 6 - Table for Missing Titles (Symbolic Form) STEP 1 Procedure for changing BOM Table symbolic text: 1. 2. 3. 4. Table > Enter Text > Report Sym Select the first active row in the TITLE column. rpt > rel > User Defined Type "my_title" and press Enter

STEP 2 Procedure for writing relations: 5. 6. 7. 8. Table > Repeat Region > Relations Pick the table you want to write the relations for Click Edit Rel Type the relation, adhering to this format:

If asm_mbr_name == "[part number]" my_title = "[new title]" Else my_title = asm_mbr_title EndIf For example, using Figures 4 & 5 above, the relation would be written as: /* Fill in the missing "Title" parameters

if asm_mbr_name == "H620003" my_title = "LTB CONNECTOR, FEMALE" else if asm_mbr_name == "S-247708" my_title = "CLAMP, CABLE" else if asm_mbr_name == "T1005120" my_title = "ASSY, PWB, 5-PIN BULKHEAD ROP" else if asm_mbr_name == "S-403823" my_title = "ASSEMBLY, BATTERY CONTACT BODY" else my_title = asm_mbr_title endif endif endif endif 5. Save & Close the Relations Window 6. Click Done Return > Update Tables

Relations to Change the Part Number

Figure 7 - Table for Changing Part Numbers (Symbolic Form) STEP 1 Procedure for changing BOM Table symbolic text: 1. 2. 3. 4. Table > Enter Text > Report Sym Select the first active row in the PART column. rpt > rel > User Defined Type "my_name" and press Enter

STEP 2 Procedure for writing relations: 5. 6. 7. 8. Table > Repeat Region > Relations Pick the table you want to write the relations for Click Edit Rel Type the relation, adhering to this format:

If asm_mbr_name == "[part number]" my_name = "[new part number]" Else my_name = asm_mbr_name EndIf

For example, to change three part numbers the relation would be written as: /* Fill in the alternate part name (number) parameters if asm_mbr_name == "T1025673_E019275" my_name = "E019275" else if asm_mbr_name == "T1025673_E047896" my_name = "E047896" else if asm_mbr_name == "T1025673_E058384" my_name = "E058384" else my_name = asm_mbr_name endif endif endif

Relations to Change the Quantity

Figure 8 - Table for Changing Quantity (Symbolic Form) STEP 1 Procedure for changing BOM Table symbolic text: 1. 2. 3. 4. Table > Enter Text > Report Sym Select the first active row in the PART column. rpt > rel > User Defined Type "my_qty" and press Enter

STEP 2 Procedure for writing relations: 1. 2. 3. 4. Table > Repeat Region > Relations Pick the table you want to write the relations for Click Edit Rel Type the relation, adhering to this format:

If asm_mbr_name == "[part number]" my_qty = "[new quantity]" Else my_qty = rpt_qty EndIf For example, to change 2 quantities the relation would be written as: /* Fill in the alternate quantity parameters

my_qty=rpt_qty if asm_mbr_name=="E058384" my_qty="10 ft." else if asm_mbr_name=="E019275" my_qty="1-1/2 in." else my_qty = rpt_qty endif endif

Changing BOM Table Fields SimultaneouslyWhen it is necessary to change more than one field on a single table, change the symbolic text as necessary and write the relations sequentially.

Figure 9 - Table with All Parameters Changed (Symbolic Form) For example, to change part number, quantity, and title all at once, your relation may look something like this: /* Fill in the missing "Title" parameters if asm_mbr_name == "H620003" my_title = "LTB CONNECTOR, FEMALE" else if asm_mbr_name == "S-247708" my_title = "CLAMP, CABLE" else if asm_mbr_name == "T1005120" my_title = "ASSY, PWB, 5-PIN BULKHEAD ROP" else if asm_mbr_name == "S-403823" my_title = "ASSEMBLY, BATTERY CONTACT BODY" else my_title = asm_mbr_title endif endif endif endif

/* Fill in the alternate part name (number) parameters if asm_mbr_name == "T1025673_E019275" my_name = "E019275" else if asm_mbr_name == "T1025673_E047896"

my_name = "E047896" else if asm_mbr_name == "T1025673_E058384" my_name = "E058384" else my_name = asm_mbr_name endif endif endif

/* Fill in the alternate quantity parameters if asm_mbr_name=="E058384" my_qty="10 ft." else if asm_mbr_name=="E019275" my_qty="1-1/2 in." else my_qty=rpt_qty endif endif

Related Files

Related Articles

0100090000032704000000000203000000000203000026060f00fa05574d46430100000000000100c1f80000 000001000000d805000000000000d8050000010000006c00000000000000000000000d0000000d00000000 00000000000000ed010000ed01000020454d4600000100d80500000f0000000100000000000000000000000 00000008007000038040000a50200007d010000000000000000000000000000d5550a0048d005004600000 02c00000020000000454d462b014001001c000000100000000210c0db010000007800000078000000460000 00f8010000ec010000454d462b224004000c000000000000001e4009000c00000000000000244001000c000 000000000003040020010000000040000000000803f214007000c0000000000000008400005440100003801 00000210c0db01000000000000000000000000000000000000000100000089504e470d0a1a0a0000000d494 844520000000e0000000e0403000000ed6630e200000030504c5445e9bea3d4792ef3b42fab2517a41811fbc3 32b02f19efac2dc15837c3541cda9673faefe7fdf9f6fcf5efffcc33ffffffbfb2a6fd0000001074524e53ffffffffffffffffffff ffffffffff00e0235d1900000001624b47440f18ba00d90000000c636d50504a436d7030373132000000074f6db7 a5000000654944415418d363f8ffff3f0314a79d07d3bf66ae07d397956c81f48715e9efcabaf819da26d6bd7b2e 99c17042eeddbb770f7b18fe4c07d295e719fe5fd67bf7c816a8fe1b503e1f487f09150cf507d25ba6087a7a0369 96d5ff773900e9bd401b6eff070037a04822e2e810a80000000049454e44ae426082000840010824000000180 000000210c0db01000000030000000000000000000000000000001b4000004000000034000000010000000 2000000000000bf000000bf000060410000604103000000000000b3000000b3ffff5f41000000b3000000b3ffff 5f412100000008000000620000000c00000001000000150000000c00000004000000150000000c000000040 00000460000001400000008000000544e50500601000051000000b800000000000000000000000d0000000 d000000000000000000000000000000000000000e0000000e0000005000000030000000800000003800000 0000000008600ee000e0000000e000000280000000e0000000e000000010001000000000000000000000000 0000000000000000000000000000000000ffffff003030ec023cf0ec023ff000001fe000001fe000003ff000007ff8 0000fffc0000fffc00007ff800000fc00000078000000380000003000000510000009c010000000000000000000 00d0000000d000000000000000000000000000000000000000e0000000e000000500000006c000000bc0000 00e000000000000000c60088000e0000000e000000280000000e0000000e000000010008000000000000000 0000000000000000000110000000000000000000000ffffff00a3bee900192fb000f6f9fd007396da001c54c300 eff5fc001725ab002fb4f3003758c1002dacef0033ccff002e79d4001118a40032c3fb00e7effa000101100701010 10101010710010100000101020e0510010110050e020101f32e0101100e060e0d0d0e060e10010100000101 010e0f0f0d0d0f0f0e0101015e40010101030b0c0c0c0c0b03010101ec0201010708090c0c0c0c0908070101ec 020104060b0c0c0c0c0c0c0b0604010000040a0d0c0c0c0c0c0c0c0c0d0a0400000a03060d0b0c0c0c0c0b0d06 030a00000102050a030b0c0c0b030a050201000001010101070809090807010101010000010101010105060 60501010101010000010101010101030304010101010100000101010101010202010101010101000046000 0001400000008000000544e5050070100004c0000006400000000000000000000000d0000000d000000000 00000000000000e0000000e0000002900aa0000000000000000000000803f00000000000000000000803f00 00000000000000000000000000000000000000000000000000000000000000220000000c000000ffffffff4600 00001c00000010000000454d462b024000000c000000000000000e000000140000000000000010000000140 000000400000003010800050000000b0200000000050000000c020e000e00030000001e0004000000070104 0004000000070104003d000000410b8600ee000e000e00000000000e000e0000000000280000000e0000000 e000000010001000000000000000000000000000000000000000000000000003030ec023cf0ec023ff000001f e000001fe000003ff000007ff80000fffc0000fffc00007ff800000fc00000078000000380000003000000b300000 0410bc60088000e000e00000000000e000e0000000000280000000e0000000e000000010008000000000000 0000000000000000000000110000000000000000000000ffffff00a3bee900192fb000f6f9fd007396da001c54c 300eff5fc001725ab002fb4f3003758c1002dacef0033ccff002e79d4001118a40032c3fb00e7effa000101100701 01010101010710010100000101020e0510010110050e020101f32e0101100e060e0d0d0e060e10010100000 101010e0f0f0d0d0f0f0e0101015e40010101030b0c0c0c0c0b03010101ec0201010708090c0c0c0c090807010 1ec020104060b0c0c0c0c0c0c0b0604010000040a0d0c0c0c0c0c0c0c0c0d0a0400000a03060d0b0c0c0c0c0b0 d06030a00000102050a030b0c0c0b030a050201000001010101070809090807010101010000010101010105 0606050101010101000001010101010103030401010101010000010101010101020201010101010100000c 00000040092900aa000000000000000e000e0000000000040000002701ffff03000000000001000900000327 04000000000203000000000203000026060f00fa05574d46430100000000000100c1f80000000001000000d8 05000000000000d8050000010000006c00000000000000000000000d0000000d0000000000000000000000 ed010000ed01000020454d4600000100d80500000f000000010000000000000000000000000000008007000 038040000a50200007d010000000000000000000000000000d5550a0048d00500460000002c000000200000 00454d462b014001001c000000100000000210c0db01000000780000007800000046000000f8010000ec010 000454d462b224004000c000000000000001e4009000c00000000000000244001000c000000000000003040 020010000000040000000000803f214007000c000000000000000840000544010000380100000210c0db010 00000000000000000000000000000000000000100000089504e470d0a1a0a0000000d494844520000000e0 000000e0403000000ed6630e200000030504c5445e9bea3d4792ef3b42fab2517a41811fbc332b02f19efac2dc 15837c3541cda9673faefe7fdf9f6fcf5efffcc33ffffffbfb2a6fd0000001074524e53ffffffffffffffffffffffffffffff00e0235d 1900000001624b47440f18ba00d90000000c636d50504a436d7030373132000000074f6db7a5000000654944

415418d363f8ffff3f0314a79d07d3bf66ae07d397956c81f48715e9efcabaf819da26d6bd7b2e99c17042eeddbb 770f7b18fe4c07d295e719fe5fd67bf7c816a8fe1b503e1f487f09150cf507d25ba6087a7a036996d5ff773900e9 bd401b6eff070037a04822e2e810a80000000049454e44ae426082000840010824000000180000000210c0db 01000000030000000000000000000000000000001b40000040000000340000000100000002000000000000 bf000000bf000060410000604103000000000000b3000000b3ffff5f41000000b3000000b3ffff5f412100000008 000000620000000c00000001000000150000000c00000004000000150000000c00000004000000460000001 400000008000000544e50500601000051000000b800000000000000000000000d0000000d0000000000000 00000000000000000000000000e0000000e00000050000000300000008000000038000000000000008600e e000e0000000e000000280000000e0000000e0000000100010000000000000000000000000000000000000 000000000000000000000ffffff003030ec023cf0ec023ff000001fe000001fe000003ff000007ff80000fffc0000fffc 00007ff800000fc00000078000000380000003000000510000009c01000000000000000000000d0000000d00 0000000000000000000000000000000000000e0000000e000000500000006c000000bc000000e0000000000 00000c60088000e0000000e000000280000000e0000000e0000000100080000000000000000000000000000 000000110000000000000000000000ffffff00a3bee900192fb000f6f9fd007396da001c54c300eff5fc001725ab0 02fb4f3003758c1002dacef0033ccff002e79d4001118a40032c3fb00e7effa0001011007010101010101071001 0100000101020e0510010110050e020101f32e0101100e060e0d0d0e060e10010100000101010e0f0f0d0d0f0 f0e0101015e40010101030b0c0c0c0c0b03010101ec0201010708090c0c0c0c0908070101ec020104060b0c0c 0c0c0c0c0b0604010000040a0d0c0c0c0c0c0c0c0c0d0a0400000a03060d0b0c0c0c0c0b0d06030a000001020 50a030b0c0c0b030a0502010000010101010708090908070101010100000101010101050606050101010101 00000101010101010303040101010101000001010101010102020101010101010000460000001400000008 000000544e5050070100004c0000006400000000000000000000000d0000000d0000000000000000000000 0e0000000e0000002900aa0000000000000000000000803f00000000000000000000803f000000000000000 0000000000000000000000000000000000000000000000000220000000c000000ffffffff460000001c0000001 0000000454d462b024000000c000000000000000e000000140000000000000010000000140000000400000 003010800050000000b0200000000050000000c020e000e00030000001e0004000000070104000400000007 0104003d000000410b8600ee000e000e00000000000e000e0000000000280000000e0000000e00000001000 1000000000000000000000000000000000000000000000000003030ec023cf0ec023ff000001fe000001fe000 003ff000007ff80000fffc0000fffc00007ff800000fc00000078000000380000003000000b3000000410bc600880 00e000e00000000000e000e0000000000280000000e0000000e000000010008000000000000000000000000 0000000000110000000000000000000000ffffff00a3bee900192fb000f6f9fd007396da001c54c300eff5fc00172 5ab002fb4f3003758c1002dacef0033ccff002e79d4001118a40032c3fb00e7effa000101100701010101010107 10010100000101020e0510010110050e020101f32e0101100e060e0d0d0e060e10010100000101010e0f0f0d 0d0f0f0e0101015e40010101030b0c0c0c0c0b03010101ec0201010708090c0c0c0c0908070101ec020104060 b0c0c0c0c0c0c0b0604010000040a0d0c0c0c0c0c0c0c0c0d0a0400000a03060d0b0c0c0c0c0b0d06030a00000 102050a030b0c0c0b030a050201000001010101070809090807010101010000010101010105060605010101 0101000001010101010103030401010101010000010101010101020201010101010100000c000000400929 00aa000000000000000e000e0000000000040000002701ffff03000000000001000900000327040000000002 03000000000203000026060f00fa05574d46430100000000000100c1f80000000001000000d8050000000000 00d8050000010000006c00000000000000000000000d0000000d0000000000000000000000ed010000ed010 00020454d4600000100d80500000f000000010000000000000000000000000000008007000038040000a502 00007d010000000000000000000000000000d5550a0048d00500460000002c00000020000000454d462b01 4001001c000000100000000210c0db01000000780000007800000046000000f8010000ec010000454d462b2 24004000c000000000000001e4009000c00000000000000244001000c000000000000003040020010000000 040000000000803f214007000c000000000000000840000544010000380100000210c0db010000000000000 00000000000000000000000000100000089504e470d0a1a0a0000000d494844520000000e0000000e040300 0000ed6630e200000030504c5445e9bea3d4792ef3b42fab2517a41811fbc332b02f19efac2dc15837c3541cda 9673faefe7fdf9f6fcf5efffcc33ffffffbfb2a6fd0000001074524e53ffffffffffffffffffffffffffffff00e0235d1900000001624 b47440f18ba00d90000000c636d50504a436d7030373132000000074f6db7a5000000654944415418d363f8ff ff3f0314a79d07d3bf66ae07d397956c81f48715e9efcabaf819da26d6bd7b2e99c17042eeddbb770f7b18fe4c07 d295e719fe5fd67bf7c816a8fe1b503e1f487f09150cf507d25ba6087a7a036996d5ff773900e9bd401b6eff0700 37a04822e2e810a80000000049454e44ae426082000840010824000000180000000210c0db0100000003000 0000000000000000000000000001b40000040000000340000000100000002000000000000bf000000bf0000 60410000604103000000000000b3000000b3ffff5f41000000b3000000b3ffff5f4121000000080000006200000 00c00000001000000150000000c00000004000000150000000c000000040000004600000014000000080000 00544e50500601000051000000b800000000000000000000000d0000000d00000000000000000000000000 0000000000000e0000000e00000050000000300000008000000038000000000000008600ee000e0000000e0 00000280000000e0000000e000000010001000000000000000000000000000000000000000000000000000 0000000ffffff003030ec023cf0ec023ff000001fe000001fe000003ff000007ff80000fffc0000fffc00007ff800000fc 00000078000000380000003000000510000009c01000000000000000000000d0000000d000000000000000 000000000000000000000000e0000000e000000500000006c000000bc000000e000000000000000c6008800 0e0000000e000000280000000e0000000e0000000100080000000000000000000000000000000000110000 000000000000000000ffffff00a3bee900192fb000f6f9fd007396da001c54c300eff5fc001725ab002fb4f3003758

c1002dacef0033ccff002e79d4001118a40032c3fb00e7effa0001011007010101010101071001010000010102 0e0510010110050e020101f32e0101100e060e0d0d0e060e10010100000101010e0f0f0d0d0f0f0e0101015e4 0010101030b0c0c0c0c0b03010101ec0201010708090c0c0c0c0908070101ec020104060b0c0c0c0c0c0c0b06 04010000040a0d0c0c0c0c0c0c0c0c0d0a0400000a03060d0b0c0c0c0c0b0d06030a00000102050a030b0c0c0 b030a050201000001010101070809090807010101010000010101010105060605010101010100000101010 101010303040101010101000001010101010102020101010101010000460000001400000008000000544e5 050070100004c0000006400000000000000000000000d0000000d00000000000000000000000e0000000e00 00002900aa0000000000000000000000803f00000000000000000000803f000000000000000000000000000 0000000000000000000000000000000000000220000000c000000ffffffff460000001c00000010000000454d4 62b024000000c000000000000000e000000140000000000000010000000140000000400000003010800050 000000b0200000000050000000c020e000e00030000001e00040000000701040004000000070104003d0000 00410b8600ee000e000e00000000000e000e0000000000280000000e0000000e00000001000100000000000 0000000000000000000000000000000000000003030ec023cf0ec023ff000001fe000001fe000003ff000007ff8 0000fffc0000fffc00007ff800000fc00000078000000380000003000000b3000000410bc60088000e000e00000 000000e000e0000000000280000000e0000000e00000001000800000000000000000000000000000000001 10000000000000000000000ffffff00a3bee900192fb000f6f9fd007396da001c54c300eff5fc001725ab002fb4f30 03758c1002dacef0033ccff002e79d4001118a40032c3fb00e7effa00010110070101010101010710010100000 101020e0510010110050e020101f32e0101100e060e0d0d0e060e10010100000101010e0f0f0d0d0f0f0e0101 015e40010101030b0c0c0c0c0b03010101ec0201010708090c0c0c0c0908070101ec020104060b0c0c0c0c0c0 c0b0604010000040a0d0c0c0c0c0c0c0c0c0d0a0400000a03060d0b0c0c0c0c0b0d06030a00000102050a030b 0c0c0b030a05020100000101010107080909080701010101000001010101010506060501010101010000010 10101010103030401010101010000010101010101020201010101010100000c00000040092900aa0000000 00000000e000e0000000000040000002701ffff0300000000000100090000032704000000000203000000000 203000026060f00fa05574d46430100000000000100c1f80000000001000000d805000000000000d80500000 10000006c00000000000000000000000d0000000d0000000000000000000000ed010000ed01000020454d46 00000100d80500000f000000010000000000000000000000000000008007000038040000a50200007d01000 0000000000000000000000000d5550a0048d00500460000002c00000020000000454d462b014001001c0000 00100000000210c0db01000000780000007800000046000000f8010000ec010000454d462b224004000c000 000000000001e4009000c00000000000000244001000c000000000000003040020010000000040000000000 803f214007000c000000000000000840000544010000380100000210c0db010000000000000000000000000 00000000000000100000089504e470d0a1a0a0000000d494844520000000e0000000e0403000000ed6630e2 00000030504c5445e9bea3d4792ef3b42fab2517a41811fbc332b02f19efac2dc15837c3541cda9673faefe7fdf9f 6fcf5efffcc33ffffffbfb2a6fd0000001074524e53ffffffffffffffffffffffffffffff00e0235d1900000001624b47440f18ba00 d90000000c636d50504a436d7030373132000000074f6db7a5000000654944415418d363f8ffff3f0314a79d07 d3bf66ae07d397956c81f48715e9efcabaf819da26d6bd7b2e99c17042eeddbb770f7b18fe4c07d295e719fe5fd6 7bf7c816a8fe1b503e1f487f09150cf507d25ba6087a7a036996d5ff773900e9bd401b6eff070037a04822e2e81 0a80000000049454e44ae426082000840010824000000180000000210c0db01000000030000000000000000 000000000000001b40000040000000340000000100000002000000000000bf000000bf00006041000060410 3000000000000b3000000b3ffff5f41000000b3000000b3ffff5f412100000008000000620000000c0000000100 0000150000000c00000004000000150000000c00000004000000460000001400000008000000544e5050060 1000051000000b800000000000000000000000d0000000d000000000000000000000000000000000000000 e0000000e00000050000000300000008000000038000000000000008600ee000e0000000e00000028000000 0e0000000e0000000100010000000000000000000000000000000000000000000000000000000000ffffff003 030ec023cf0ec023ff000001fe000001fe000003ff000007ff80000fffc0000fffc00007ff800000fc00000078000000 380000003000000510000009c01000000000000000000000d0000000d00000000000000000000000000000 0000000000e0000000e000000500000006c000000bc000000e000000000000000c60088000e0000000e0000 00280000000e0000000e000000010008000000000000000000000000000000000011000000000000000000 0000ffffff00a3bee900192fb000f6f9fd007396da001c54c300eff5fc001725ab002fb4f3003758c1002dacef0033c cff002e79d4001118a40032c3fb00e7effa00010110070101010101010710010100000101020e051001011005 0e020101f32e0101100e060e0d0d0e060e10010100000101010e0f0f0d0d0f0f0e0101015e40010101030b0c0 c0c0c0b03010101ec0201010708090c0c0c0c0908070101ec020104060b0c0c0c0c0c0c0b0604010000040a0d 0c0c0c0c0c0c0c0c0d0a0400000a03060d0b0c0c0c0c0b0d06030a00000102050a030b0c0c0b030a050201000 00101010107080909080701010101000001010101010506060501010101010000010101010101030304010 1010101000001010101010102020101010101010000460000001400000008000000544e5050070100004c0 000006400000000000000000000000d0000000d00000000000000000000000e0000000e0000002900aa000 0000000000000000000803f00000000000000000000803f0000000000000000000000000000000000000000 000000000000000000000000220000000c000000ffffffff460000001c00000010000000454d462b024000000c 000000000000000e000000140000000000000010000000140000000400000003010800050000000b020000 0000050000000c020e000e00030000001e00040000000701040004000000070104003d000000410b8600ee0 00e000e00000000000e000e0000000000280000000e0000000e000000010001000000000000000000000000 000000000000000000000000003030ec023cf0ec023ff000001fe000001fe000003ff000007ff80000fffc0000fffc 00007ff800000fc00000078000000380000003000000b3000000410bc60088000e000e00000000000e000e00

00000000280000000e0000000e000000010008000000000000000000000000000000000011000000000000 0000000000ffffff00a3bee900192fb000f6f9fd007396da001c54c300eff5fc001725ab002fb4f3003758c1002dac ef0033ccff002e79d4001118a40032c3fb00e7effa00010110070101010101010710010100000101020e051001 0110050e020101f32e0101100e060e0d0d0e060e10010100000101010e0f0f0d0d0f0f0e0101015e400101010 30b0c0c0c0c0b03010101ec0201010708090c0c0c0c0908070101ec020104060b0c0c0c0c0c0c0b0604010000 040a0d0c0c0c0c0c0c0c0c0d0a0400000a03060d0b0c0c0c0c0b0d06030a00000102050a030b0c0c0b030a050 20100000101010107080909080701010101000001010101010506060501010101010000010101010101030 30401010101010000010101010101020201010101010100000c00000040092900aa000000000000000e000e 0000000000040000002701ffff0300000000000100090000032704000000000203000000000203000026060f 00fa05574d46430100000000000100c1f80000000001000000d805000000000000d8050000010000006c0000 0000000000000000000d0000000d0000000000000000000000ed010000ed01000020454d4600000100d805 00000f000000010000000000000000000000000000008007000038040000a50200007d01000000000000000 0000000000000d5550a0048d00500460000002c00000020000000454d462b014001001c0000001000000002 10c0db01000000780000007800000046000000f8010000ec010000454d462b224004000c000000000000001 e4009000c00000000000000244001000c000000000000003040020010000000040000000000803f21400700 0c000000000000000840000544010000380100000210c0db010000000000000000000000000000000000000 00100000089504e470d0a1a0a0000000d494844520000000e0000000e0403000000ed6630e200000030504c 5445e9bea3d4792ef3b42fab2517a41811fbc332b02f19efac2dc15837c3541cda9673faefe7fdf9f6fcf5efffcc33fff fffbfb2a6fd0000001074524e53ffffffffffffffffffffffffffffff00e0235d1900000001624b47440f18ba00d90000000c63 6d50504a436d7030373132000000074f6db7a5000000654944415418d363f8ffff3f0314a79d07d3bf66ae07d3 97956c81f48715e9efcabaf819da26d6bd7b2e99c17042eeddbb770f7b18fe4c07d295e719fe5fd67bf7c816a8fe 1b503e1f487f09150cf507d25ba6087a7a036996d5ff773900e9bd401b6eff070037a04822e2e810a800000000 49454e44ae426082000840010824000000180000000210c0db0100000003000000000000000000000000000 0001b40000040000000340000000100000002000000000000bf000000bf0000604100006041030000000000 00b3000000b3ffff5f41000000b3000000b3ffff5f412100000008000000620000000c000000010000001500000 00c00000004000000150000000c00000004000000460000001400000008000000544e505006010000510000 00b800000000000000000000000d0000000d000000000000000000000000000000000000000e0000000e00 000050000000300000008000000038000000000000008600ee000e0000000e000000280000000e0000000e0 000000100010000000000000000000000000000000000000000000000000000000000ffffff003030ec023cf0e c023ff000001fe000001fe000003ff000007ff80000fffc0000fffc00007ff800000fc0000007800000038000000300 0000510000009c01000000000000000000000d0000000d000000000000000000000000000000000000000e 0000000e000000500000006c000000bc000000e000000000000000c60088000e0000000e000000280000000 e0000000e0000000100080000000000000000000000000000000000110000000000000000000000ffffff00a3 bee900192fb000f6f9fd007396da001c54c300eff5fc001725ab002fb4f3003758c1002dacef0033ccff002e79d40 01118a40032c3fb00e7effa00010110070101010101010710010100000101020e0510010110050e020101f32e 0101100e060e0d0d0e060e10010100000101010e0f0f0d0d0f0f0e0101015e40010101030b0c0c0c0c0b03010 101ec0201010708090c0c0c0c0908070101ec020104060b0c0c0c0c0c0c0b0604010000040a0d0c0c0c0c0c0c0 c0c0d0a0400000a03060d0b0c0c0c0c0b0d06030a00000102050a030b0c0c0b030a050201000001010101070 80909080701010101000001010101010506060501010101010000010101010101030304010101010100000 1010101010102020101010101010000460000001400000008000000544e5050070100004c0000006400000 000000000000000000d0000000d00000000000000000000000e0000000e0000002900aa000000000000000 0000000803f00000000000000000000803f0000000000000000000000000000000000000000000000000000 000000000000220000000c000000ffffffff460000001c00000010000000454d462b024000000c000000000000 000e000000140000000000000010000000140000000400000003010800050000000b020000000005000000 0c020e000e00030000001e00040000000701040004000000070104003d000000410b8600ee000e000e00000 000000e000e0000000000280000000e0000000e00000001000100000000000000000000000000000000000 0000000000000003030ec023cf0ec023ff000001fe000001fe000003ff000007ff80000fffc0000fffc00007ff80000 0fc00000078000000380000003000000b3000000410bc60088000e000e00000000000e000e0000000000280 000000e0000000e0000000100080000000000000000000000000000000000110000000000000000000000fff fff00a3bee900192fb000f6f9fd007396da001c54c300eff5fc001725ab002fb4f3003758c1002dacef0033ccff002e 79d4001118a40032c3fb00e7effa00010110070101010101010710010100000101020e0510010110050e0201 01f32e0101100e060e0d0d0e060e10010100000101010e0f0f0d0d0f0f0e0101015e40010101030b0c0c0c0c0b 03010101ec0201010708090c0c0c0c0908070101ec020104060b0c0c0c0c0c0c0b0604010000040a0d0c0c0c0 c0c0c0c0c0d0a0400000a03060d0b0c0c0c0c0b0d06030a00000102050a030b0c0c0b030a0502010000010101 01070809090807010101010000010101010105060605010101010100000101010101010303040101010101 0000010101010101020201010101010100000c00000040092900aa000000000000000e000e0000000000040 000002701ffff030000000000

Avg. User Rating

Email This Article To A Friend - Print This Article Articles can be E-mailed to a friend and you can get a printable version of the article. Use your own buttons and links!>> Search Articles : By Creating a simple form like this on anywhere on your site, you'll get a full search engine for your articles

0100090000038a00000000006c00000000006c00000026060f00ce00574d4643010000000000010061370000000001 000000ac00000000000000ac000000010000006c0000000000000000000000ffffffffffffffff0000000000000000a733000 0222b000020454d4600000100ac00000005000000010000000000000000000000000000008007000038040000a502 00007d010000000000000000000000000000d5550a0048d00500160000000c000000180000000a000000100000000 000000000000000090000001000000000000000000000000e00000014000000000000001000000014000000040000 0003010800050000000b0200000000050000000c0239017701040000002e011800030000000000