|
|
Line 1: |
Line 1: |
| = New Features =
| |
| V.R. Technology's NES-on-a-chip consoles enhance the original NES/Famicom in several aspects. In this description, features are assigned to the earliest console type for which a datasheet is publicly available. The publicly-available datasheets are for the VT01, VT02, VT03, VT16 and VT18. Therefore, a feature described as VT16+ may have been available earlier on VT04 to VT15 consoles.
| |
|
| |
|
| == VT02+ Features ==
| |
| * OneBus mode: PRG and CHR data come from the same address space. The cartridge connector's PPU Address lines are repurposed as higher-order Address lines.
| |
| * Integrated MMC3-compatible bankswitching by the console, active when in OneBus mode.
| |
| * Ability to use NTRAM as CHR-RAM.
| |
| * Choice of A12 and HBLANK as a source for clocking the scanline interrupt.
| |
| * Automatic X/Y light gun position determination.
| |
| * Integrated RS232 interface.
| |
| * Direct NTSC/PAL and 50/60 Hz identification.
| |
| * Automatic per-attribute-tile background and per-sprite sprite bankswitching.
| |
| * DMA can be used to transfer data to PPU memory (via $2007) in addition to the normal transferring of data to OAM memory (via $2004).
| |
| * A second APU doubling the number of sound channels.
| |
| * Raw PCM output using full eight bits of resolution.
| |
| * DMA-driven raw PCM output.
| |
| * Data for DMA-driven DPCM/PCM output can be placed anywhere in CPU address space, not just within the $C000-$FFFF range.
| |
|
| |
| == VT03+ Features ==
| |
| * Sprites can be 16 pixels wide.
| |
| * Graphics can use four bits-per-pixel, so that together with two attribute data bits, sixty-four rather than 16 colors each for background and sprites may be chosen.
| |
| * Enhanced color palette with twelve bits rather than six bits per color.
| |
|
| |
| == VT16+ Features ==
| |
| * Internal CPU RAM is 4 KiB rather than just 2 KiB.
| |
| * The CPU can be set to run at the same speed (5.37 MHz) as the PPU.
| |
| * The CPU can be set to retrieve interrupt vectors from RAM ($0FFx) rather than ROM ($FFFx).
| |
| * DMA-driven DPCM/PCM output can be set to use its own banking registers independent of normal PRG banking.
| |
| * Hardware random number generator.
| |
|
| |
| = Memory Map =
| |
| == CPU Memory Map ==
| |
| CPU $0000-$07FF: 2 KiB of internal RAM
| |
| CPU $0800-$0FFF: VT16+: VT01-VT03: Mirror of CPU $0000-$07FF, VT16+: Further 2 KiB of internal RAM
| |
| CPU $1000-$1FFF: Mirror of CPU $0000-$0FFF
| |
| CPU $2000-$2007: RP2C02-compatible PPU registers
| |
| CPU $2010-$201F: New PPU registers
| |
| CPU $4000-$401F: RP2A03-compatible APU, DMA and I/O registers
| |
| CPU $4020-$403F: New APU, DMA and I/O registers
| |
| CPU $4100-$41FF: New miscellaneous registers
| |
| CPU $6000-$7FFF: Optional WRAM, if present on cartridge
| |
| CPU $8000-$FFFF (write): When forwarding is enabled (register $410B bit 3 "FWEN" =0): MMC3-compatible registers that are forwarded to $4101-$4108)
| |
| CPU $8000-$FFFF (read): Four 8 KiB PRG-ROM banks. See the section "PRG-ROM Bankswitching" for details.
| |
|
| |
| == PPU Memory Map ==
| |
| PPU $0000-$1FFF: CHR-ROM, all modes: CHR pattern data, bit planes 0 and 1
| |
| PPU $2000-$2FFF: NTRAM (2 KiB, selectable mirroring)
| |
| PPU $3F00-$3F1F: CGRAM in 2bpp modes, entries $3F10/$3F14/$3F18/$3F01 mirrors of $3F00/$3F04/$3F08/$3F0C.
| |
| VT03+: Also CGRAM in 4bpp modes, bits 0 to 5, of colors 00-1F; same mirroring of address bit 4 applies.
| |
| PPU $3F20-$3F7F: VT03+: CGRAM in 4bpp modes, bits 0 to 5, of colors 20-7F; no mirroring of address bit 4.
| |
| PPU $3F80-$3FFF: VT03+: CGRAM in 4bpp modes, bits 6 to 11, of colors 00-7F; no mirroring of address bit 4.
| |
| PPU $4000-$5FFF: CHR-ROM, 4bpp modes: CHR pattern data, bit planes 2 and 3 (VT03+)
| |
|
| |
| = PRG-ROM Bankswitching =
| |
| The bankswitching scheme is based on, and indeed backwards-compatible to, the Nintendo [[MMC3]]'s. The CPU address range is divided into four 8 KiB banks. For each of these four 8 KiB banks, the bank number is made up of four components:
| |
| * an Inner Bank that resembles the MMC3's bank registers,
| |
| * a Middle Bank that can replace zero to eight bits of the lower bank number,
| |
| * an Outer Bank that extend the address range up to 32 MiB.
| |
| * a Relative Bank that ''adds'' a fixed value to the previous three components (VT16+ only).
| |
|
| |
| The final 8 KiB PRG-ROM bank number therefore is:
| |
| BankNumber = ((InnerBank &InnerBankMask) | (MiddleBank &~InnerBankMask) | (OuterBank <<8)) +RelativeBank;
| |
|
| |
| == Inner PRG Bank number ==
| |
| The lower bits bits of the 8 KiB PRG-ROM bank number, constituting the Inner Bank number, are normally the only ones that are manipulated by individual games. By default, they resemble the MMC3's original bank registers; accordingly, two of the four banks are fixed. By setting bit 6 in register $410B (PQ2EN), the $C000-$DFFF bank may be turned into a selectable bank as well.
| |
|
| |
| CPU $8000-$9FFF: Selected by register $4107 (PQ0), akin to MMC3 register 6.
| |
| CPU $A000-$BFFF: Selected by register $4108 (PQ1), akin to MMC3 register 7.
| |
| CPU $C000-$DFFF: If $410B bit 6 (PQ2EN)=0: Fixed to $FE, or second-to-last bank (within the Middle/Outer Bank), as on the MMC3.
| |
| If $410B bit 6 (PQ2EN)=1: Selected by register $4109 (PQ2), an enhancement over the MMC3.
| |
| CPU $E000-$FFFF: Fixed to $FF, or last bank (within the Middle/Outer Bank), as on the MMC3.
| |
|
| |
| If $4105 bit 6 (COMR6) is 1, then the sources of the $8000-$9FFF/$A000-$BFFF bank numbers are swapped with the $C000-$DFFF/$E000-$FFFF banks', just as on the MMC3, or in other words, CPU A14 is inverted.
| |
|
| |
| == Middle PRG Bank mask and number ==
| |
| The Middle Bank is normally only used on multicarts. It allows masking off and replacing bits of the Inner Bank number, so that several games may be put into one Outer Bank. Bits 0-2 of register $410B (PS) select the AND mask that is applied to the Inner Bank number. Only the bits that have been masked off that way are then replaced with the respective bits from register $410A (PQ3):
| |
|
| |
| $410B Inner Bank Middle Bank Effective
| |
| bits 0-2 AND Mask AND Mask Inner Bank Size
| |
| -------- ---------- -------- ---------------
| |
| 0 3F C0 512 KiB
| |
| 1 1F E0 256 KiB
| |
| 2 0F F0 128 KiB
| |
| 3 07 F8 64 KiB
| |
| 4 03 FC 32 KiB
| |
| 5 01 FE 16 KiB
| |
| 6 00 FF 8 KiB
| |
| 7 FF 00 2048 KiB
| |
|
| |
| == Outer PRG Bank number ==
| |
| The Outer Bank number is used mostly by multicarts, but also by very large games for which the maximum Inner Bank size of 2 MiB is insufficient. On the VT02 and VT03, bits 4-7 of register $4100 simply select the 2 MiB Outer Bank number for all four banks. On the VT16+, if register $411C bit 5 (EXT2421EN) is set, each of the four 8 KiB banks in the CPU $8000-$FFFF address range can have its own Outer Bank number.
| |
|
| |
| VT02, VT03; VT16+ with $411C bit 5 (EXT2421)=0:
| |
| CPU $8000-$FFFF: Selected by register $4100 bits 4-7 (PQ7).
| |
|
| |
| VT16+ with $411C bit 6 (EXT2421)=1:
| |
| CPU $8000-$9FFF: Selected by register $4110 bits 0-3 (PQ4).
| |
| CPU $A000-$BFFF: Selected by register $4110 bits 4-7 (PQ5).
| |
| CPU $C000-$DFFF: If $410B bit 6 (PQ2EN)=0: Selected by $4100 bits 4-7 (PQ7), as on VT02/VT03.
| |
| If $410B bit 6 (PQ2EN)=1: Selected by $4111 bits 0-3 (PQ6).
| |
| CPU $E000-$FFFF: Selected by $4100 bits 4-7 (PQ7), as on VT02/VT03.
| |
|
| |
| If $4105 bit 6 (COMR6) is 1, then the sources of the $8000-$9FFF/$A000-$BFFF bank numbers are swapped with the $C000-$DFFF/$E000-$FFFF banks', as was the case with the Inner Bank number.
| |
|
| |
| == Relative Bank number ==
| |
| The Relative Bank only exists on the VT16 and later consoles. While Inner, Middle and Outer Bank numbers are combined with AND and OR operations, the Relative Bank is simply ''added'', yielding much greater flexibility. The Relative Bank Number is defined by registers $4127 (bits 0-7) and $4128 (bits 0-2), yielding 11 bits. Because the Relative Bank number has only eleven rather than the twelve bits of the combined Inner, Middle and Outer Bank numbers, it is guaranteed that final bank number does not overflow within the defined address space, guaranteeing forward-compatibility with future revisions of the console that may extend the address space.
| |
|
| |
| = CHR-ROM Layout =
| |
| The layout of CHR-ROM, and by consequence the meaning of the CHR bank registers, is dependent on the current video mode. The concept of a video mode is rarely applied to the original NES/Famicom, as it would be considered to only have a single one. Things are more complex on the VTxx series: the VT02 has two, the VT03 has four, and the VT16+ have six video modes defined by the number of bits per pixel (bpp), whether Address Extension is used, and whether the Video Data Bus has eight or sixteen bits:
| |
|
| |
| {| class="wikitable"
| |
| ! rowspan=2 | Bits per pixel !! rowspan=2 | Address Extension !! colspan=2 | Video Data Bus Width
| |
| |-
| |
| ! 8 bit !! 16 bit
| |
| |-
| |
| | rowspan=2 | 2 || off || RP2C02+ || -
| |
| |-
| |
| | on || VT02+ || -
| |
| |-
| |
| | rowspan=2 | 4 || off || VT03 || VT16+
| |
| |-
| |
| | on || VT03+ || VT16+
| |
| |}
| |
|
| |
| == Bits per pixel ==
| |
| The number of bits per pixel (bpp) is selected separately for background and sprites. For background, the two additional bits are always used to form four-bit color numbers. For sprites in 4bpp modes, it can further be selected whether the second pair of bits is to be used to form a four-bit color number, or whether they are used to increase the number of horizontal pixels per sprite from eight to sixteen. For the background, the number of bits per pixel is selected by register $2010 bit 1 (BK16EN), for sprites by register $2010 bit 2 (SP16EN), with a cleared bit indicating 2bpp, and a set bit indicating 4bpp.
| |
|
| |
| On the VT03, the choice between sixteen colors per sprite --- register $2010 bit 0 (PIX16EN) cleared --- and sixteen pixels per sprite --- register $2010 bit 0 (PIX16EN) set --- applies to all sprites. On the VT16+, the same applies if register $2010 bit 5 (SPOPEN) is cleared; if register $2010 bit 2 (SP16EN) and bit 5 (SPOPEN) are both set, the choice can be made for each sprite individually by clearing (sixteen colors) or setting (sixteen pixels) bit 4 of [[PPU_OAM#Byte_2|byte 2]] of that sprite's OAM data.
| |
|
| |
| == CHR Pattern Data Layout ==
| |
|
| |
| In '''2bpp''' modes, each CHR data layout is the same as on the original NES/Famicom, with each tile's CHR data occupying sixteen bytes, and the two bitplanes' data stored sequentially:
| |
| Byte Bit Meaning Byte Bit Meaning
| |
| ---------------- ----------------
| |
| 0 7 pixel Y=0 X=0, bit 0 8 7 pixel Y=0 X=0, bit 1
| |
| 0 6 pixel Y=0 X=1, bit 0 8 6 pixel Y=0 X=1, bit 1
| |
| 0 5 pixel Y=0 X=2, bit 0 8 5 pixel Y=0 X=2, bit 1
| |
| 0 4 pixel Y=0 X=3, bit 0 8 4 pixel Y=0 X=3, bit 1
| |
| 0 3 pixel Y=0 X=4, bit 0 8 3 pixel Y=0 X=4, bit 1
| |
| 0 2 pixel Y=0 X=5, bit 0 8 2 pixel Y=0 X=5, bit 1
| |
| 0 1 pixel Y=0 X=6, bit 0 8 1 pixel Y=0 X=6, bit 1
| |
| 0 0 pixel Y=0 X=7, bit 0 8 0 pixel Y=0 X=7, bit 1
| |
| 1 7 pixel Y=1 X=0, bit 0 9 7 pixel Y=1 X=0, bit 1
| |
| 1 6 pixel Y=1 X=1, bit 0 9 6 pixel Y=1 X=1, bit 1
| |
| 1 5 pixel Y=1 X=2, bit 0 9 5 pixel Y=1 X=2, bit 1
| |
| 1 4 pixel Y=1 X=3, bit 0 9 4 pixel Y=1 X=3, bit 1
| |
| 1 3 pixel Y=1 X=4, bit 0 9 3 pixel Y=1 X=4, bit 1
| |
| 1 2 pixel Y=1 X=5, bit 0 9 2 pixel Y=1 X=5, bit 1
| |
| 1 1 pixel Y=1 X=6, bit 0 9 1 pixel Y=1 X=6, bit 1
| |
| 1 0 pixel Y=1 X=7, bit 0 9 0 pixel Y=1 X=7, bit 1
| |
| 2 7 pixel Y=2 X=0, bit 0 A 7 pixel Y=2 X=0, bit 1
| |
| : : : : : :
| |
| 7 7 pixel Y=7 X=7, bit 0 F 7 pixel Y=7 X=7, bit 1
| |
|
| |
| All numbers hexadecimal.
| |
| In the '''4bpp with 8 bit data bus''' modes, the same plane-sequential system is expanded, so that each tile's CHR data now occupies thirty-two bytes:
| |
| Byte Bit Meaning Byte Bit Meaning Byte Bit Meaning Byte Bit Meaning
| |
| ---------------- ---------------- ---------------- ----------------
| |
| 00 7 pixel Y=0 X=0, bit 0 08 7 pixel Y=0 X=0, bit 1 10 7 pixel Y=0 X=0, bit 2 18 7 pixel Y=0 X=0, bit 3
| |
| 00 6 pixel Y=0 X=1, bit 0 08 6 pixel Y=0 X=1, bit 1 10 6 pixel Y=0 X=1, bit 2 18 6 pixel Y=0 X=1, bit 3
| |
| 00 5 pixel Y=0 X=2, bit 0 08 5 pixel Y=0 X=2, bit 1 10 5 pixel Y=0 X=2, bit 2 18 5 pixel Y=0 X=2, bit 3
| |
| 00 4 pixel Y=0 X=3, bit 0 08 4 pixel Y=0 X=3, bit 1 10 4 pixel Y=0 X=3, bit 2 18 4 pixel Y=0 X=3, bit 3
| |
| 00 3 pixel Y=0 X=4, bit 0 08 3 pixel Y=0 X=4, bit 1 10 3 pixel Y=0 X=4, bit 2 18 3 pixel Y=0 X=4, bit 3
| |
| 00 2 pixel Y=0 X=5, bit 0 08 2 pixel Y=0 X=5, bit 1 10 2 pixel Y=0 X=5, bit 2 18 2 pixel Y=0 X=5, bit 3
| |
| 00 1 pixel Y=0 X=6, bit 0 08 1 pixel Y=0 X=6, bit 1 10 1 pixel Y=0 X=6, bit 2 18 1 pixel Y=0 X=6, bit 3
| |
| 00 0 pixel Y=0 X=7, bit 0 08 0 pixel Y=0 X=7, bit 1 10 0 pixel Y=0 X=7, bit 2 18 0 pixel Y=0 X=7, bit 3
| |
| 01 7 pixel Y=1 X=0, bit 0 09 7 pixel Y=1 X=0, bit 1 11 7 pixel Y=1 X=0, bit 2 19 7 pixel Y=1 X=0, bit 3
| |
| 01 6 pixel Y=1 X=1, bit 0 09 6 pixel Y=1 X=1, bit 1 11 6 pixel Y=1 X=1, bit 2 19 6 pixel Y=1 X=1, bit 3
| |
| 01 5 pixel Y=1 X=2, bit 0 09 5 pixel Y=1 X=2, bit 1 11 5 pixel Y=1 X=2, bit 2 19 5 pixel Y=1 X=2, bit 3
| |
| 01 4 pixel Y=1 X=3, bit 0 09 4 pixel Y=1 X=3, bit 1 11 4 pixel Y=1 X=3, bit 2 19 4 pixel Y=1 X=3, bit 3
| |
| 01 3 pixel Y=1 X=4, bit 0 09 3 pixel Y=1 X=4, bit 1 11 3 pixel Y=1 X=4, bit 2 19 3 pixel Y=1 X=4, bit 3
| |
| 01 2 pixel Y=1 X=5, bit 0 09 2 pixel Y=1 X=5, bit 1 11 2 pixel Y=1 X=5, bit 2 19 2 pixel Y=1 X=5, bit 3
| |
| 01 1 pixel Y=1 X=6, bit 0 09 1 pixel Y=1 X=6, bit 1 11 1 pixel Y=1 X=6, bit 2 19 1 pixel Y=1 X=6, bit 3
| |
| 01 0 pixel Y=1 X=7, bit 0 09 0 pixel Y=1 X=7, bit 1 11 0 pixel Y=1 X=7, bit 2 19 0 pixel Y=1 X=7, bit 3
| |
| 02 7 pixel Y=2 X=0, bit 0 0A 7 pixel Y=2 X=0, bit 1 12 7 pixel Y=2 X=0, bit 2 1A 7 pixel Y=2 X=0, bit 3
| |
| : : : : : : : : : : : :
| |
| 07 7 pixel Y=7 X=7, bit 0 0F 7 pixel Y=7 X=7, bit 1 17 7 pixel Y=7 X=7, bit 2 1F 7 pixel Y=7 X=7, bit 3
| |
|
| |
| All numbers hexadecimal.
| |
| In the '''4bpp with 16 bit data bus''' modes, the layout is changed towards a scheme that allows the second byte to be fetched in one 16 bit read operation:
| |
| Byte Bit Meaning Byte Bit Meaning
| |
| ------------------ ------------------
| |
| 00/01 F pixel Y=0 X=0, bit 2 10/11 F pixel Y=0 X=0, bit 3
| |
| 00/01 E pixel Y=0 X=1, bit 2 10/11 E pixel Y=0 X=1, bit 3
| |
| 00/01 D pixel Y=0 X=2, bit 2 10/11 D pixel Y=0 X=2, bit 3
| |
| 00/01 C pixel Y=0 X=3, bit 2 10/11 C pixel Y=0 X=3, bit 3
| |
| 00/01 B pixel Y=0 X=4, bit 2 10/11 B pixel Y=0 X=4, bit 3
| |
| 00/01 A pixel Y=0 X=5, bit 2 10/11 A pixel Y=0 X=5, bit 3
| |
| 00/01 9 pixel Y=0 X=6, bit 2 10/11 9 pixel Y=0 X=6, bit 3
| |
| 00/01 8 pixel Y=0 X=7, bit 2 10/11 8 pixel Y=0 X=7, bit 3
| |
| 00/01 7 pixel Y=0 X=0, bit 0 10/11 7 pixel Y=0 X=0, bit 1
| |
| 00/01 6 pixel Y=0 X=1, bit 0 10/11 6 pixel Y=0 X=1, bit 1
| |
| 00/01 5 pixel Y=0 X=2, bit 0 10/11 5 pixel Y=0 X=2, bit 1
| |
| 00/01 4 pixel Y=0 X=3, bit 0 10/11 4 pixel Y=0 X=3, bit 1
| |
| 00/01 3 pixel Y=0 X=4, bit 0 10/11 3 pixel Y=0 X=4, bit 1
| |
| 00/01 2 pixel Y=0 X=5, bit 0 10/11 2 pixel Y=0 X=5, bit 1
| |
| 00/01 1 pixel Y=0 X=6, bit 0 10/11 1 pixel Y=0 X=6, bit 1
| |
| 00/01 0 pixel Y=0 X=7, bit 0 10/11 0 pixel Y=0 X=7, bit 1
| |
| 02/03 F pixel Y=1 X=0, bit 2 12/13 F pixel Y=1 X=0, bit 3
| |
| 02/03 E pixel Y=1 X=1, bit 2 12/13 E pixel Y=1 X=1, bit 3
| |
| 02/03 D pixel Y=1 X=2, bit 2 12/13 D pixel Y=1 X=2, bit 3
| |
| 02/03 C pixel Y=1 X=3, bit 2 12/13 C pixel Y=1 X=3, bit 3
| |
| 02/03 B pixel Y=1 X=4, bit 2 12/13 B pixel Y=1 X=4, bit 3
| |
| 02/03 A pixel Y=1 X=5, bit 2 12/13 A pixel Y=1 X=5, bit 3
| |
| 02/03 9 pixel Y=1 X=6, bit 2 12/13 9 pixel Y=1 X=6, bit 3
| |
| 02/03 8 pixel Y=1 X=7, bit 2 12/13 8 pixel Y=1 X=7, bit 3
| |
| 02/03 7 pixel Y=1 X=0, bit 0 12/13 7 pixel Y=1 X=0, bit 1
| |
| 02/03 6 pixel Y=1 X=1, bit 0 12/13 6 pixel Y=1 X=1, bit 1
| |
| 02/03 5 pixel Y=1 X=2, bit 0 12/13 5 pixel Y=1 X=2, bit 1
| |
| 02/03 4 pixel Y=1 X=3, bit 0 12/13 4 pixel Y=1 X=3, bit 1
| |
| 02/03 3 pixel Y=1 X=4, bit 0 12/13 3 pixel Y=1 X=4, bit 1
| |
| 02/03 2 pixel Y=1 X=5, bit 0 12/13 2 pixel Y=1 X=5, bit 1
| |
| 02/03 1 pixel Y=1 X=6, bit 0 12/13 1 pixel Y=1 X=6, bit 1
| |
| 02/03 0 pixel Y=1 X=7, bit 0 12/13 0 pixel Y=1 X=7, bit 1
| |
| : : : : : :
| |
| 0E/0F 0 pixel Y=7 X=7, bit 0 1E/1F 8 pixel Y=7 X=7, bit 1
| |
|
| |
| All numbers hexadecimal. Little-endian byte order.
| |
| = CHR-ROM Bankswitching =
| |
| CHR-ROM bankswitching is likewise an extended version of the MMC3's. The address range is divided into two 2 KiB and four 1 KiB banks, with the bank numbers always specified with 1 KiB granularity. The 1 KiB bank number is made up of six components:
| |
|
| |
| * an Extended Address Bank if Address Extension is active,
| |
| * an Inner Bank that resembles the MMC3's bank registers,
| |
| * a Middle Bank that can replace zero to eight bits of the lower bank number,
| |
| * an Intermediate Bank if Address Extension if '''not''' active,
| |
| * an Outer Bank that extend the address range up to 32 MiB,
| |
| * the same Relative Bank that adds a fixed value to the previous three components, and that also applied to PRG-ROM banking (VT16+ only),
| |
|
| |
| == Extended Video Address ==
| |
| On the original NES/Famicom, both background and sprite tiles are indexed by an eight-bit number taken from the [[PPU_nametables|nametable]] for backgrounds and [[PPU_OAM#Byte_1|byte 1]] of each sprites' OAM data. This concept is kept on the VTxx series if Address Extension is disabled. Address Extension can be enabled separately for background --- by setting register $2010 bit 4 (BKEXTEN) --- and sprite data --- by setting register $2010 bit 3 (SPEXTEN). Address Extension extends the tile number to eleven bits, which can be seen as performing an implicit bankswitch for each tile.
| |
|
| |
| If Address Extension is enabled for '''background''' data while background data is being fetched --- register $2010 bit 4 (BKEXTEN) is set --- the three bits of the Extended Video Address are derived as follows:
| |
| Bit 210
| |
| -------
| |
| PAA
| |
| |++- Attribute data bits 0 and 1
| |
| +--- If register $2011 bit 0 (EVA12S) =0: register $2018 bit 3 (BKPAGE)
| |
| If register $2011 bit 0 (EVA12S) =1: register $4106 bit 0 (HV)
| |
|
| |
| Since the two bits from the attribute table are now used as part of the tile number, they are forced to zero when forming the final palette index of each pixel. Since this effectively reduces the number of available background colors by a factor of four, background address extension is only used in games using 4bpp modes. VR Technology's VT03 Demonstration ROM image uses Background Address Extension to show off the use of many Chinese characters on a single page.
| |
|
| |
| If Address Extension is enabled for '''sprite''' data while sprite pattern data is fetched --- register $2010 bit 3 (SPEXTEN) is set --- the three bits of the Extended Video Address are derived as follows:
| |
| Bit 210
| |
| -------
| |
| AAA
| |
| +++- Sprites' [[PPU OAM]] byte 1, bits 2-4
| |
|
| |
| Note that on the VT16+ with register $2010 bit 2 (SP16EN) and bit 5 (SPOPEN) both set, each sprite's PPU OAM byte 2 bit 4 is also used to choose between sixteen colors and sixteen pixels.
| |
|
| |
| While data is read or written via $2007, if either Background or Sprite Address Axtension is active, the three bits of the Extended Video Address are derived as follows:
| |
| Bit 210
| |
| -------
| |
| AAA
| |
| +++- Register $2018 bits 0-2 (VRWB)
| |
|
| |
| If Background or Sprite Address Extension is ''not'' active while the respective pattern data are fetched, or neither is active while data is read or written via $2007, then the Inner CHR Bank number provides the lowest three bits of the 1 KiB CHR bank number, and the Intermediate Bank is used.
| |
|
| |
| == Inner CHR Bank number ==
| |
| The lower bits bits of the 8 KiB PRG-ROM bank number, constituting the Inner Bank number, are normally the only ones that are manipulated by individual games.
| |
| PPU $0000-$03FF: Selected by register $2016 (RV4) AND $FE, akin to MMC3 register 0.
| |
| PPU $0400-$07FF: Selected by register $2016 (RV5) OR $01, akin to MMC3 register 0.
| |
| PPU $0800-$0BFF: Selected by register $2017 (RV5) AND $FE, akin to MMC3 register 1.
| |
| PPU $0C00-$0FFF: Selected by register $2017 (RV5) OR $01, akin to MMC3 register 1
| |
| PPU $1000-$13FF: Selected by register $2012 (RV0), akin to MMC3 register 2.
| |
| PPU $1400-$17FF: Selected by register $2013 (RV1), akin to MMC3 register 3.
| |
| PPU $1800-$1BFF: Selected by register $2014 (RV2), akin to MMC3 register 4.
| |
| PPU $1C00-$1FFF: Selected by register $2015 (RV3), akin to MMC3 register 5.
| |
|
| |
| If $4105 bit 7 (COMR7) is 1, then the sources of the $0000-$0FFF bank numbers are swapped with the $1000-$1FFFbanks', just as on the MMC3, or in other words, PPU A12 is inverted.
| |
|
| |
| == Middle CHR Bank number ==
| |
| The Middle Bank is normally only used on multicarts. It allows masking off and replacing bits of the Inner Bank number, so that several games may be put into one Outer Bank. Bits 0-2 of register $201A (VB0S) select the AND mask that is applied to the Inner Bank number. Only the bits that have been masked off that way are then replaced with the respective bits from register $201A bits 3-7 (RV6):
| |
| $201A Inner Bank Middle Bank Effective
| |
| bits 0-2 AND Mask AND Mask Inner Bank Size
| |
| -------- ---------- -------- ---------------
| |
| 0 FF 00 256 KiB
| |
| 1 7F 80 128 KiB
| |
| 2 3F C0 64 KiB
| |
| 3 invalid
| |
| 4 1F E0 32 KiB
| |
| 5 0F F0 16 KiB
| |
| 6 07 F8 8 KiB
| |
| 7 invalid
| |
|
| |
| == Intermediate CHR Bank number ==
| |
| If either Background or Sprite Address Extension is '''active''' while the respective pattern data are fetched, or either is active while data is read or written via $2007, the Extended Video Address (EVA) provides the lowest three bits of the 1 KiB CHR bank number, and the Intermediate Bank is '''not''' used.
| |
|
| |
| If Background or Sprite Address Extension is '''not active''' while the respective pattern data are fetched, or neither is active while data is read or written via $2007, then the Intermediate Bank is used, providing three bits that go between the Middle and Outer CHR Bank number. A single Intermediate Bank number applies to all six CHR banks.
| |
|
| |
| PPU $0000-$1FFF: Selected by register $2018 bits 4-6 (VA18-20).
| |
|
| |
| == Outer CHR Bank number ==
| |
| The Outer Bank number is used mostly by multicarts, but also by very semi-large games for which the maximum Inner Bank size of 256 KiB is insufficient. A single Outer CHR Bank number applies to all six CHR banks.
| |
| PPU $0000-$1FFF: Selected by register $4100 bits 0-3 (VA21-24).
| |
|
| |
| == Final CHR Bank Number ==
| |
| The final 1 KiB CHR Bank number therefore is:
| |
|
| |
| If Address Extension not active:
| |
| BankNumber = ( ((InnerBank &InnerBankMask) | (MiddleBank &~InnerBankMask) | (IntermediateBank <<8)) | (OuterBank <<11) ) +RelativeBank;
| |
|
| |
| If Address Extension is active:
| |
| BankNumber = (ExtendedVideoAddress | ( ((InnerBank &InnerBankMask) | (MiddleBank &~InnerBankMask)) <<3) | (OuterBank <<11) ) +RelativeBank;
| |
|
| |
| This scheme implies that when Address Extension is active, the Inner and Middle Bank number registers must be loaded with values SHR 3 compared to the values they would have if Address Extension were inactive. It also shows that using only Background or Sprite Address Extension, but not both, becomes difficult to use if the Middle Bank is to be used. The Outer and Relative Banks are not affected by Address Extension.
| |
|
| |
| == Final CHR Address per Tile ==
| |
| The actual CHR-ROM address being accessed depends on the number of bits per pixel and the data bis width:
| |
|
| |
| With two bits per pixel:
| |
| Address = (BankNumber <<10) + ((TableAddress <<12) | (TileNumber <<4) | (BitPlaneNumber <<3) | Row);
| |
|
| |
| With four bits per pixel and 8 bit data bus:
| |
| Address = (BankNumber <<11) + ((TableAddress <<13) | (TileNumber <<5) | (BitPlaneNumber <<4) | Row);
| |
|
| |
| With four bits per pixel and 16 bit data bus:
| |
| Address = (BankNumber <<11) + ((TableAddress <<13) | (TileNumber <<5) | (BitPlaneNumber.bit0 <<5) | (Row <<1) | PlaneNumber.bit1);
| |
|
| |
| "TableAddress" referring to [[PPU_registers#Controller_.28.242000.29_.3E_write|register $2000 bit 4]] for background pattern data fetches and [[PPU_registers#Controller_.28.242000.29_.3E_write|register $2000 bit 3]] for sprite pattern data fetches. This scheme implies that when 4bpp are used, all bank register numbers must be loaded with values SHR 1 compared to the values they would have if 2bpp were used. It also becomes clear that choosing bank numbers properly when using 4bpp only for background or sprites, but not both, becomes quite difficult and requires careful planning of one's CHR-ROM address map.
| |
|
| |
| When addressing CHR space using $2006/$2007 in 4bpp modes, the addressing scheme is quite complicated, as a single CHR bank holding 256 background and 256 sprite tiles grows from 8 KiB to 16 KiB, which are spread across two address ranges from the CPU's point of view:
| |
| PPU $0000-$1FFF: CHR pattern data, bit planes 0 and 1
| |
| PPU $4000-$5FFF: CHR pattern data, bit planes 2 and 3
| |
|
| |
| In other words, PPU A14 becomes BitPlaneNumber.bit1. The only known game to read data from CHR-ROM to verify its authenticity is ''Samuri Star Angel'', and maybe as a result of this complexity, it switches to 2bpp mode during those reads.
| |
|
| |
| = The VT03 Palette =
| |
| On the VT03 and later consoles, CGRAM is extended from the original RP2C02's sixteen bytes (disregarding mirrored bytes) to 256 bytes.
| |
|
| |
| Entries $3F10/$3F14/$3F18/$3F1C are still mirrors of $3F00/$3F04/$3F08/$3F0C, but all the others are not. Using a 4bpp video mode (bits 0 to 3), together with a bit selecting background or sprite index (bit 4) and two attribute bits (bits 5 and 6) yields a total of 128 palette indices, disregarding mirrored bytes.
| |
|
| |
| == Regular 2C02 colors ==
| |
| If register $2010 bit 7 (COLCOMP) is cleared, the RP2C02's standard colors are available, even if 4bpp are used. The greater number of palette indices then allows for greater freedom in combining different colors. This method is used by Jungletac games. Only the 128 bytes from $3F00-$3F7F are used in this case. The color numbers have the same format as on the RP2C02:
| |
| 7654 3210
| |
| ---- ----
| |
| ..LL HHHH
| |
| || ++++- Hue number. 0=Bright gray (upper oscillation bound),
| |
| || 1-12=Colored hues (blue->pink->red->yellow->green),
| |
| || 13: Dark gray (lower oscillation bound),
| |
| || 14-15: black.
| |
| ++------ Combined luminance and saturation (0: darkest, 3: brightest).
| |
| Colors are saturated for levels 0-2 and pastel-like for level 3.
| |
|
| |
| == Extended colors ==
| |
| If register $2010 bit 7 (COLCOMP) is set, then an extended palette becomes available, where each color has twelve instead of six bits. $3F00-$3F7F hold the lower six bits of the color number, $3F80-$3FFF hold the upper six bits of the color number. These extended color numbers separate luminance and saturation each to four bits each:
| |
| BA98 7654 3210
| |
| ---- ---- ----
| |
| SSSS LLLL HHHH
| |
| |||| |||| ++++- Hue number. Same hues as when COLCOMP=0 (exceptions apply).
| |
| |||| ++++------ Luminance (0: darkest, F: brightest).
| |
| ++++----------- Saturation (0: completely desaturated grays, F: maximum saturation).
| |
|
| |
| For an unknown reason, this scheme is not completely uniform throughout the value range. As saturation increases, more and more luminance levels are affected by a strange kind of color number inversion:
| |
| Saturation Inverted Luminance Levels 0123456789ABCDEF
| |
| 0 - ................
| |
| 1 0 X...............
| |
| 2 0 F X..............X
| |
| 3 0,1 F XX.............X
| |
| 4 0,1 E,F XX............XX
| |
| 5 0,1,2 E,F XXX...........XX
| |
| 6 0,1,2 D,E,F XXX..........XXX
| |
| 7 0,1,2,3 D,E,F XXXX.........XXX
| |
| 8 0,1,2,3 C,D,E,F XXXX........XXXX
| |
| 9 0,1,2,3,4 C,D,E,F XXXXX.......XXXX
| |
| A 0,1,2,3,4 B,C,D,E,F XXXXX......XXXXX
| |
| B 0,1,2,3,4,5 B,C,D,E,F XXXXXX.....XXXXX
| |
| C 0,1,2,3,4,5 A,B,C,D,E,F XXXXXX....XXXXXX
| |
| D 0,1,2,3,4,5,6 A,B,C,D,E,F XXXXXXX...XXXXXX
| |
| E 0,1,2,3,4,5,6 9,A,B,C,D,E,F XXXXXXX..XXXXXXX
| |
| F 0,1,2,3,4,5,6,7 9,A,B,C,D,E,F XXXXXXXX.XXXXXXX
| |
| It is not known why this happens, but all VT03 games make use of these inverted color numbers. The pattern can be described as follows:
| |
| If (LumaValue < (SaturationValue+1) >>1 || LumaValue > 15 -(ChromaValue >>1)), then the color number is inverted.
| |
| Inversion means that
| |
| * the actual saturation value is replaced with 16 minus the original value;
| |
| * the actual luminance value is replaced with (LumaValue -8) AND $0F;
| |
| * the actual hue value is replaced with:
| |
| Original Hue 0 1 2 3 4 5 6 7 8 9 A B C D E F
| |
| Replaced Hue D 7 8 9 A B C 1 2 3 4 5 6 0 E F
| |
| The following table shows the palette that is hard-coded into the EmuVT emulator, which it saves to HSL2RGB.TAB every time it is run:
| |
| {|class="wikitable"
| |
| |-
| |
| ! colspan=16 | Saturation level $0
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$000
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$001
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$002
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$003
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$004
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$005
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$006
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$007
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$008
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$009
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$00A
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$00B
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$00C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$00D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$00E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$00F
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$010
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$011
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$012
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$013
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$014
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$015
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$016
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$017
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$018
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$019
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$01A
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$01B
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$01C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$01D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$01E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$01F
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$020
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$021
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$022
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$023
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$024
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$025
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$026
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$027
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$028
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$029
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$02A
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$02B
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$02C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$02D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$02E
| |
| |style="border:0px;background-color:#000002;width:32px;height:32px;color:#fff;text-align:center"|$02F
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$030
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$031
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$032
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$033
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$034
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$035
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$036
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$037
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$038
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$039
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$03A
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$03B
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$03C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$03D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$03E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$03F
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$040
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$041
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$042
| |
| |style="border:0px;background-color:#000001;width:32px;height:32px;color:#fff;text-align:center"|$043
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$044
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$045
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$046
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$047
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$048
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$049
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$04A
| |
| |style="border:0px;background-color:#000002;width:32px;height:32px;color:#fff;text-align:center"|$04B
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$04C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$04D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$04E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$04F
| |
| |-
| |
| |style="border:0px;background-color:#1B1B1B;width:32px;height:32px;color:#fff;text-align:center"|$050
| |
| |style="border:0px;background-color:#1B1A1B;width:32px;height:32px;color:#fff;text-align:center"|$051
| |
| |style="border:0px;background-color:#1A1B17;width:32px;height:32px;color:#fff;text-align:center"|$052
| |
| |style="border:0px;background-color:#1A1A1A;width:32px;height:32px;color:#fff;text-align:center"|$053
| |
| |style="border:0px;background-color:#1A1A1A;width:32px;height:32px;color:#fff;text-align:center"|$054
| |
| |style="border:0px;background-color:#1A1A1C;width:32px;height:32px;color:#fff;text-align:center"|$055
| |
| |style="border:0px;background-color:#1C1B19;width:32px;height:32px;color:#fff;text-align:center"|$056
| |
| |style="border:0px;background-color:#1A1C1B;width:32px;height:32px;color:#fff;text-align:center"|$057
| |
| |style="border:0px;background-color:#1B1B1B;width:32px;height:32px;color:#fff;text-align:center"|$058
| |
| |style="border:0px;background-color:#1A1C16;width:32px;height:32px;color:#fff;text-align:center"|$059
| |
| |style="border:0px;background-color:#1A1B15;width:32px;height:32px;color:#fff;text-align:center"|$05A
| |
| |style="border:0px;background-color:#1A1921;width:32px;height:32px;color:#fff;text-align:center"|$05B
| |
| |style="border:0px;background-color:#1A1B16;width:32px;height:32px;color:#fff;text-align:center"|$05C
| |
| |style="border:0px;background-color:#1A1A1A;width:32px;height:32px;color:#fff;text-align:center"|$05D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$05E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$05F
| |
| |-
| |
| |style="border:0px;background-color:#353630;width:32px;height:32px;color:#fff;text-align:center"|$060
| |
| |style="border:0px;background-color:#373435;width:32px;height:32px;color:#fff;text-align:center"|$061
| |
| |style="border:0px;background-color:#353531;width:32px;height:32px;color:#fff;text-align:center"|$062
| |
| |style="border:0px;background-color:#343433;width:32px;height:32px;color:#fff;text-align:center"|$063
| |
| |style="border:0px;background-color:#343434;width:32px;height:32px;color:#fff;text-align:center"|$064
| |
| |style="border:0px;background-color:#363432;width:32px;height:32px;color:#fff;text-align:center"|$065
| |
| |style="border:0px;background-color:#353535;width:32px;height:32px;color:#fff;text-align:center"|$066
| |
| |style="border:0px;background-color:#333436;width:32px;height:32px;color:#fff;text-align:center"|$067
| |
| |style="border:0px;background-color:#363634;width:32px;height:32px;color:#fff;text-align:center"|$068
| |
| |style="border:0px;background-color:#353536;width:32px;height:32px;color:#fff;text-align:center"|$069
| |
| |style="border:0px;background-color:#353436;width:32px;height:32px;color:#fff;text-align:center"|$06A
| |
| |style="border:0px;background-color:#343434;width:32px;height:32px;color:#fff;text-align:center"|$06B
| |
| |style="border:0px;background-color:#353533;width:32px;height:32px;color:#fff;text-align:center"|$06C
| |
| |style="border:0px;background-color:#353535;width:32px;height:32px;color:#fff;text-align:center"|$06D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$06E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$06F
| |
| |-
| |
| |style="border:0px;background-color:#515151;width:32px;height:32px;color:#fff;text-align:center"|$070
| |
| |style="border:0px;background-color:#524F4F;width:32px;height:32px;color:#fff;text-align:center"|$071
| |
| |style="border:0px;background-color:#514F54;width:32px;height:32px;color:#fff;text-align:center"|$072
| |
| |style="border:0px;background-color:#4F504E;width:32px;height:32px;color:#fff;text-align:center"|$073
| |
| |style="border:0px;background-color:#505050;width:32px;height:32px;color:#fff;text-align:center"|$074
| |
| |style="border:0px;background-color:#50514C;width:32px;height:32px;color:#fff;text-align:center"|$075
| |
| |style="border:0px;background-color:#505050;width:32px;height:32px;color:#fff;text-align:center"|$076
| |
| |style="border:0px;background-color:#505050;width:32px;height:32px;color:#fff;text-align:center"|$077
| |
| |style="border:0px;background-color:#505251;width:32px;height:32px;color:#fff;text-align:center"|$078
| |
| |style="border:0px;background-color:#51524C;width:32px;height:32px;color:#fff;text-align:center"|$079
| |
| |style="border:0px;background-color:#505052;width:32px;height:32px;color:#fff;text-align:center"|$07A
| |
| |style="border:0px;background-color:#51514F;width:32px;height:32px;color:#fff;text-align:center"|$07B
| |
| |style="border:0px;background-color:#51514F;width:32px;height:32px;color:#fff;text-align:center"|$07C
| |
| |style="border:0px;background-color:#515151;width:32px;height:32px;color:#fff;text-align:center"|$07D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$07E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$07F
| |
| |-
| |
| |style="border:0px;background-color:#6B6A6E;width:32px;height:32px;color:#fff;text-align:center"|$080
| |
| |style="border:0px;background-color:#6A6B66;width:32px;height:32px;color:#fff;text-align:center"|$081
| |
| |style="border:0px;background-color:#696C64;width:32px;height:32px;color:#fff;text-align:center"|$082
| |
| |style="border:0px;background-color:#696A69;width:32px;height:32px;color:#fff;text-align:center"|$083
| |
| |style="border:0px;background-color:#6A6A68;width:32px;height:32px;color:#fff;text-align:center"|$084
| |
| |style="border:0px;background-color:#686A69;width:32px;height:32px;color:#fff;text-align:center"|$085
| |
| |style="border:0px;background-color:#6A6A6A;width:32px;height:32px;color:#fff;text-align:center"|$086
| |
| |style="border:0px;background-color:#696A6C;width:32px;height:32px;color:#fff;text-align:center"|$087
| |
| |style="border:0px;background-color:#6B6B69;width:32px;height:32px;color:#fff;text-align:center"|$088
| |
| |style="border:0px;background-color:#6B6A6A;width:32px;height:32px;color:#fff;text-align:center"|$089
| |
| |style="border:0px;background-color:#6A6A6A;width:32px;height:32px;color:#fff;text-align:center"|$08A
| |
| |style="border:0px;background-color:#6B6A6C;width:32px;height:32px;color:#fff;text-align:center"|$08B
| |
| |style="border:0px;background-color:#6A6A67;width:32px;height:32px;color:#fff;text-align:center"|$08C
| |
| |style="border:0px;background-color:#6A6B66;width:32px;height:32px;color:#fff;text-align:center"|$08D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$08E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$08F
| |
| |-
| |
| |style="border:0px;background-color:#868684;width:32px;height:32px;color:#000;text-align:center"|$090
| |
| |style="border:0px;background-color:#848685;width:32px;height:32px;color:#000;text-align:center"|$091
| |
| |style="border:0px;background-color:#858585;width:32px;height:32px;color:#000;text-align:center"|$092
| |
| |style="border:0px;background-color:#868586;width:32px;height:32px;color:#000;text-align:center"|$093
| |
| |style="border:0px;background-color:#858585;width:32px;height:32px;color:#000;text-align:center"|$094
| |
| |style="border:0px;background-color:#858786;width:32px;height:32px;color:#000;text-align:center"|$095
| |
| |style="border:0px;background-color:#858585;width:32px;height:32px;color:#000;text-align:center"|$096
| |
| |style="border:0px;background-color:#848685;width:32px;height:32px;color:#000;text-align:center"|$097
| |
| |style="border:0px;background-color:#858585;width:32px;height:32px;color:#000;text-align:center"|$098
| |
| |style="border:0px;background-color:#858687;width:32px;height:32px;color:#000;text-align:center"|$099
| |
| |style="border:0px;background-color:#868588;width:32px;height:32px;color:#000;text-align:center"|$09A
| |
| |style="border:0px;background-color:#858586;width:32px;height:32px;color:#000;text-align:center"|$09B
| |
| |style="border:0px;background-color:#858588;width:32px;height:32px;color:#000;text-align:center"|$09C
| |
| |style="border:0px;background-color:#858583;width:32px;height:32px;color:#000;text-align:center"|$09D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$09E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$09F
| |
| |-
| |
| |style="border:0px;background-color:#9EA09D;width:32px;height:32px;color:#000;text-align:center"|$0A0
| |
| |style="border:0px;background-color:#A09E9E;width:32px;height:32px;color:#000;text-align:center"|$0A1
| |
| |style="border:0px;background-color:#9E9E9D;width:32px;height:32px;color:#000;text-align:center"|$0A2
| |
| |style="border:0px;background-color:#9E9E9F;width:32px;height:32px;color:#000;text-align:center"|$0A3
| |
| |style="border:0px;background-color:#9F9F9F;width:32px;height:32px;color:#000;text-align:center"|$0A4
| |
| |style="border:0px;background-color:#9E9E9C;width:32px;height:32px;color:#000;text-align:center"|$0A5
| |
| |style="border:0px;background-color:#9E9E9C;width:32px;height:32px;color:#000;text-align:center"|$0A6
| |
| |style="border:0px;background-color:#9EA09F;width:32px;height:32px;color:#000;text-align:center"|$0A7
| |
| |style="border:0px;background-color:#9F9FA1;width:32px;height:32px;color:#000;text-align:center"|$0A8
| |
| |style="border:0px;background-color:#A09F9A;width:32px;height:32px;color:#000;text-align:center"|$0A9
| |
| |style="border:0px;background-color:#9EA09D;width:32px;height:32px;color:#000;text-align:center"|$0AA
| |
| |style="border:0px;background-color:#9E9F9D;width:32px;height:32px;color:#000;text-align:center"|$0AB
| |
| |style="border:0px;background-color:#9E9E9E;width:32px;height:32px;color:#000;text-align:center"|$0AC
| |
| |style="border:0px;background-color:#9E9E9B;width:32px;height:32px;color:#000;text-align:center"|$0AD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$0AE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$0AF
| |
| |-
| |
| |style="border:0px;background-color:#B9B9B9;width:32px;height:32px;color:#000;text-align:center"|$0B0
| |
| |style="border:0px;background-color:#B8B9B5;width:32px;height:32px;color:#000;text-align:center"|$0B1
| |
| |style="border:0px;background-color:#B8B9BA;width:32px;height:32px;color:#000;text-align:center"|$0B2
| |
| |style="border:0px;background-color:#B9B9B7;width:32px;height:32px;color:#000;text-align:center"|$0B3
| |
| |style="border:0px;background-color:#B9B9B9;width:32px;height:32px;color:#000;text-align:center"|$0B4
| |
| |style="border:0px;background-color:#B9B9B6;width:32px;height:32px;color:#000;text-align:center"|$0B5
| |
| |style="border:0px;background-color:#B9B9B9;width:32px;height:32px;color:#000;text-align:center"|$0B6
| |
| |style="border:0px;background-color:#B9B9B9;width:32px;height:32px;color:#000;text-align:center"|$0B7
| |
| |style="border:0px;background-color:#BABABA;width:32px;height:32px;color:#000;text-align:center"|$0B8
| |
| |style="border:0px;background-color:#B9B9BA;width:32px;height:32px;color:#000;text-align:center"|$0B9
| |
| |style="border:0px;background-color:#B8B8BC;width:32px;height:32px;color:#000;text-align:center"|$0BA
| |
| |style="border:0px;background-color:#B9BAB2;width:32px;height:32px;color:#000;text-align:center"|$0BB
| |
| |style="border:0px;background-color:#B8B9BB;width:32px;height:32px;color:#000;text-align:center"|$0BC
| |
| |style="border:0px;background-color:#B9B9B9;width:32px;height:32px;color:#000;text-align:center"|$0BD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$0BE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$0BF
| |
| |-
| |
| |style="border:0px;background-color:#D5D1D5;width:32px;height:32px;color:#000;text-align:center"|$0C0
| |
| |style="border:0px;background-color:#D2D2CF;width:32px;height:32px;color:#000;text-align:center"|$0C1
| |
| |style="border:0px;background-color:#D3D1D2;width:32px;height:32px;color:#000;text-align:center"|$0C2
| |
| |style="border:0px;background-color:#D2D2CE;width:32px;height:32px;color:#000;text-align:center"|$0C3
| |
| |style="border:0px;background-color:#D2D2D2;width:32px;height:32px;color:#000;text-align:center"|$0C4
| |
| |style="border:0px;background-color:#D2D2CF;width:32px;height:32px;color:#000;text-align:center"|$0C5
| |
| |style="border:0px;background-color:#D2D2D2;width:32px;height:32px;color:#000;text-align:center"|$0C6
| |
| |style="border:0px;background-color:#D2D2D0;width:32px;height:32px;color:#000;text-align:center"|$0C7
| |
| |style="border:0px;background-color:#D4D4D1;width:32px;height:32px;color:#000;text-align:center"|$0C8
| |
| |style="border:0px;background-color:#D3D3D0;width:32px;height:32px;color:#000;text-align:center"|$0C9
| |
| |style="border:0px;background-color:#D1D3D3;width:32px;height:32px;color:#000;text-align:center"|$0CA
| |
| |style="border:0px;background-color:#D3D2D4;width:32px;height:32px;color:#000;text-align:center"|$0CB
| |
| |style="border:0px;background-color:#D3D4CE;width:32px;height:32px;color:#000;text-align:center"|$0CC
| |
| |style="border:0px;background-color:#D3D2D5;width:32px;height:32px;color:#000;text-align:center"|$0CD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$0CE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$0CF
| |
| |-
| |
| |style="border:0px;background-color:#ECECEC;width:32px;height:32px;color:#000;text-align:center"|$0D0
| |
| |style="border:0px;background-color:#E9EDEB;width:32px;height:32px;color:#000;text-align:center"|$0D1
| |
| |style="border:0px;background-color:#ECEAED;width:32px;height:32px;color:#000;text-align:center"|$0D2
| |
| |style="border:0px;background-color:#EBEAEA;width:32px;height:32px;color:#000;text-align:center"|$0D3
| |
| |style="border:0px;background-color:#EBEBED;width:32px;height:32px;color:#000;text-align:center"|$0D4
| |
| |style="border:0px;background-color:#EAEAEC;width:32px;height:32px;color:#000;text-align:center"|$0D5
| |
| |style="border:0px;background-color:#EAECE9;width:32px;height:32px;color:#000;text-align:center"|$0D6
| |
| |style="border:0px;background-color:#EBEBEB;width:32px;height:32px;color:#000;text-align:center"|$0D7
| |
| |style="border:0px;background-color:#ECEBEF;width:32px;height:32px;color:#000;text-align:center"|$0D8
| |
| |style="border:0px;background-color:#EBECE9;width:32px;height:32px;color:#000;text-align:center"|$0D9
| |
| |style="border:0px;background-color:#EBEAEF;width:32px;height:32px;color:#000;text-align:center"|$0DA
| |
| |style="border:0px;background-color:#EBEBE8;width:32px;height:32px;color:#000;text-align:center"|$0DB
| |
| |style="border:0px;background-color:#EBECE6;width:32px;height:32px;color:#000;text-align:center"|$0DC
| |
| |style="border:0px;background-color:#EBEBEB;width:32px;height:32px;color:#000;text-align:center"|$0DD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$0DE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$0DF
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0E0
| |
| |style="border:0px;background-color:#FFFFFE;width:32px;height:32px;color:#000;text-align:center"|$0E1
| |
| |style="border:0px;background-color:#FFFFFE;width:32px;height:32px;color:#000;text-align:center"|$0E2
| |
| |style="border:0px;background-color:#FFFFFE;width:32px;height:32px;color:#000;text-align:center"|$0E3
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0E4
| |
| |style="border:0px;background-color:#FFFFFD;width:32px;height:32px;color:#000;text-align:center"|$0E5
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0E6
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0E7
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0E8
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0E9
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0EA
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0EB
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0EC
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0ED
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$0EE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$0EF
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0F0
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0F1
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0F2
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0F3
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0F4
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0F5
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0F6
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0F7
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0F8
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0F9
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0FA
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0FB
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0FC
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$0FD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$0FE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$0FF
| |
| |-
| |
| ! colspan=16 | Saturation level $1
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$100
| |
| |style="border:0px;background-color:#FE5700;width:32px;height:32px;color:#fff;text-align:center"|$101
| |
| |style="border:0px;background-color:#A88D01;width:32px;height:32px;color:#000;text-align:center"|$102
| |
| |style="border:0px;background-color:#42C100;width:32px;height:32px;color:#000;text-align:center"|$103
| |
| |style="border:0px;background-color:#01F500;width:32px;height:32px;color:#000;text-align:center"|$104
| |
| |style="border:0px;background-color:#00F407;width:32px;height:32px;color:#000;text-align:center"|$105
| |
| |style="border:0px;background-color:#00C4ED;width:32px;height:32px;color:#000;text-align:center"|$106
| |
| |style="border:0px;background-color:#0194FD;width:32px;height:32px;color:#fff;text-align:center"|$107
| |
| |style="border:0px;background-color:#485CFD;width:32px;height:32px;color:#fff;text-align:center"|$108
| |
| |style="border:0px;background-color:#A52DFD;width:32px;height:32px;color:#fff;text-align:center"|$109
| |
| |style="border:0px;background-color:#FF00FE;width:32px;height:32px;color:#fff;text-align:center"|$10A
| |
| |style="border:0px;background-color:#FD00E7;width:32px;height:32px;color:#fff;text-align:center"|$10B
| |
| |style="border:0px;background-color:#FF2C01;width:32px;height:32px;color:#fff;text-align:center"|$10C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$10D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$10E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$10F
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$110
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$111
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$112
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$113
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$114
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$115
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$116
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$117
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$118
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$119
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$11A
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$11B
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$11C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$11D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$11E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$11F
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$120
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$121
| |
| |style="border:0px;background-color:#010004;width:32px;height:32px;color:#fff;text-align:center"|$122
| |
| |style="border:0px;background-color:#000003;width:32px;height:32px;color:#fff;text-align:center"|$123
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$124
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$125
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$126
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$127
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$128
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$129
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$12A
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$12B
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$12C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$12D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$12E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$12F
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$130
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$131
| |
| |style="border:0px;background-color:#000106;width:32px;height:32px;color:#fff;text-align:center"|$132
| |
| |style="border:0px;background-color:#00000B;width:32px;height:32px;color:#fff;text-align:center"|$133
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$134
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$135
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$136
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$137
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$138
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$139
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$13A
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$13B
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$13C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$13D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$13E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$13F
| |
| |-
| |
| |style="border:0px;background-color:#0D0C10;width:32px;height:32px;color:#fff;text-align:center"|$140
| |
| |style="border:0px;background-color:#00020F;width:32px;height:32px;color:#fff;text-align:center"|$141
| |
| |style="border:0px;background-color:#000019;width:32px;height:32px;color:#fff;text-align:center"|$142
| |
| |style="border:0px;background-color:#04001A;width:32px;height:32px;color:#fff;text-align:center"|$143
| |
| |style="border:0px;background-color:#0C0011;width:32px;height:32px;color:#fff;text-align:center"|$144
| |
| |style="border:0px;background-color:#0C0006;width:32px;height:32px;color:#fff;text-align:center"|$145
| |
| |style="border:0px;background-color:#0E0000;width:32px;height:32px;color:#fff;text-align:center"|$146
| |
| |style="border:0px;background-color:#0B0000;width:32px;height:32px;color:#fff;text-align:center"|$147
| |
| |style="border:0px;background-color:#020200;width:32px;height:32px;color:#fff;text-align:center"|$148
| |
| |style="border:0px;background-color:#010600;width:32px;height:32px;color:#fff;text-align:center"|$149
| |
| |style="border:0px;background-color:#000804;width:32px;height:32px;color:#fff;text-align:center"|$14A
| |
| |style="border:0px;background-color:#010800;width:32px;height:32px;color:#fff;text-align:center"|$14B
| |
| |style="border:0px;background-color:#000407;width:32px;height:32px;color:#fff;text-align:center"|$14C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$14D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$14E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$14F
| |
| |-
| |
| |style="border:0px;background-color:#272725;width:32px;height:32px;color:#fff;text-align:center"|$150
| |
| |style="border:0px;background-color:#0D1E2A;width:32px;height:32px;color:#fff;text-align:center"|$151
| |
| |style="border:0px;background-color:#171638;width:32px;height:32px;color:#fff;text-align:center"|$152
| |
| |style="border:0px;background-color:#1D1335;width:32px;height:32px;color:#fff;text-align:center"|$153
| |
| |style="border:0px;background-color:#27102D;width:32px;height:32px;color:#fff;text-align:center"|$154
| |
| |style="border:0px;background-color:#291025;width:32px;height:32px;color:#fff;text-align:center"|$155
| |
| |style="border:0px;background-color:#2A1510;width:32px;height:32px;color:#fff;text-align:center"|$156
| |
| |style="border:0px;background-color:#281809;width:32px;height:32px;color:#fff;text-align:center"|$157
| |
| |style="border:0px;background-color:#1D1E00;width:32px;height:32px;color:#fff;text-align:center"|$158
| |
| |style="border:0px;background-color:#182300;width:32px;height:32px;color:#fff;text-align:center"|$159
| |
| |style="border:0px;background-color:#0F2408;width:32px;height:32px;color:#fff;text-align:center"|$15A
| |
| |style="border:0px;background-color:#0C2410;width:32px;height:32px;color:#fff;text-align:center"|$15B
| |
| |style="border:0px;background-color:#0C1F25;width:32px;height:32px;color:#fff;text-align:center"|$15C
| |
| |style="border:0px;background-color:#0C0C0C;width:32px;height:32px;color:#fff;text-align:center"|$15D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$15E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$15F
| |
| |-
| |
| |style="border:0px;background-color:#434343;width:32px;height:32px;color:#fff;text-align:center"|$160
| |
| |style="border:0px;background-color:#293A48;width:32px;height:32px;color:#fff;text-align:center"|$161
| |
| |style="border:0px;background-color:#323255;width:32px;height:32px;color:#fff;text-align:center"|$162
| |
| |style="border:0px;background-color:#392F52;width:32px;height:32px;color:#fff;text-align:center"|$163
| |
| |style="border:0px;background-color:#432C49;width:32px;height:32px;color:#fff;text-align:center"|$164
| |
| |style="border:0px;background-color:#452C41;width:32px;height:32px;color:#fff;text-align:center"|$165
| |
| |style="border:0px;background-color:#45302B;width:32px;height:32px;color:#fff;text-align:center"|$166
| |
| |style="border:0px;background-color:#433324;width:32px;height:32px;color:#fff;text-align:center"|$167
| |
| |style="border:0px;background-color:#393A1A;width:32px;height:32px;color:#fff;text-align:center"|$168
| |
| |style="border:0px;background-color:#333E1B;width:32px;height:32px;color:#fff;text-align:center"|$169
| |
| |style="border:0px;background-color:#2A3F23;width:32px;height:32px;color:#fff;text-align:center"|$16A
| |
| |style="border:0px;background-color:#27402C;width:32px;height:32px;color:#fff;text-align:center"|$16B
| |
| |style="border:0px;background-color:#273C41;width:32px;height:32px;color:#fff;text-align:center"|$16C
| |
| |style="border:0px;background-color:#282828;width:32px;height:32px;color:#fff;text-align:center"|$16D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$16E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$16F
| |
| |-
| |
| |style="border:0px;background-color:#5E5E60;width:32px;height:32px;color:#fff;text-align:center"|$170
| |
| |style="border:0px;background-color:#435463;width:32px;height:32px;color:#fff;text-align:center"|$171
| |
| |style="border:0px;background-color:#4D4C6E;width:32px;height:32px;color:#fff;text-align:center"|$172
| |
| |style="border:0px;background-color:#53496C;width:32px;height:32px;color:#fff;text-align:center"|$173
| |
| |style="border:0px;background-color:#5E4763;width:32px;height:32px;color:#fff;text-align:center"|$174
| |
| |style="border:0px;background-color:#5F465B;width:32px;height:32px;color:#fff;text-align:center"|$175
| |
| |style="border:0px;background-color:#5F4A45;width:32px;height:32px;color:#fff;text-align:center"|$176
| |
| |style="border:0px;background-color:#5E4E3E;width:32px;height:32px;color:#fff;text-align:center"|$177
| |
| |style="border:0px;background-color:#545535;width:32px;height:32px;color:#fff;text-align:center"|$178
| |
| |style="border:0px;background-color:#4D5733;width:32px;height:32px;color:#fff;text-align:center"|$179
| |
| |style="border:0px;background-color:#435A3F;width:32px;height:32px;color:#fff;text-align:center"|$17A
| |
| |style="border:0px;background-color:#425A49;width:32px;height:32px;color:#fff;text-align:center"|$17B
| |
| |style="border:0px;background-color:#40545B;width:32px;height:32px;color:#fff;text-align:center"|$17C
| |
| |style="border:0px;background-color:#424242;width:32px;height:32px;color:#fff;text-align:center"|$17D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$17E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$17F
| |
| |-
| |
| |style="border:0px;background-color:#777777;width:32px;height:32px;color:#fff;text-align:center"|$180
| |
| |style="border:0px;background-color:#5E6E80;width:32px;height:32px;color:#fff;text-align:center"|$181
| |
| |style="border:0px;background-color:#686887;width:32px;height:32px;color:#fff;text-align:center"|$182
| |
| |style="border:0px;background-color:#6E6488;width:32px;height:32px;color:#fff;text-align:center"|$183
| |
| |style="border:0px;background-color:#79627F;width:32px;height:32px;color:#fff;text-align:center"|$184
| |
| |style="border:0px;background-color:#7A6174;width:32px;height:32px;color:#fff;text-align:center"|$185
| |
| |style="border:0px;background-color:#7A6761;width:32px;height:32px;color:#fff;text-align:center"|$186
| |
| |style="border:0px;background-color:#786859;width:32px;height:32px;color:#fff;text-align:center"|$187
| |
| |style="border:0px;background-color:#6F7050;width:32px;height:32px;color:#fff;text-align:center"|$188
| |
| |style="border:0px;background-color:#68724D;width:32px;height:32px;color:#fff;text-align:center"|$189
| |
| |style="border:0px;background-color:#5E7559;width:32px;height:32px;color:#fff;text-align:center"|$18A
| |
| |style="border:0px;background-color:#5C7464;width:32px;height:32px;color:#fff;text-align:center"|$18B
| |
| |style="border:0px;background-color:#5D7076;width:32px;height:32px;color:#fff;text-align:center"|$18C
| |
| |style="border:0px;background-color:#5D5F5E;width:32px;height:32px;color:#fff;text-align:center"|$18D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$18E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$18F
| |
| |-
| |
| |style="border:0px;background-color:#919491;width:32px;height:32px;color:#000;text-align:center"|$190
| |
| |style="border:0px;background-color:#788899;width:32px;height:32px;color:#000;text-align:center"|$191
| |
| |style="border:0px;background-color:#8182A2;width:32px;height:32px;color:#000;text-align:center"|$192
| |
| |style="border:0px;background-color:#897FA2;width:32px;height:32px;color:#000;text-align:center"|$193
| |
| |style="border:0px;background-color:#937C99;width:32px;height:32px;color:#000;text-align:center"|$194
| |
| |style="border:0px;background-color:#957D8D;width:32px;height:32px;color:#000;text-align:center"|$195
| |
| |style="border:0px;background-color:#947F7A;width:32px;height:32px;color:#000;text-align:center"|$196
| |
| |style="border:0px;background-color:#938373;width:32px;height:32px;color:#000;text-align:center"|$197
| |
| |style="border:0px;background-color:#898A68;width:32px;height:32px;color:#000;text-align:center"|$198
| |
| |style="border:0px;background-color:#828D6B;width:32px;height:32px;color:#000;text-align:center"|$199
| |
| |style="border:0px;background-color:#789071;width:32px;height:32px;color:#000;text-align:center"|$19A
| |
| |style="border:0px;background-color:#77907B;width:32px;height:32px;color:#000;text-align:center"|$19B
| |
| |style="border:0px;background-color:#768B90;width:32px;height:32px;color:#000;text-align:center"|$19C
| |
| |style="border:0px;background-color:#777777;width:32px;height:32px;color:#fff;text-align:center"|$19D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$19E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$19F
| |
| |-
| |
| |style="border:0px;background-color:#ACACA9;width:32px;height:32px;color:#000;text-align:center"|$1A0
| |
| |style="border:0px;background-color:#92A1B1;width:32px;height:32px;color:#000;text-align:center"|$1A1
| |
| |style="border:0px;background-color:#9C9CBB;width:32px;height:32px;color:#000;text-align:center"|$1A2
| |
| |style="border:0px;background-color:#A298BA;width:32px;height:32px;color:#000;text-align:center"|$1A3
| |
| |style="border:0px;background-color:#AC95B1;width:32px;height:32px;color:#000;text-align:center"|$1A4
| |
| |style="border:0px;background-color:#AD96A8;width:32px;height:32px;color:#000;text-align:center"|$1A5
| |
| |style="border:0px;background-color:#AF9A95;width:32px;height:32px;color:#000;text-align:center"|$1A6
| |
| |style="border:0px;background-color:#AC9C8D;width:32px;height:32px;color:#000;text-align:center"|$1A7
| |
| |style="border:0px;background-color:#A2A383;width:32px;height:32px;color:#000;text-align:center"|$1A8
| |
| |style="border:0px;background-color:#9DA784;width:32px;height:32px;color:#000;text-align:center"|$1A9
| |
| |style="border:0px;background-color:#93AA8F;width:32px;height:32px;color:#000;text-align:center"|$1AA
| |
| |style="border:0px;background-color:#91A997;width:32px;height:32px;color:#000;text-align:center"|$1AB
| |
| |style="border:0px;background-color:#91A4AA;width:32px;height:32px;color:#000;text-align:center"|$1AC
| |
| |style="border:0px;background-color:#929292;width:32px;height:32px;color:#000;text-align:center"|$1AD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$1AE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$1AF
| |
| |-
| |
| |style="border:0px;background-color:#C6C5C9;width:32px;height:32px;color:#000;text-align:center"|$1B0
| |
| |style="border:0px;background-color:#ACBCCC;width:32px;height:32px;color:#000;text-align:center"|$1B1
| |
| |style="border:0px;background-color:#B5B5D5;width:32px;height:32px;color:#000;text-align:center"|$1B2
| |
| |style="border:0px;background-color:#BCB2D5;width:32px;height:32px;color:#000;text-align:center"|$1B3
| |
| |style="border:0px;background-color:#C6AFCB;width:32px;height:32px;color:#000;text-align:center"|$1B4
| |
| |style="border:0px;background-color:#C7B0C4;width:32px;height:32px;color:#000;text-align:center"|$1B5
| |
| |style="border:0px;background-color:#C7B4AE;width:32px;height:32px;color:#000;text-align:center"|$1B6
| |
| |style="border:0px;background-color:#C6B6A7;width:32px;height:32px;color:#000;text-align:center"|$1B7
| |
| |style="border:0px;background-color:#BDBE9E;width:32px;height:32px;color:#000;text-align:center"|$1B8
| |
| |style="border:0px;background-color:#B6C09C;width:32px;height:32px;color:#000;text-align:center"|$1B9
| |
| |style="border:0px;background-color:#ADC3A7;width:32px;height:32px;color:#000;text-align:center"|$1BA
| |
| |style="border:0px;background-color:#ABC3AE;width:32px;height:32px;color:#000;text-align:center"|$1BB
| |
| |style="border:0px;background-color:#ABBEC4;width:32px;height:32px;color:#000;text-align:center"|$1BC
| |
| |style="border:0px;background-color:#ABADAC;width:32px;height:32px;color:#000;text-align:center"|$1BD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$1BE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$1BF
| |
| |-
| |
| |style="border:0px;background-color:#DFDFDD;width:32px;height:32px;color:#000;text-align:center"|$1C0
| |
| |style="border:0px;background-color:#C4D4E4;width:32px;height:32px;color:#000;text-align:center"|$1C1
| |
| |style="border:0px;background-color:#CECFEE;width:32px;height:32px;color:#000;text-align:center"|$1C2
| |
| |style="border:0px;background-color:#D6CBED;width:32px;height:32px;color:#000;text-align:center"|$1C3
| |
| |style="border:0px;background-color:#DDC8E5;width:32px;height:32px;color:#000;text-align:center"|$1C4
| |
| |style="border:0px;background-color:#E1C8DB;width:32px;height:32px;color:#000;text-align:center"|$1C5
| |
| |style="border:0px;background-color:#E1CCC8;width:32px;height:32px;color:#000;text-align:center"|$1C6
| |
| |style="border:0px;background-color:#DFCFC0;width:32px;height:32px;color:#000;text-align:center"|$1C7
| |
| |style="border:0px;background-color:#D7D6B7;width:32px;height:32px;color:#000;text-align:center"|$1C8
| |
| |style="border:0px;background-color:#D0DAB7;width:32px;height:32px;color:#000;text-align:center"|$1C9
| |
| |style="border:0px;background-color:#C6DDC1;width:32px;height:32px;color:#000;text-align:center"|$1CA
| |
| |style="border:0px;background-color:#C5DCC8;width:32px;height:32px;color:#000;text-align:center"|$1CB
| |
| |style="border:0px;background-color:#C4D9DE;width:32px;height:32px;color:#000;text-align:center"|$1CC
| |
| |style="border:0px;background-color:#C4C6CA;width:32px;height:32px;color:#000;text-align:center"|$1CD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$1CE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$1CF
| |
| |-
| |
| |style="border:0px;background-color:#F7F7F7;width:32px;height:32px;color:#000;text-align:center"|$1D0
| |
| |style="border:0px;background-color:#E0EDFD;width:32px;height:32px;color:#000;text-align:center"|$1D1
| |
| |style="border:0px;background-color:#E7E7FE;width:32px;height:32px;color:#000;text-align:center"|$1D2
| |
| |style="border:0px;background-color:#EEE4FD;width:32px;height:32px;color:#000;text-align:center"|$1D3
| |
| |style="border:0px;background-color:#F6E2FD;width:32px;height:32px;color:#000;text-align:center"|$1D4
| |
| |style="border:0px;background-color:#F9E0F3;width:32px;height:32px;color:#000;text-align:center"|$1D5
| |
| |style="border:0px;background-color:#F9E5E3;width:32px;height:32px;color:#000;text-align:center"|$1D6
| |
| |style="border:0px;background-color:#F8E8D9;width:32px;height:32px;color:#000;text-align:center"|$1D7
| |
| |style="border:0px;background-color:#EFF0D0;width:32px;height:32px;color:#000;text-align:center"|$1D8
| |
| |style="border:0px;background-color:#E8F2D0;width:32px;height:32px;color:#000;text-align:center"|$1D9
| |
| |style="border:0px;background-color:#DFF5D9;width:32px;height:32px;color:#000;text-align:center"|$1DA
| |
| |style="border:0px;background-color:#DEF5E4;width:32px;height:32px;color:#000;text-align:center"|$1DB
| |
| |style="border:0px;background-color:#DDF0F6;width:32px;height:32px;color:#000;text-align:center"|$1DC
| |
| |style="border:0px;background-color:#DFDDDE;width:32px;height:32px;color:#000;text-align:center"|$1DD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$1DE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$1DF
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$1E0
| |
| |style="border:0px;background-color:#F7FEFE;width:32px;height:32px;color:#000;text-align:center"|$1E1
| |
| |style="border:0px;background-color:#FEFEFE;width:32px;height:32px;color:#000;text-align:center"|$1E2
| |
| |style="border:0px;background-color:#FEFCFF;width:32px;height:32px;color:#000;text-align:center"|$1E3
| |
| |style="border:0px;background-color:#FFFAFF;width:32px;height:32px;color:#000;text-align:center"|$1E4
| |
| |style="border:0px;background-color:#FEF9FF;width:32px;height:32px;color:#000;text-align:center"|$1E5
| |
| |style="border:0px;background-color:#FEFDF9;width:32px;height:32px;color:#000;text-align:center"|$1E6
| |
| |style="border:0px;background-color:#FEFFF1;width:32px;height:32px;color:#000;text-align:center"|$1E7
| |
| |style="border:0px;background-color:#FEFFEE;width:32px;height:32px;color:#000;text-align:center"|$1E8
| |
| |style="border:0px;background-color:#FDFEEB;width:32px;height:32px;color:#000;text-align:center"|$1E9
| |
| |style="border:0px;background-color:#F8FEF4;width:32px;height:32px;color:#000;text-align:center"|$1EA
| |
| |style="border:0px;background-color:#F6FEFD;width:32px;height:32px;color:#000;text-align:center"|$1EB
| |
| |style="border:0px;background-color:#F4FFFF;width:32px;height:32px;color:#000;text-align:center"|$1EC
| |
| |style="border:0px;background-color:#F7F7F5;width:32px;height:32px;color:#000;text-align:center"|$1ED
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$1EE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$1EF
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$1F0
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$1F1
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$1F2
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$1F3
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$1F4
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$1F5
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$1F6
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$1F7
| |
| |style="border:0px;background-color:#FFFFFD;width:32px;height:32px;color:#000;text-align:center"|$1F8
| |
| |style="border:0px;background-color:#FFFFFE;width:32px;height:32px;color:#000;text-align:center"|$1F9
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$1FA
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$1FB
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$1FC
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$1FD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$1FE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$1FF
| |
| |-
| |
| ! colspan=16 | Saturation level $2
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$200
| |
| |style="border:0px;background-color:#FF5700;width:32px;height:32px;color:#fff;text-align:center"|$201
| |
| |style="border:0px;background-color:#A78C01;width:32px;height:32px;color:#000;text-align:center"|$202
| |
| |style="border:0px;background-color:#45BE01;width:32px;height:32px;color:#000;text-align:center"|$203
| |
| |style="border:0px;background-color:#01F000;width:32px;height:32px;color:#000;text-align:center"|$204
| |
| |style="border:0px;background-color:#00F007;width:32px;height:32px;color:#000;text-align:center"|$205
| |
| |style="border:0px;background-color:#00C2DE;width:32px;height:32px;color:#000;text-align:center"|$206
| |
| |style="border:0px;background-color:#0194FD;width:32px;height:32px;color:#fff;text-align:center"|$207
| |
| |style="border:0px;background-color:#4C57FE;width:32px;height:32px;color:#fff;text-align:center"|$208
| |
| |style="border:0px;background-color:#A32CFD;width:32px;height:32px;color:#fff;text-align:center"|$209
| |
| |style="border:0px;background-color:#FF00FE;width:32px;height:32px;color:#fff;text-align:center"|$20A
| |
| |style="border:0px;background-color:#FF00E2;width:32px;height:32px;color:#fff;text-align:center"|$20B
| |
| |style="border:0px;background-color:#FF2A09;width:32px;height:32px;color:#fff;text-align:center"|$20C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$20D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$20E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$20F
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$210
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$211
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$212
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$213
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$214
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$215
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$216
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$217
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$218
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$219
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$21A
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$21B
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$21C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$21D
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$21E
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$21F
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$220
| |
| |style="border:0px;background-color:#00000F;width:32px;height:32px;color:#fff;text-align:center"|$221
| |
| |style="border:0px;background-color:#00001C;width:32px;height:32px;color:#fff;text-align:center"|$222
| |
| |style="border:0px;background-color:#00001B;width:32px;height:32px;color:#fff;text-align:center"|$223
| |
| |style="border:0px;background-color:#00000D;width:32px;height:32px;color:#fff;text-align:center"|$224
| |
| |style="border:0px;background-color:#060000;width:32px;height:32px;color:#fff;text-align:center"|$225
| |
| |style="border:0px;background-color:#060000;width:32px;height:32px;color:#fff;text-align:center"|$226
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$227
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$228
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$229
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$22A
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$22B
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$22C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$22D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$22E
| |
| |style="border:0px;background-color:#000002;width:32px;height:32px;color:#fff;text-align:center"|$22F
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$230
| |
| |style="border:0px;background-color:#010015;width:32px;height:32px;color:#fff;text-align:center"|$231
| |
| |style="border:0px;background-color:#000023;width:32px;height:32px;color:#fff;text-align:center"|$232
| |
| |style="border:0px;background-color:#000020;width:32px;height:32px;color:#fff;text-align:center"|$233
| |
| |style="border:0px;background-color:#030013;width:32px;height:32px;color:#fff;text-align:center"|$234
| |
| |style="border:0px;background-color:#0A0001;width:32px;height:32px;color:#fff;text-align:center"|$235
| |
| |style="border:0px;background-color:#0A0000;width:32px;height:32px;color:#fff;text-align:center"|$236
| |
| |style="border:0px;background-color:#020100;width:32px;height:32px;color:#fff;text-align:center"|$237
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$238
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$239
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$23A
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$23B
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$23C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$23D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$23E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$23F
| |
| |-
| |
| |style="border:0px;background-color:#1B1B1B;width:32px;height:32px;color:#fff;text-align:center"|$240
| |
| |style="border:0px;background-color:#000327;width:32px;height:32px;color:#fff;text-align:center"|$241
| |
| |style="border:0px;background-color:#010033;width:32px;height:32px;color:#fff;text-align:center"|$242
| |
| |style="border:0px;background-color:#070032;width:32px;height:32px;color:#fff;text-align:center"|$243
| |
| |style="border:0px;background-color:#160026;width:32px;height:32px;color:#fff;text-align:center"|$244
| |
| |style="border:0px;background-color:#1B000F;width:32px;height:32px;color:#fff;text-align:center"|$245
| |
| |style="border:0px;background-color:#1C0001;width:32px;height:32px;color:#fff;text-align:center"|$246
| |
| |style="border:0px;background-color:#160002;width:32px;height:32px;color:#fff;text-align:center"|$247
| |
| |style="border:0px;background-color:#070601;width:32px;height:32px;color:#fff;text-align:center"|$248
| |
| |style="border:0px;background-color:#000D00;width:32px;height:32px;color:#fff;text-align:center"|$249
| |
| |style="border:0px;background-color:#001200;width:32px;height:32px;color:#fff;text-align:center"|$24A
| |
| |style="border:0px;background-color:#001201;width:32px;height:32px;color:#fff;text-align:center"|$24B
| |
| |style="border:0px;background-color:#000B11;width:32px;height:32px;color:#fff;text-align:center"|$24C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$24D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$24E
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$24F
| |
| |-
| |
| |style="border:0px;background-color:#333635;width:32px;height:32px;color:#fff;text-align:center"|$250
| |
| |style="border:0px;background-color:#041E3F;width:32px;height:32px;color:#fff;text-align:center"|$251
| |
| |style="border:0px;background-color:#131350;width:32px;height:32px;color:#fff;text-align:center"|$252
| |
| |style="border:0px;background-color:#220C4E;width:32px;height:32px;color:#fff;text-align:center"|$253
| |
| |style="border:0px;background-color:#31093E;width:32px;height:32px;color:#fff;text-align:center"|$254
| |
| |style="border:0px;background-color:#36092A;width:32px;height:32px;color:#fff;text-align:center"|$255
| |
| |style="border:0px;background-color:#37100B;width:32px;height:32px;color:#fff;text-align:center"|$256
| |
| |style="border:0px;background-color:#311700;width:32px;height:32px;color:#fff;text-align:center"|$257
| |
| |style="border:0px;background-color:#222201;width:32px;height:32px;color:#fff;text-align:center"|$258
| |
| |style="border:0px;background-color:#132801;width:32px;height:32px;color:#fff;text-align:center"|$259
| |
| |style="border:0px;background-color:#042E00;width:32px;height:32px;color:#fff;text-align:center"|$25A
| |
| |style="border:0px;background-color:#002B0D;width:32px;height:32px;color:#fff;text-align:center"|$25B
| |
| |style="border:0px;background-color:#00252B;width:32px;height:32px;color:#fff;text-align:center"|$25C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$25D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$25E
| |
| |style="border:0px;background-color:#000002;width:32px;height:32px;color:#fff;text-align:center"|$25F
| |
| |-
| |
| |style="border:0px;background-color:#4F5251;width:32px;height:32px;color:#fff;text-align:center"|$260
| |
| |style="border:0px;background-color:#1F3B5D;width:32px;height:32px;color:#fff;text-align:center"|$261
| |
| |style="border:0px;background-color:#2F2F6C;width:32px;height:32px;color:#fff;text-align:center"|$262
| |
| |style="border:0px;background-color:#3E2869;width:32px;height:32px;color:#fff;text-align:center"|$263
| |
| |style="border:0px;background-color:#4C2459;width:32px;height:32px;color:#fff;text-align:center"|$264
| |
| |style="border:0px;background-color:#532448;width:32px;height:32px;color:#fff;text-align:center"|$265
| |
| |style="border:0px;background-color:#532A24;width:32px;height:32px;color:#fff;text-align:center"|$266
| |
| |style="border:0px;background-color:#4C3113;width:32px;height:32px;color:#fff;text-align:center"|$267
| |
| |style="border:0px;background-color:#3C3C00;width:32px;height:32px;color:#fff;text-align:center"|$268
| |
| |style="border:0px;background-color:#2F4202;width:32px;height:32px;color:#fff;text-align:center"|$269
| |
| |style="border:0px;background-color:#1E4912;width:32px;height:32px;color:#fff;text-align:center"|$26A
| |
| |style="border:0px;background-color:#1A4725;width:32px;height:32px;color:#fff;text-align:center"|$26B
| |
| |style="border:0px;background-color:#194047;width:32px;height:32px;color:#fff;text-align:center"|$26C
| |
| |style="border:0px;background-color:#1A1B16;width:32px;height:32px;color:#fff;text-align:center"|$26D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$26E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$26F
| |
| |-
| |
| |style="border:0px;background-color:#6A6C6B;width:32px;height:32px;color:#fff;text-align:center"|$270
| |
| |style="border:0px;background-color:#395577;width:32px;height:32px;color:#fff;text-align:center"|$271
| |
| |style="border:0px;background-color:#484B81;width:32px;height:32px;color:#fff;text-align:center"|$272
| |
| |style="border:0px;background-color:#584384;width:32px;height:32px;color:#fff;text-align:center"|$273
| |
| |style="border:0px;background-color:#673E76;width:32px;height:32px;color:#fff;text-align:center"|$274
| |
| |style="border:0px;background-color:#6D3E62;width:32px;height:32px;color:#fff;text-align:center"|$275
| |
| |style="border:0px;background-color:#6D463F;width:32px;height:32px;color:#fff;text-align:center"|$276
| |
| |style="border:0px;background-color:#694C2E;width:32px;height:32px;color:#fff;text-align:center"|$277
| |
| |style="border:0px;background-color:#5A581D;width:32px;height:32px;color:#fff;text-align:center"|$278
| |
| |style="border:0px;background-color:#4C601B;width:32px;height:32px;color:#fff;text-align:center"|$279
| |
| |style="border:0px;background-color:#39642E;width:32px;height:32px;color:#fff;text-align:center"|$27A
| |
| |style="border:0px;background-color:#33623F;width:32px;height:32px;color:#fff;text-align:center"|$27B
| |
| |style="border:0px;background-color:#335C62;width:32px;height:32px;color:#fff;text-align:center"|$27C
| |
| |style="border:0px;background-color:#353533;width:32px;height:32px;color:#fff;text-align:center"|$27D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$27E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$27F
| |
| |-
| |
| |style="border:0px;background-color:#858786;width:32px;height:32px;color:#000;text-align:center"|$280
| |
| |style="border:0px;background-color:#547292;width:32px;height:32px;color:#fff;text-align:center"|$281
| |
| |style="border:0px;background-color:#6466A1;width:32px;height:32px;color:#fff;text-align:center"|$282
| |
| |style="border:0px;background-color:#745DA1;width:32px;height:32px;color:#fff;text-align:center"|$283
| |
| |style="border:0px;background-color:#825991;width:32px;height:32px;color:#fff;text-align:center"|$284
| |
| |style="border:0px;background-color:#895A7E;width:32px;height:32px;color:#fff;text-align:center"|$285
| |
| |style="border:0px;background-color:#89605C;width:32px;height:32px;color:#fff;text-align:center"|$286
| |
| |style="border:0px;background-color:#846749;width:32px;height:32px;color:#fff;text-align:center"|$287
| |
| |style="border:0px;background-color:#747235;width:32px;height:32px;color:#fff;text-align:center"|$288
| |
| |style="border:0px;background-color:#667937;width:32px;height:32px;color:#fff;text-align:center"|$289
| |
| |style="border:0px;background-color:#547F47;width:32px;height:32px;color:#fff;text-align:center"|$28A
| |
| |style="border:0px;background-color:#4F7F59;width:32px;height:32px;color:#fff;text-align:center"|$28B
| |
| |style="border:0px;background-color:#4F787E;width:32px;height:32px;color:#fff;text-align:center"|$28C
| |
| |style="border:0px;background-color:#505050;width:32px;height:32px;color:#fff;text-align:center"|$28D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$28E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$28F
| |
| |-
| |
| |style="border:0px;background-color:#9F9F9F;width:32px;height:32px;color:#000;text-align:center"|$290
| |
| |style="border:0px;background-color:#6E8AAA;width:32px;height:32px;color:#000;text-align:center"|$291
| |
| |style="border:0px;background-color:#7D7FBC;width:32px;height:32px;color:#000;text-align:center"|$292
| |
| |style="border:0px;background-color:#8E77BA;width:32px;height:32px;color:#000;text-align:center"|$293
| |
| |style="border:0px;background-color:#9B72AA;width:32px;height:32px;color:#000;text-align:center"|$294
| |
| |style="border:0px;background-color:#A27397;width:32px;height:32px;color:#000;text-align:center"|$295
| |
| |style="border:0px;background-color:#A27B74;width:32px;height:32px;color:#000;text-align:center"|$296
| |
| |style="border:0px;background-color:#9D8062;width:32px;height:32px;color:#000;text-align:center"|$297
| |
| |style="border:0px;background-color:#8A8E51;width:32px;height:32px;color:#000;text-align:center"|$298
| |
| |style="border:0px;background-color:#80934E;width:32px;height:32px;color:#000;text-align:center"|$299
| |
| |style="border:0px;background-color:#6D9863;width:32px;height:32px;color:#000;text-align:center"|$29A
| |
| |style="border:0px;background-color:#699971;width:32px;height:32px;color:#000;text-align:center"|$29B
| |
| |style="border:0px;background-color:#699097;width:32px;height:32px;color:#000;text-align:center"|$29C
| |
| |style="border:0px;background-color:#6A6A68;width:32px;height:32px;color:#fff;text-align:center"|$29D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$29E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$29F
| |
| |-
| |
| |style="border:0px;background-color:#B9B9B9;width:32px;height:32px;color:#000;text-align:center"|$2A0
| |
| |style="border:0px;background-color:#88A4C6;width:32px;height:32px;color:#000;text-align:center"|$2A1
| |
| |style="border:0px;background-color:#9799D4;width:32px;height:32px;color:#000;text-align:center"|$2A2
| |
| |style="border:0px;background-color:#A792D2;width:32px;height:32px;color:#000;text-align:center"|$2A3
| |
| |style="border:0px;background-color:#B68EC3;width:32px;height:32px;color:#000;text-align:center"|$2A4
| |
| |style="border:0px;background-color:#BA8EB1;width:32px;height:32px;color:#000;text-align:center"|$2A5
| |
| |style="border:0px;background-color:#BD948E;width:32px;height:32px;color:#000;text-align:center"|$2A6
| |
| |style="border:0px;background-color:#B69B7E;width:32px;height:32px;color:#000;text-align:center"|$2A7
| |
| |style="border:0px;background-color:#A9A76E;width:32px;height:32px;color:#000;text-align:center"|$2A8
| |
| |style="border:0px;background-color:#9BAE6C;width:32px;height:32px;color:#000;text-align:center"|$2A9
| |
| |style="border:0px;background-color:#89B37B;width:32px;height:32px;color:#000;text-align:center"|$2AA
| |
| |style="border:0px;background-color:#84B28E;width:32px;height:32px;color:#000;text-align:center"|$2AB
| |
| |style="border:0px;background-color:#83AAAF;width:32px;height:32px;color:#000;text-align:center"|$2AC
| |
| |style="border:0px;background-color:#868686;width:32px;height:32px;color:#000;text-align:center"|$2AD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$2AE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$2AF
| |
| |-
| |
| |style="border:0px;background-color:#D3D3D4;width:32px;height:32px;color:#000;text-align:center"|$2B0
| |
| |style="border:0px;background-color:#A3BEDE;width:32px;height:32px;color:#000;text-align:center"|$2B1
| |
| |style="border:0px;background-color:#B1B3ED;width:32px;height:32px;color:#000;text-align:center"|$2B2
| |
| |style="border:0px;background-color:#C0ADEC;width:32px;height:32px;color:#000;text-align:center"|$2B3
| |
| |style="border:0px;background-color:#CFA6DE;width:32px;height:32px;color:#000;text-align:center"|$2B4
| |
| |style="border:0px;background-color:#D5A8C7;width:32px;height:32px;color:#000;text-align:center"|$2B5
| |
| |style="border:0px;background-color:#D6AFAA;width:32px;height:32px;color:#000;text-align:center"|$2B6
| |
| |style="border:0px;background-color:#CFB496;width:32px;height:32px;color:#000;text-align:center"|$2B7
| |
| |style="border:0px;background-color:#C2C286;width:32px;height:32px;color:#000;text-align:center"|$2B8
| |
| |style="border:0px;background-color:#B4C885;width:32px;height:32px;color:#000;text-align:center"|$2B9
| |
| |style="border:0px;background-color:#A4CD93;width:32px;height:32px;color:#000;text-align:center"|$2BA
| |
| |style="border:0px;background-color:#9DCCA9;width:32px;height:32px;color:#000;text-align:center"|$2BB
| |
| |style="border:0px;background-color:#9EC5CC;width:32px;height:32px;color:#000;text-align:center"|$2BC
| |
| |style="border:0px;background-color:#A0A0A0;width:32px;height:32px;color:#000;text-align:center"|$2BD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$2BE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$2BF
| |
| |-
| |
| |style="border:0px;background-color:#EBEBEB;width:32px;height:32px;color:#000;text-align:center"|$2C0
| |
| |style="border:0px;background-color:#BCD7F5;width:32px;height:32px;color:#000;text-align:center"|$2C1
| |
| |style="border:0px;background-color:#CBCBFE;width:32px;height:32px;color:#000;text-align:center"|$2C2
| |
| |style="border:0px;background-color:#DAC5FF;width:32px;height:32px;color:#000;text-align:center"|$2C3
| |
| |style="border:0px;background-color:#E8C1F6;width:32px;height:32px;color:#000;text-align:center"|$2C4
| |
| |style="border:0px;background-color:#EDC1E4;width:32px;height:32px;color:#000;text-align:center"|$2C5
| |
| |style="border:0px;background-color:#EFC8C3;width:32px;height:32px;color:#000;text-align:center"|$2C6
| |
| |style="border:0px;background-color:#E8CDB0;width:32px;height:32px;color:#000;text-align:center"|$2C7
| |
| |style="border:0px;background-color:#DAD9A0;width:32px;height:32px;color:#000;text-align:center"|$2C8
| |
| |style="border:0px;background-color:#CCDFA0;width:32px;height:32px;color:#000;text-align:center"|$2C9
| |
| |style="border:0px;background-color:#BDE5B1;width:32px;height:32px;color:#000;text-align:center"|$2CA
| |
| |style="border:0px;background-color:#B7E4C3;width:32px;height:32px;color:#000;text-align:center"|$2CB
| |
| |style="border:0px;background-color:#B6DDE2;width:32px;height:32px;color:#000;text-align:center"|$2CC
| |
| |style="border:0px;background-color:#B9B9B9;width:32px;height:32px;color:#000;text-align:center"|$2CD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$2CE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$2CF
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$2D0
| |
| |style="border:0px;background-color:#D6EEFE;width:32px;height:32px;color:#000;text-align:center"|$2D1
| |
| |style="border:0px;background-color:#E4E4FF;width:32px;height:32px;color:#000;text-align:center"|$2D2
| |
| |style="border:0px;background-color:#F1DEFE;width:32px;height:32px;color:#000;text-align:center"|$2D3
| |
| |style="border:0px;background-color:#FEDAFE;width:32px;height:32px;color:#000;text-align:center"|$2D4
| |
| |style="border:0px;background-color:#FFDAF9;width:32px;height:32px;color:#000;text-align:center"|$2D5
| |
| |style="border:0px;background-color:#FFE0DD;width:32px;height:32px;color:#000;text-align:center"|$2D6
| |
| |style="border:0px;background-color:#FFE7CD;width:32px;height:32px;color:#000;text-align:center"|$2D7
| |
| |style="border:0px;background-color:#F3F1C0;width:32px;height:32px;color:#000;text-align:center"|$2D8
| |
| |style="border:0px;background-color:#E6F5BE;width:32px;height:32px;color:#000;text-align:center"|$2D9
| |
| |style="border:0px;background-color:#D5FBCD;width:32px;height:32px;color:#000;text-align:center"|$2DA
| |
| |style="border:0px;background-color:#D1FADA;width:32px;height:32px;color:#000;text-align:center"|$2DB
| |
| |style="border:0px;background-color:#CFF4FA;width:32px;height:32px;color:#000;text-align:center"|$2DC
| |
| |style="border:0px;background-color:#D2D2D2;width:32px;height:32px;color:#000;text-align:center"|$2DD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$2DE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$2DF
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$2E0
| |
| |style="border:0px;background-color:#EFFFFE;width:32px;height:32px;color:#000;text-align:center"|$2E1
| |
| |style="border:0px;background-color:#FBFCFE;width:32px;height:32px;color:#000;text-align:center"|$2E2
| |
| |style="border:0px;background-color:#FEF7FE;width:32px;height:32px;color:#000;text-align:center"|$2E3
| |
| |style="border:0px;background-color:#FFF4FE;width:32px;height:32px;color:#000;text-align:center"|$2E4
| |
| |style="border:0px;background-color:#FEF2FF;width:32px;height:32px;color:#000;text-align:center"|$2E5
| |
| |style="border:0px;background-color:#FEF9F5;width:32px;height:32px;color:#000;text-align:center"|$2E6
| |
| |style="border:0px;background-color:#FEFEE6;width:32px;height:32px;color:#000;text-align:center"|$2E7
| |
| |style="border:0px;background-color:#FFFFD9;width:32px;height:32px;color:#000;text-align:center"|$2E8
| |
| |style="border:0px;background-color:#FDFEDA;width:32px;height:32px;color:#000;text-align:center"|$2E9
| |
| |style="border:0px;background-color:#EFFFE5;width:32px;height:32px;color:#000;text-align:center"|$2EA
| |
| |style="border:0px;background-color:#EBFFF6;width:32px;height:32px;color:#000;text-align:center"|$2EB
| |
| |style="border:0px;background-color:#E9FFFD;width:32px;height:32px;color:#000;text-align:center"|$2EC
| |
| |style="border:0px;background-color:#EBEBEA;width:32px;height:32px;color:#000;text-align:center"|$2ED
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$2EE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$2EF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$2F0
| |
| |style="border:0px;background-color:#F53D00;width:32px;height:32px;color:#fff;text-align:center"|$2F1
| |
| |style="border:0px;background-color:#887501;width:32px;height:32px;color:#fff;text-align:center"|$2F2
| |
| |style="border:0px;background-color:#27A400;width:32px;height:32px;color:#fff;text-align:center"|$2F3
| |
| |style="border:0px;background-color:#01D701;width:32px;height:32px;color:#fff;text-align:center"|$2F4
| |
| |style="border:0px;background-color:#00D600;width:32px;height:32px;color:#fff;text-align:center"|$2F5
| |
| |style="border:0px;background-color:#00A4C7;width:32px;height:32px;color:#fff;text-align:center"|$2F6
| |
| |style="border:0px;background-color:#0079FD;width:32px;height:32px;color:#fff;text-align:center"|$2F7
| |
| |style="border:0px;background-color:#2F3DFD;width:32px;height:32px;color:#fff;text-align:center"|$2F8
| |
| |style="border:0px;background-color:#8611FE;width:32px;height:32px;color:#fff;text-align:center"|$2F9
| |
| |style="border:0px;background-color:#FA00FE;width:32px;height:32px;color:#fff;text-align:center"|$2FA
| |
| |style="border:0px;background-color:#FE00D0;width:32px;height:32px;color:#fff;text-align:center"|$2FB
| |
| |style="border:0px;background-color:#FF0E00;width:32px;height:32px;color:#fff;text-align:center"|$2FC
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$2FD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$2FE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$2FF
| |
| |-
| |
| ! colspan=16 | Saturation level $3
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$300
| |
| |style="border:0px;background-color:#FE5900;width:32px;height:32px;color:#000;text-align:center"|$301
| |
| |style="border:0px;background-color:#A18E01;width:32px;height:32px;color:#000;text-align:center"|$302
| |
| |style="border:0px;background-color:#45BC00;width:32px;height:32px;color:#000;text-align:center"|$303
| |
| |style="border:0px;background-color:#01E800;width:32px;height:32px;color:#000;text-align:center"|$304
| |
| |style="border:0px;background-color:#01E80C;width:32px;height:32px;color:#000;text-align:center"|$305
| |
| |style="border:0px;background-color:#00BAD9;width:32px;height:32px;color:#000;text-align:center"|$306
| |
| |style="border:0px;background-color:#008FFE;width:32px;height:32px;color:#fff;text-align:center"|$307
| |
| |style="border:0px;background-color:#5053FD;width:32px;height:32px;color:#fff;text-align:center"|$308
| |
| |style="border:0px;background-color:#A42AFE;width:32px;height:32px;color:#fff;text-align:center"|$309
| |
| |style="border:0px;background-color:#FF00FE;width:32px;height:32px;color:#fff;text-align:center"|$30A
| |
| |style="border:0px;background-color:#FF01DB;width:32px;height:32px;color:#fff;text-align:center"|$30B
| |
| |style="border:0px;background-color:#FE2D07;width:32px;height:32px;color:#fff;text-align:center"|$30C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$30D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$30E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$30F
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$310
| |
| |style="border:0px;background-color:#FE7200;width:32px;height:32px;color:#000;text-align:center"|$311
| |
| |style="border:0px;background-color:#BBA700;width:32px;height:32px;color:#000;text-align:center"|$312
| |
| |style="border:0px;background-color:#5ED500;width:32px;height:32px;color:#000;text-align:center"|$313
| |
| |style="border:0px;background-color:#00FE00;width:32px;height:32px;color:#000;text-align:center"|$314
| |
| |style="border:0px;background-color:#00FE2A;width:32px;height:32px;color:#000;text-align:center"|$315
| |
| |style="border:0px;background-color:#00D3F1;width:32px;height:32px;color:#000;text-align:center"|$316
| |
| |style="border:0px;background-color:#01A8FE;width:32px;height:32px;color:#fff;text-align:center"|$317
| |
| |style="border:0px;background-color:#6072FD;width:32px;height:32px;color:#fff;text-align:center"|$318
| |
| |style="border:0px;background-color:#AF4AFD;width:32px;height:32px;color:#fff;text-align:center"|$319
| |
| |style="border:0px;background-color:#FE18FE;width:32px;height:32px;color:#fff;text-align:center"|$31A
| |
| |style="border:0px;background-color:#FF1AF9;width:32px;height:32px;color:#fff;text-align:center"|$31B
| |
| |style="border:0px;background-color:#FF462B;width:32px;height:32px;color:#fff;text-align:center"|$31C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$31D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$31E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$31F
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$320
| |
| |style="border:0px;background-color:#00001E;width:32px;height:32px;color:#fff;text-align:center"|$321
| |
| |style="border:0px;background-color:#000032;width:32px;height:32px;color:#fff;text-align:center"|$322
| |
| |style="border:0px;background-color:#000034;width:32px;height:32px;color:#fff;text-align:center"|$323
| |
| |style="border:0px;background-color:#0B0020;width:32px;height:32px;color:#fff;text-align:center"|$324
| |
| |style="border:0px;background-color:#130004;width:32px;height:32px;color:#fff;text-align:center"|$325
| |
| |style="border:0px;background-color:#130101;width:32px;height:32px;color:#fff;text-align:center"|$326
| |
| |style="border:0px;background-color:#0B0000;width:32px;height:32px;color:#fff;text-align:center"|$327
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$328
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$329
| |
| |style="border:0px;background-color:#000700;width:32px;height:32px;color:#fff;text-align:center"|$32A
| |
| |style="border:0px;background-color:#000400;width:32px;height:32px;color:#fff;text-align:center"|$32B
| |
| |style="border:0px;background-color:#000004;width:32px;height:32px;color:#fff;text-align:center"|$32C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$32D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$32E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$32F
| |
| |-
| |
| |style="border:0px;background-color:#0D0D0D;width:32px;height:32px;color:#fff;text-align:center"|$330
| |
| |style="border:0px;background-color:#000022;width:32px;height:32px;color:#fff;text-align:center"|$331
| |
| |style="border:0px;background-color:#00003E;width:32px;height:32px;color:#fff;text-align:center"|$332
| |
| |style="border:0px;background-color:#01003A;width:32px;height:32px;color:#fff;text-align:center"|$333
| |
| |style="border:0px;background-color:#0F0023;width:32px;height:32px;color:#fff;text-align:center"|$334
| |
| |style="border:0px;background-color:#160005;width:32px;height:32px;color:#fff;text-align:center"|$335
| |
| |style="border:0px;background-color:#160100;width:32px;height:32px;color:#fff;text-align:center"|$336
| |
| |style="border:0px;background-color:#0C0000;width:32px;height:32px;color:#fff;text-align:center"|$337
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$338
| |
| |style="border:0px;background-color:#000101;width:32px;height:32px;color:#fff;text-align:center"|$339
| |
| |style="border:0px;background-color:#000800;width:32px;height:32px;color:#fff;text-align:center"|$33A
| |
| |style="border:0px;background-color:#010600;width:32px;height:32px;color:#fff;text-align:center"|$33B
| |
| |style="border:0px;background-color:#000005;width:32px;height:32px;color:#fff;text-align:center"|$33C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$33D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$33E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$33F
| |
| |-
| |
| |style="border:0px;background-color:#282828;width:32px;height:32px;color:#fff;text-align:center"|$340
| |
| |style="border:0px;background-color:#00053C;width:32px;height:32px;color:#fff;text-align:center"|$341
| |
| |style="border:0px;background-color:#000051;width:32px;height:32px;color:#fff;text-align:center"|$342
| |
| |style="border:0px;background-color:#0B004D;width:32px;height:32px;color:#fff;text-align:center"|$343
| |
| |style="border:0px;background-color:#210039;width:32px;height:32px;color:#fff;text-align:center"|$344
| |
| |style="border:0px;background-color:#2A0017;width:32px;height:32px;color:#fff;text-align:center"|$345
| |
| |style="border:0px;background-color:#2A0001;width:32px;height:32px;color:#fff;text-align:center"|$346
| |
| |style="border:0px;background-color:#200100;width:32px;height:32px;color:#fff;text-align:center"|$347
| |
| |style="border:0px;background-color:#080800;width:32px;height:32px;color:#fff;text-align:center"|$348
| |
| |style="border:0px;background-color:#001400;width:32px;height:32px;color:#fff;text-align:center"|$349
| |
| |style="border:0px;background-color:#001B00;width:32px;height:32px;color:#fff;text-align:center"|$34A
| |
| |style="border:0px;background-color:#001A00;width:32px;height:32px;color:#fff;text-align:center"|$34B
| |
| |style="border:0px;background-color:#001017;width:32px;height:32px;color:#fff;text-align:center"|$34C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$34D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$34E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$34F
| |
| |-
| |
| |style="border:0px;background-color:#424242;width:32px;height:32px;color:#fff;text-align:center"|$350
| |
| |style="border:0px;background-color:#012151;width:32px;height:32px;color:#fff;text-align:center"|$351
| |
| |style="border:0px;background-color:#10116A;width:32px;height:32px;color:#fff;text-align:center"|$352
| |
| |style="border:0px;background-color:#260668;width:32px;height:32px;color:#fff;text-align:center"|$353
| |
| |style="border:0px;background-color:#3B0050;width:32px;height:32px;color:#fff;text-align:center"|$354
| |
| |style="border:0px;background-color:#450134;width:32px;height:32px;color:#fff;text-align:center"|$355
| |
| |style="border:0px;background-color:#450A04;width:32px;height:32px;color:#fff;text-align:center"|$356
| |
| |style="border:0px;background-color:#3B1500;width:32px;height:32px;color:#fff;text-align:center"|$357
| |
| |style="border:0px;background-color:#252501;width:32px;height:32px;color:#fff;text-align:center"|$358
| |
| |style="border:0px;background-color:#112E00;width:32px;height:32px;color:#fff;text-align:center"|$359
| |
| |style="border:0px;background-color:#013600;width:32px;height:32px;color:#fff;text-align:center"|$35A
| |
| |style="border:0px;background-color:#003602;width:32px;height:32px;color:#fff;text-align:center"|$35B
| |
| |style="border:0px;background-color:#002A37;width:32px;height:32px;color:#fff;text-align:center"|$35C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$35D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$35E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$35F
| |
| |-
| |
| |style="border:0px;background-color:#5E5E5E;width:32px;height:32px;color:#fff;text-align:center"|$360
| |
| |style="border:0px;background-color:#153B6F;width:32px;height:32px;color:#fff;text-align:center"|$361
| |
| |style="border:0px;background-color:#2B2D84;width:32px;height:32px;color:#fff;text-align:center"|$362
| |
| |style="border:0px;background-color:#412083;width:32px;height:32px;color:#fff;text-align:center"|$363
| |
| |style="border:0px;background-color:#581A6F;width:32px;height:32px;color:#fff;text-align:center"|$364
| |
| |style="border:0px;background-color:#601B51;width:32px;height:32px;color:#fff;text-align:center"|$365
| |
| |style="border:0px;background-color:#612620;width:32px;height:32px;color:#fff;text-align:center"|$366
| |
| |style="border:0px;background-color:#593004;width:32px;height:32px;color:#fff;text-align:center"|$367
| |
| |style="border:0px;background-color:#424101;width:32px;height:32px;color:#fff;text-align:center"|$368
| |
| |style="border:0px;background-color:#2C4B00;width:32px;height:32px;color:#fff;text-align:center"|$369
| |
| |style="border:0px;background-color:#145202;width:32px;height:32px;color:#fff;text-align:center"|$36A
| |
| |style="border:0px;background-color:#0C521C;width:32px;height:32px;color:#fff;text-align:center"|$36B
| |
| |style="border:0px;background-color:#0B474F;width:32px;height:32px;color:#fff;text-align:center"|$36C
| |
| |style="border:0px;background-color:#0E0B0C;width:32px;height:32px;color:#fff;text-align:center"|$36D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$36E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$36F
| |
| |-
| |
| |style="border:0px;background-color:#777775;width:32px;height:32px;color:#fff;text-align:center"|$370
| |
| |style="border:0px;background-color:#30588C;width:32px;height:32px;color:#fff;text-align:center"|$371
| |
| |style="border:0px;background-color:#4648A0;width:32px;height:32px;color:#fff;text-align:center"|$372
| |
| |style="border:0px;background-color:#5C3D9E;width:32px;height:32px;color:#fff;text-align:center"|$373
| |
| |style="border:0px;background-color:#74368B;width:32px;height:32px;color:#fff;text-align:center"|$374
| |
| |style="border:0px;background-color:#7B366C;width:32px;height:32px;color:#fff;text-align:center"|$375
| |
| |style="border:0px;background-color:#7F4037;width:32px;height:32px;color:#fff;text-align:center"|$376
| |
| |style="border:0px;background-color:#744B1F;width:32px;height:32px;color:#fff;text-align:center"|$377
| |
| |style="border:0px;background-color:#5D5C02;width:32px;height:32px;color:#fff;text-align:center"|$378
| |
| |style="border:0px;background-color:#486602;width:32px;height:32px;color:#fff;text-align:center"|$379
| |
| |style="border:0px;background-color:#2F6C1C;width:32px;height:32px;color:#fff;text-align:center"|$37A
| |
| |style="border:0px;background-color:#286D38;width:32px;height:32px;color:#fff;text-align:center"|$37B
| |
| |style="border:0px;background-color:#27616C;width:32px;height:32px;color:#fff;text-align:center"|$37C
| |
| |style="border:0px;background-color:#272928;width:32px;height:32px;color:#fff;text-align:center"|$37D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$37E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$37F
| |
| |-
| |
| |style="border:0px;background-color:#949293;width:32px;height:32px;color:#000;text-align:center"|$380
| |
| |style="border:0px;background-color:#4B72A6;width:32px;height:32px;color:#fff;text-align:center"|$381
| |
| |style="border:0px;background-color:#6063BC;width:32px;height:32px;color:#fff;text-align:center"|$382
| |
| |style="border:0px;background-color:#7756BB;width:32px;height:32px;color:#fff;text-align:center"|$383
| |
| |style="border:0px;background-color:#8E51A1;width:32px;height:32px;color:#fff;text-align:center"|$384
| |
| |style="border:0px;background-color:#995087;width:32px;height:32px;color:#fff;text-align:center"|$385
| |
| |style="border:0px;background-color:#9A5B52;width:32px;height:32px;color:#fff;text-align:center"|$386
| |
| |style="border:0px;background-color:#8F6437;width:32px;height:32px;color:#fff;text-align:center"|$387
| |
| |style="border:0px;background-color:#79781C;width:32px;height:32px;color:#fff;text-align:center"|$388
| |
| |style="border:0px;background-color:#63821C;width:32px;height:32px;color:#fff;text-align:center"|$389
| |
| |style="border:0px;background-color:#498935;width:32px;height:32px;color:#fff;text-align:center"|$38A
| |
| |style="border:0px;background-color:#428856;width:32px;height:32px;color:#fff;text-align:center"|$38B
| |
| |style="border:0px;background-color:#3D7D86;width:32px;height:32px;color:#fff;text-align:center"|$38C
| |
| |style="border:0px;background-color:#41433E;width:32px;height:32px;color:#fff;text-align:center"|$38D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$38E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$38F
| |
| |-
| |
| |style="border:0px;background-color:#ACACAF;width:32px;height:32px;color:#000;text-align:center"|$390
| |
| |style="border:0px;background-color:#668DBD;width:32px;height:32px;color:#000;text-align:center"|$391
| |
| |style="border:0px;background-color:#7B7ED2;width:32px;height:32px;color:#000;text-align:center"|$392
| |
| |style="border:0px;background-color:#9171D4;width:32px;height:32px;color:#000;text-align:center"|$393
| |
| |style="border:0px;background-color:#A76CBC;width:32px;height:32px;color:#000;text-align:center"|$394
| |
| |style="border:0px;background-color:#B06BA1;width:32px;height:32px;color:#000;text-align:center"|$395
| |
| |style="border:0px;background-color:#B17670;width:32px;height:32px;color:#000;text-align:center"|$396
| |
| |style="border:0px;background-color:#A87F52;width:32px;height:32px;color:#000;text-align:center"|$397
| |
| |style="border:0px;background-color:#929238;width:32px;height:32px;color:#000;text-align:center"|$398
| |
| |style="border:0px;background-color:#7D9D36;width:32px;height:32px;color:#000;text-align:center"|$399
| |
| |style="border:0px;background-color:#64A354;width:32px;height:32px;color:#000;text-align:center"|$39A
| |
| |style="border:0px;background-color:#5CA269;width:32px;height:32px;color:#000;text-align:center"|$39B
| |
| |style="border:0px;background-color:#5B97A1;width:32px;height:32px;color:#000;text-align:center"|$39C
| |
| |style="border:0px;background-color:#5E5E60;width:32px;height:32px;color:#fff;text-align:center"|$39D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$39E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$39F
| |
| |-
| |
| |style="border:0px;background-color:#C6C6C8;width:32px;height:32px;color:#000;text-align:center"|$3A0
| |
| |style="border:0px;background-color:#82A6D6;width:32px;height:32px;color:#000;text-align:center"|$3A1
| |
| |style="border:0px;background-color:#9497ED;width:32px;height:32px;color:#000;text-align:center"|$3A2
| |
| |style="border:0px;background-color:#AC8CEF;width:32px;height:32px;color:#000;text-align:center"|$3A3
| |
| |style="border:0px;background-color:#C085D5;width:32px;height:32px;color:#000;text-align:center"|$3A4
| |
| |style="border:0px;background-color:#C984BA;width:32px;height:32px;color:#000;text-align:center"|$3A5
| |
| |style="border:0px;background-color:#CA9085;width:32px;height:32px;color:#000;text-align:center"|$3A6
| |
| |style="border:0px;background-color:#C2996D;width:32px;height:32px;color:#000;text-align:center"|$3A7
| |
| |style="border:0px;background-color:#AFAB52;width:32px;height:32px;color:#000;text-align:center"|$3A8
| |
| |style="border:0px;background-color:#97B551;width:32px;height:32px;color:#000;text-align:center"|$3A9
| |
| |style="border:0px;background-color:#7FBC6C;width:32px;height:32px;color:#000;text-align:center"|$3AA
| |
| |style="border:0px;background-color:#76BB87;width:32px;height:32px;color:#000;text-align:center"|$3AB
| |
| |style="border:0px;background-color:#76B0BB;width:32px;height:32px;color:#000;text-align:center"|$3AC
| |
| |style="border:0px;background-color:#777777;width:32px;height:32px;color:#fff;text-align:center"|$3AD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$3AE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$3AF
| |
| |-
| |
| |style="border:0px;background-color:#DFDFE1;width:32px;height:32px;color:#000;text-align:center"|$3B0
| |
| |style="border:0px;background-color:#9CC0F0;width:32px;height:32px;color:#000;text-align:center"|$3B1
| |
| |style="border:0px;background-color:#AEB1FE;width:32px;height:32px;color:#000;text-align:center"|$3B2
| |
| |style="border:0px;background-color:#C4A6FC;width:32px;height:32px;color:#000;text-align:center"|$3B3
| |
| |style="border:0px;background-color:#DA9FEE;width:32px;height:32px;color:#000;text-align:center"|$3B4
| |
| |style="border:0px;background-color:#E4A0D2;width:32px;height:32px;color:#000;text-align:center"|$3B5
| |
| |style="border:0px;background-color:#E4ABA4;width:32px;height:32px;color:#000;text-align:center"|$3B6
| |
| |style="border:0px;background-color:#DBB588;width:32px;height:32px;color:#000;text-align:center"|$3B7
| |
| |style="border:0px;background-color:#C5C56D;width:32px;height:32px;color:#000;text-align:center"|$3B8
| |
| |style="border:0px;background-color:#B1CE70;width:32px;height:32px;color:#000;text-align:center"|$3B9
| |
| |style="border:0px;background-color:#99D783;width:32px;height:32px;color:#000;text-align:center"|$3BA
| |
| |style="border:0px;background-color:#91D5A3;width:32px;height:32px;color:#000;text-align:center"|$3BB
| |
| |style="border:0px;background-color:#8FCAD2;width:32px;height:32px;color:#000;text-align:center"|$3BC
| |
| |style="border:0px;background-color:#929292;width:32px;height:32px;color:#000;text-align:center"|$3BD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$3BE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$3BF
| |
| |-
| |
| |style="border:0px;background-color:#F7F8F4;width:32px;height:32px;color:#000;text-align:center"|$3C0
| |
| |style="border:0px;background-color:#B5D8FE;width:32px;height:32px;color:#000;text-align:center"|$3C1
| |
| |style="border:0px;background-color:#C8CAFF;width:32px;height:32px;color:#000;text-align:center"|$3C2
| |
| |style="border:0px;background-color:#DEC0FE;width:32px;height:32px;color:#000;text-align:center"|$3C3
| |
| |style="border:0px;background-color:#F5B9FF;width:32px;height:32px;color:#000;text-align:center"|$3C4
| |
| |style="border:0px;background-color:#FBB9E7;width:32px;height:32px;color:#000;text-align:center"|$3C5
| |
| |style="border:0px;background-color:#FCC3BC;width:32px;height:32px;color:#000;text-align:center"|$3C6
| |
| |style="border:0px;background-color:#F3CCA1;width:32px;height:32px;color:#000;text-align:center"|$3C7
| |
| |style="border:0px;background-color:#DEDE88;width:32px;height:32px;color:#000;text-align:center"|$3C8
| |
| |style="border:0px;background-color:#C9E78C;width:32px;height:32px;color:#000;text-align:center"|$3C9
| |
| |style="border:0px;background-color:#B3EDA1;width:32px;height:32px;color:#000;text-align:center"|$3CA
| |
| |style="border:0px;background-color:#ABECC3;width:32px;height:32px;color:#000;text-align:center"|$3CB
| |
| |style="border:0px;background-color:#AAE3EC;width:32px;height:32px;color:#000;text-align:center"|$3CC
| |
| |style="border:0px;background-color:#ACACAC;width:32px;height:32px;color:#000;text-align:center"|$3CD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$3CE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$3CF
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$3D0
| |
| |style="border:0px;background-color:#CCF0FF;width:32px;height:32px;color:#000;text-align:center"|$3D1
| |
| |style="border:0px;background-color:#E1E2FD;width:32px;height:32px;color:#000;text-align:center"|$3D2
| |
| |style="border:0px;background-color:#F5D9FE;width:32px;height:32px;color:#000;text-align:center"|$3D3
| |
| |style="border:0px;background-color:#FED3FF;width:32px;height:32px;color:#000;text-align:center"|$3D4
| |
| |style="border:0px;background-color:#FED3FF;width:32px;height:32px;color:#000;text-align:center"|$3D5
| |
| |style="border:0px;background-color:#FEDCD6;width:32px;height:32px;color:#000;text-align:center"|$3D6
| |
| |style="border:0px;background-color:#FFE5BA;width:32px;height:32px;color:#000;text-align:center"|$3D7
| |
| |style="border:0px;background-color:#F8F5A8;width:32px;height:32px;color:#000;text-align:center"|$3D8
| |
| |style="border:0px;background-color:#E4FDA7;width:32px;height:32px;color:#000;text-align:center"|$3D9
| |
| |style="border:0px;background-color:#CDFFB8;width:32px;height:32px;color:#000;text-align:center"|$3DA
| |
| |style="border:0px;background-color:#C6FED0;width:32px;height:32px;color:#000;text-align:center"|$3DB
| |
| |style="border:0px;background-color:#C4F9FD;width:32px;height:32px;color:#000;text-align:center"|$3DC
| |
| |style="border:0px;background-color:#C5C5C3;width:32px;height:32px;color:#000;text-align:center"|$3DD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$3DE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$3DF
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$3E0
| |
| |style="border:0px;background-color:#E6FFFE;width:32px;height:32px;color:#000;text-align:center"|$3E1
| |
| |style="border:0px;background-color:#F7FBFE;width:32px;height:32px;color:#000;text-align:center"|$3E2
| |
| |style="border:0px;background-color:#FEF1FE;width:32px;height:32px;color:#000;text-align:center"|$3E3
| |
| |style="border:0px;background-color:#FFECFF;width:32px;height:32px;color:#000;text-align:center"|$3E4
| |
| |style="border:0px;background-color:#FFECFF;width:32px;height:32px;color:#000;text-align:center"|$3E5
| |
| |style="border:0px;background-color:#FFF5EC;width:32px;height:32px;color:#000;text-align:center"|$3E6
| |
| |style="border:0px;background-color:#FFFBD8;width:32px;height:32px;color:#000;text-align:center"|$3E7
| |
| |style="border:0px;background-color:#FFFFC3;width:32px;height:32px;color:#000;text-align:center"|$3E8
| |
| |style="border:0px;background-color:#FAFFC4;width:32px;height:32px;color:#000;text-align:center"|$3E9
| |
| |style="border:0px;background-color:#E7FED6;width:32px;height:32px;color:#000;text-align:center"|$3EA
| |
| |style="border:0px;background-color:#E1FEEF;width:32px;height:32px;color:#000;text-align:center"|$3EB
| |
| |style="border:0px;background-color:#DFFEFF;width:32px;height:32px;color:#000;text-align:center"|$3EC
| |
| |style="border:0px;background-color:#DFDFDC;width:32px;height:32px;color:#000;text-align:center"|$3ED
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$3EE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$3EF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$3F0
| |
| |style="border:0px;background-color:#E73F00;width:32px;height:32px;color:#fff;text-align:center"|$3F1
| |
| |style="border:0px;background-color:#887201;width:32px;height:32px;color:#fff;text-align:center"|$3F2
| |
| |style="border:0px;background-color:#2BA100;width:32px;height:32px;color:#fff;text-align:center"|$3F3
| |
| |style="border:0px;background-color:#00CB00;width:32px;height:32px;color:#fff;text-align:center"|$3F4
| |
| |style="border:0px;background-color:#00CB00;width:32px;height:32px;color:#fff;text-align:center"|$3F5
| |
| |style="border:0px;background-color:#009FBD;width:32px;height:32px;color:#fff;text-align:center"|$3F6
| |
| |style="border:0px;background-color:#0176FE;width:32px;height:32px;color:#fff;text-align:center"|$3F7
| |
| |style="border:0px;background-color:#2D3EFD;width:32px;height:32px;color:#fff;text-align:center"|$3F8
| |
| |style="border:0px;background-color:#8213FD;width:32px;height:32px;color:#fff;text-align:center"|$3F9
| |
| |style="border:0px;background-color:#EE00FE;width:32px;height:32px;color:#fff;text-align:center"|$3FA
| |
| |style="border:0px;background-color:#FE00C2;width:32px;height:32px;color:#fff;text-align:center"|$3FB
| |
| |style="border:0px;background-color:#FE1401;width:32px;height:32px;color:#fff;text-align:center"|$3FC
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$3FD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$3FE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$3FF
| |
| |-
| |
| ! colspan=16 | Saturation level $4
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$400
| |
| |style="border:0px;background-color:#F65800;width:32px;height:32px;color:#fff;text-align:center"|$401
| |
| |style="border:0px;background-color:#9C8E01;width:32px;height:32px;color:#000;text-align:center"|$402
| |
| |style="border:0px;background-color:#47B800;width:32px;height:32px;color:#000;text-align:center"|$403
| |
| |style="border:0px;background-color:#00DC00;width:32px;height:32px;color:#000;text-align:center"|$404
| |
| |style="border:0px;background-color:#02DC14;width:32px;height:32px;color:#000;text-align:center"|$405
| |
| |style="border:0px;background-color:#00B2D0;width:32px;height:32px;color:#000;text-align:center"|$406
| |
| |style="border:0px;background-color:#008CFE;width:32px;height:32px;color:#fff;text-align:center"|$407
| |
| |style="border:0px;background-color:#4D53FE;width:32px;height:32px;color:#fff;text-align:center"|$408
| |
| |style="border:0px;background-color:#972DFE;width:32px;height:32px;color:#fff;text-align:center"|$409
| |
| |style="border:0px;background-color:#FC02FE;width:32px;height:32px;color:#fff;text-align:center"|$40A
| |
| |style="border:0px;background-color:#FD08D0;width:32px;height:32px;color:#fff;text-align:center"|$40B
| |
| |style="border:0px;background-color:#FF3012;width:32px;height:32px;color:#fff;text-align:center"|$40C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$40D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$40E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$40F
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$410
| |
| |style="border:0px;background-color:#FF7300;width:32px;height:32px;color:#000;text-align:center"|$411
| |
| |style="border:0px;background-color:#B7A800;width:32px;height:32px;color:#000;text-align:center"|$412
| |
| |style="border:0px;background-color:#61D300;width:32px;height:32px;color:#000;text-align:center"|$413
| |
| |style="border:0px;background-color:#0BF701;width:32px;height:32px;color:#000;text-align:center"|$414
| |
| |style="border:0px;background-color:#00F530;width:32px;height:32px;color:#000;text-align:center"|$415
| |
| |style="border:0px;background-color:#00CCEB;width:32px;height:32px;color:#000;text-align:center"|$416
| |
| |style="border:0px;background-color:#09A5FE;width:32px;height:32px;color:#000;text-align:center"|$417
| |
| |style="border:0px;background-color:#636EFE;width:32px;height:32px;color:#fff;text-align:center"|$418
| |
| |style="border:0px;background-color:#B048FD;width:32px;height:32px;color:#fff;text-align:center"|$419
| |
| |style="border:0px;background-color:#FD1FFD;width:32px;height:32px;color:#fff;text-align:center"|$41A
| |
| |style="border:0px;background-color:#FE22F0;width:32px;height:32px;color:#fff;text-align:center"|$41B
| |
| |style="border:0px;background-color:#FF4B30;width:32px;height:32px;color:#fff;text-align:center"|$41C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$41D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$41E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$41F
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$420
| |
| |style="border:0px;background-color:#000031;width:32px;height:32px;color:#fff;text-align:center"|$421
| |
| |style="border:0px;background-color:#00004A;width:32px;height:32px;color:#fff;text-align:center"|$422
| |
| |style="border:0px;background-color:#00004B;width:32px;height:32px;color:#fff;text-align:center"|$423
| |
| |style="border:0px;background-color:#15002D;width:32px;height:32px;color:#fff;text-align:center"|$424
| |
| |style="border:0px;background-color:#20000D;width:32px;height:32px;color:#fff;text-align:center"|$425
| |
| |style="border:0px;background-color:#1F0000;width:32px;height:32px;color:#fff;text-align:center"|$426
| |
| |style="border:0px;background-color:#140001;width:32px;height:32px;color:#fff;text-align:center"|$427
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$428
| |
| |style="border:0px;background-color:#000700;width:32px;height:32px;color:#fff;text-align:center"|$429
| |
| |style="border:0px;background-color:#000E00;width:32px;height:32px;color:#fff;text-align:center"|$42A
| |
| |style="border:0px;background-color:#000D00;width:32px;height:32px;color:#fff;text-align:center"|$42B
| |
| |style="border:0px;background-color:#01010D;width:32px;height:32px;color:#fff;text-align:center"|$42C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$42D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$42E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$42F
| |
| |-
| |
| |style="border:0px;background-color:#1B1A1F;width:32px;height:32px;color:#fff;text-align:center"|$430
| |
| |style="border:0px;background-color:#000031;width:32px;height:32px;color:#fff;text-align:center"|$431
| |
| |style="border:0px;background-color:#000054;width:32px;height:32px;color:#fff;text-align:center"|$432
| |
| |style="border:0px;background-color:#00004E;width:32px;height:32px;color:#fff;text-align:center"|$433
| |
| |style="border:0px;background-color:#180032;width:32px;height:32px;color:#fff;text-align:center"|$434
| |
| |style="border:0px;background-color:#24000C;width:32px;height:32px;color:#fff;text-align:center"|$435
| |
| |style="border:0px;background-color:#230000;width:32px;height:32px;color:#fff;text-align:center"|$436
| |
| |style="border:0px;background-color:#180000;width:32px;height:32px;color:#fff;text-align:center"|$437
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$438
| |
| |style="border:0px;background-color:#000700;width:32px;height:32px;color:#fff;text-align:center"|$439
| |
| |style="border:0px;background-color:#001100;width:32px;height:32px;color:#fff;text-align:center"|$43A
| |
| |style="border:0px;background-color:#010F01;width:32px;height:32px;color:#fff;text-align:center"|$43B
| |
| |style="border:0px;background-color:#00020E;width:32px;height:32px;color:#fff;text-align:center"|$43C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$43D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$43E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$43F
| |
| |-
| |
| |style="border:0px;background-color:#363636;width:32px;height:32px;color:#fff;text-align:center"|$440
| |
| |style="border:0px;background-color:#000945;width:32px;height:32px;color:#fff;text-align:center"|$441
| |
| |style="border:0px;background-color:#01006A;width:32px;height:32px;color:#fff;text-align:center"|$442
| |
| |style="border:0px;background-color:#0F0065;width:32px;height:32px;color:#fff;text-align:center"|$443
| |
| |style="border:0px;background-color:#2B0047;width:32px;height:32px;color:#fff;text-align:center"|$444
| |
| |style="border:0px;background-color:#370020;width:32px;height:32px;color:#fff;text-align:center"|$445
| |
| |style="border:0px;background-color:#380000;width:32px;height:32px;color:#fff;text-align:center"|$446
| |
| |style="border:0px;background-color:#2A0100;width:32px;height:32px;color:#fff;text-align:center"|$447
| |
| |style="border:0px;background-color:#0D0E01;width:32px;height:32px;color:#fff;text-align:center"|$448
| |
| |style="border:0px;background-color:#011B00;width:32px;height:32px;color:#fff;text-align:center"|$449
| |
| |style="border:0px;background-color:#002500;width:32px;height:32px;color:#fff;text-align:center"|$44A
| |
| |style="border:0px;background-color:#002200;width:32px;height:32px;color:#fff;text-align:center"|$44B
| |
| |style="border:0px;background-color:#011520;width:32px;height:32px;color:#fff;text-align:center"|$44C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$44D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$44E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$44F
| |
| |-
| |
| |style="border:0px;background-color:#505050;width:32px;height:32px;color:#fff;text-align:center"|$450
| |
| |style="border:0px;background-color:#002361;width:32px;height:32px;color:#fff;text-align:center"|$451
| |
| |style="border:0px;background-color:#0C0F7A;width:32px;height:32px;color:#fff;text-align:center"|$452
| |
| |style="border:0px;background-color:#29017F;width:32px;height:32px;color:#fff;text-align:center"|$453
| |
| |style="border:0px;background-color:#460062;width:32px;height:32px;color:#fff;text-align:center"|$454
| |
| |style="border:0px;background-color:#54003C;width:32px;height:32px;color:#fff;text-align:center"|$455
| |
| |style="border:0px;background-color:#500500;width:32px;height:32px;color:#fff;text-align:center"|$456
| |
| |style="border:0px;background-color:#471200;width:32px;height:32px;color:#fff;text-align:center"|$457
| |
| |style="border:0px;background-color:#282901;width:32px;height:32px;color:#fff;text-align:center"|$458
| |
| |style="border:0px;background-color:#0D3500;width:32px;height:32px;color:#fff;text-align:center"|$459
| |
| |style="border:0px;background-color:#004100;width:32px;height:32px;color:#fff;text-align:center"|$45A
| |
| |style="border:0px;background-color:#003E00;width:32px;height:32px;color:#fff;text-align:center"|$45B
| |
| |style="border:0px;background-color:#00303C;width:32px;height:32px;color:#fff;text-align:center"|$45C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$45D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$45E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$45F
| |
| |-
| |
| |style="border:0px;background-color:#696967;width:32px;height:32px;color:#fff;text-align:center"|$460
| |
| |style="border:0px;background-color:#093F7F;width:32px;height:32px;color:#fff;text-align:center"|$461
| |
| |style="border:0px;background-color:#2829A1;width:32px;height:32px;color:#fff;text-align:center"|$462
| |
| |style="border:0px;background-color:#441A9A;width:32px;height:32px;color:#fff;text-align:center"|$463
| |
| |style="border:0px;background-color:#63117F;width:32px;height:32px;color:#fff;text-align:center"|$464
| |
| |style="border:0px;background-color:#701155;width:32px;height:32px;color:#fff;text-align:center"|$465
| |
| |style="border:0px;background-color:#702017;width:32px;height:32px;color:#fff;text-align:center"|$466
| |
| |style="border:0px;background-color:#612C00;width:32px;height:32px;color:#fff;text-align:center"|$467
| |
| |style="border:0px;background-color:#454500;width:32px;height:32px;color:#fff;text-align:center"|$468
| |
| |style="border:0px;background-color:#2A5202;width:32px;height:32px;color:#fff;text-align:center"|$469
| |
| |style="border:0px;background-color:#075D00;width:32px;height:32px;color:#fff;text-align:center"|$46A
| |
| |style="border:0px;background-color:#005B13;width:32px;height:32px;color:#fff;text-align:center"|$46B
| |
| |style="border:0px;background-color:#014E58;width:32px;height:32px;color:#fff;text-align:center"|$46C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$46D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$46E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$46F
| |
| |-
| |
| |style="border:0px;background-color:#848484;width:32px;height:32px;color:#000;text-align:center"|$470
| |
| |style="border:0px;background-color:#275A9B;width:32px;height:32px;color:#fff;text-align:center"|$471
| |
| |style="border:0px;background-color:#4247BC;width:32px;height:32px;color:#fff;text-align:center"|$472
| |
| |style="border:0px;background-color:#6037B7;width:32px;height:32px;color:#fff;text-align:center"|$473
| |
| |style="border:0px;background-color:#7F2D9C;width:32px;height:32px;color:#fff;text-align:center"|$474
| |
| |style="border:0px;background-color:#8C2C73;width:32px;height:32px;color:#fff;text-align:center"|$475
| |
| |style="border:0px;background-color:#8C3C33;width:32px;height:32px;color:#fff;text-align:center"|$476
| |
| |style="border:0px;background-color:#804909;width:32px;height:32px;color:#fff;text-align:center"|$477
| |
| |style="border:0px;background-color:#5E6000;width:32px;height:32px;color:#fff;text-align:center"|$478
| |
| |style="border:0px;background-color:#466D01;width:32px;height:32px;color:#fff;text-align:center"|$479
| |
| |style="border:0px;background-color:#24770A;width:32px;height:32px;color:#fff;text-align:center"|$47A
| |
| |style="border:0px;background-color:#177730;width:32px;height:32px;color:#fff;text-align:center"|$47B
| |
| |style="border:0px;background-color:#166873;width:32px;height:32px;color:#fff;text-align:center"|$47C
| |
| |style="border:0px;background-color:#1A1A1A;width:32px;height:32px;color:#fff;text-align:center"|$47D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$47E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$47F
| |
| |-
| |
| |style="border:0px;background-color:#9F9F9C;width:32px;height:32px;color:#000;text-align:center"|$480
| |
| |style="border:0px;background-color:#3F74B9;width:32px;height:32px;color:#fff;text-align:center"|$481
| |
| |style="border:0px;background-color:#5D5FD5;width:32px;height:32px;color:#fff;text-align:center"|$482
| |
| |style="border:0px;background-color:#7B51D6;width:32px;height:32px;color:#fff;text-align:center"|$483
| |
| |style="border:0px;background-color:#9A48B7;width:32px;height:32px;color:#fff;text-align:center"|$484
| |
| |style="border:0px;background-color:#A6468D;width:32px;height:32px;color:#fff;text-align:center"|$485
| |
| |style="border:0px;background-color:#A6564B;width:32px;height:32px;color:#fff;text-align:center"|$486
| |
| |style="border:0px;background-color:#9A6225;width:32px;height:32px;color:#fff;text-align:center"|$487
| |
| |style="border:0px;background-color:#7B7B01;width:32px;height:32px;color:#fff;text-align:center"|$488
| |
| |style="border:0px;background-color:#5E8801;width:32px;height:32px;color:#fff;text-align:center"|$489
| |
| |style="border:0px;background-color:#3D9226;width:32px;height:32px;color:#fff;text-align:center"|$48A
| |
| |style="border:0px;background-color:#32924B;width:32px;height:32px;color:#fff;text-align:center"|$48B
| |
| |style="border:0px;background-color:#2E828D;width:32px;height:32px;color:#fff;text-align:center"|$48C
| |
| |style="border:0px;background-color:#343436;width:32px;height:32px;color:#fff;text-align:center"|$48D
| |
| |style="border:0px;background-color:#000002;width:32px;height:32px;color:#fff;text-align:center"|$48E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$48F
| |
| |-
| |
| |style="border:0px;background-color:#B8B8B6;width:32px;height:32px;color:#000;text-align:center"|$490
| |
| |style="border:0px;background-color:#5C8FD0;width:32px;height:32px;color:#000;text-align:center"|$491
| |
| |style="border:0px;background-color:#797BF0;width:32px;height:32px;color:#000;text-align:center"|$492
| |
| |style="border:0px;background-color:#956CED;width:32px;height:32px;color:#000;text-align:center"|$493
| |
| |style="border:0px;background-color:#B264D1;width:32px;height:32px;color:#000;text-align:center"|$494
| |
| |style="border:0px;background-color:#BF63A6;width:32px;height:32px;color:#000;text-align:center"|$495
| |
| |style="border:0px;background-color:#C17168;width:32px;height:32px;color:#000;text-align:center"|$496
| |
| |style="border:0px;background-color:#B47E42;width:32px;height:32px;color:#000;text-align:center"|$497
| |
| |style="border:0px;background-color:#96961E;width:32px;height:32px;color:#000;text-align:center"|$498
| |
| |style="border:0px;background-color:#7AA31E;width:32px;height:32px;color:#000;text-align:center"|$499
| |
| |style="border:0px;background-color:#5AAC3E;width:32px;height:32px;color:#000;text-align:center"|$49A
| |
| |style="border:0px;background-color:#4EA967;width:32px;height:32px;color:#000;text-align:center"|$49B
| |
| |style="border:0px;background-color:#4B9DA8;width:32px;height:32px;color:#000;text-align:center"|$49C
| |
| |style="border:0px;background-color:#505050;width:32px;height:32px;color:#fff;text-align:center"|$49D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$49E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$49F
| |
| |-
| |
| |style="border:0px;background-color:#D0D3D2;width:32px;height:32px;color:#000;text-align:center"|$4A0
| |
| |style="border:0px;background-color:#76A9EA;width:32px;height:32px;color:#000;text-align:center"|$4A1
| |
| |style="border:0px;background-color:#9294FD;width:32px;height:32px;color:#000;text-align:center"|$4A2
| |
| |style="border:0px;background-color:#AF86FE;width:32px;height:32px;color:#000;text-align:center"|$4A3
| |
| |style="border:0px;background-color:#CE7CEA;width:32px;height:32px;color:#000;text-align:center"|$4A4
| |
| |style="border:0px;background-color:#D97DBE;width:32px;height:32px;color:#000;text-align:center"|$4A5
| |
| |style="border:0px;background-color:#D98D80;width:32px;height:32px;color:#000;text-align:center"|$4A6
| |
| |style="border:0px;background-color:#CE985C;width:32px;height:32px;color:#000;text-align:center"|$4A7
| |
| |style="border:0px;background-color:#AAB239;width:32px;height:32px;color:#000;text-align:center"|$4A8
| |
| |style="border:0px;background-color:#91BE38;width:32px;height:32px;color:#000;text-align:center"|$4A9
| |
| |style="border:0px;background-color:#72C65E;width:32px;height:32px;color:#000;text-align:center"|$4AA
| |
| |style="border:0px;background-color:#65C586;width:32px;height:32px;color:#000;text-align:center"|$4AB
| |
| |style="border:0px;background-color:#65B6C8;width:32px;height:32px;color:#000;text-align:center"|$4AC
| |
| |style="border:0px;background-color:#696A6C;width:32px;height:32px;color:#fff;text-align:center"|$4AD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$4AE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$4AF
| |
| |-
| |
| |style="border:0px;background-color:#EBEBED;width:32px;height:32px;color:#000;text-align:center"|$4B0
| |
| |style="border:0px;background-color:#8FC3FD;width:32px;height:32px;color:#000;text-align:center"|$4B1
| |
| |style="border:0px;background-color:#ABAEFE;width:32px;height:32px;color:#000;text-align:center"|$4B2
| |
| |style="border:0px;background-color:#C79FFE;width:32px;height:32px;color:#000;text-align:center"|$4B3
| |
| |style="border:0px;background-color:#E897FE;width:32px;height:32px;color:#000;text-align:center"|$4B4
| |
| |style="border:0px;background-color:#F198DA;width:32px;height:32px;color:#000;text-align:center"|$4B5
| |
| |style="border:0px;background-color:#F2A59B;width:32px;height:32px;color:#000;text-align:center"|$4B6
| |
| |style="border:0px;background-color:#E5B378;width:32px;height:32px;color:#000;text-align:center"|$4B7
| |
| |style="border:0px;background-color:#C9CA55;width:32px;height:32px;color:#000;text-align:center"|$4B8
| |
| |style="border:0px;background-color:#AED755;width:32px;height:32px;color:#000;text-align:center"|$4B9
| |
| |style="border:0px;background-color:#8DDF7A;width:32px;height:32px;color:#000;text-align:center"|$4BA
| |
| |style="border:0px;background-color:#82DD9D;width:32px;height:32px;color:#000;text-align:center"|$4BB
| |
| |style="border:0px;background-color:#82D0DD;width:32px;height:32px;color:#000;text-align:center"|$4BC
| |
| |style="border:0px;background-color:#848682;width:32px;height:32px;color:#000;text-align:center"|$4BD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$4BE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$4BF
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$4C0
| |
| |style="border:0px;background-color:#A9DAFE;width:32px;height:32px;color:#000;text-align:center"|$4C1
| |
| |style="border:0px;background-color:#C5C8FF;width:32px;height:32px;color:#000;text-align:center"|$4C2
| |
| |style="border:0px;background-color:#E1B9FE;width:32px;height:32px;color:#000;text-align:center"|$4C3
| |
| |style="border:0px;background-color:#FDB0FE;width:32px;height:32px;color:#000;text-align:center"|$4C4
| |
| |style="border:0px;background-color:#FFB1F2;width:32px;height:32px;color:#000;text-align:center"|$4C5
| |
| |style="border:0px;background-color:#FEBEB4;width:32px;height:32px;color:#000;text-align:center"|$4C6
| |
| |style="border:0px;background-color:#FCC992;width:32px;height:32px;color:#000;text-align:center"|$4C7
| |
| |style="border:0px;background-color:#DEE170;width:32px;height:32px;color:#000;text-align:center"|$4C8
| |
| |style="border:0px;background-color:#C6ED70;width:32px;height:32px;color:#000;text-align:center"|$4C9
| |
| |style="border:0px;background-color:#A8F58F;width:32px;height:32px;color:#000;text-align:center"|$4CA
| |
| |style="border:0px;background-color:#9DF3B5;width:32px;height:32px;color:#000;text-align:center"|$4CB
| |
| |style="border:0px;background-color:#9CE6F1;width:32px;height:32px;color:#000;text-align:center"|$4CC
| |
| |style="border:0px;background-color:#9F9FA1;width:32px;height:32px;color:#000;text-align:center"|$4CD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$4CE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$4CF
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$4D0
| |
| |style="border:0px;background-color:#C6F0FE;width:32px;height:32px;color:#000;text-align:center"|$4D1
| |
| |style="border:0px;background-color:#DEDFFE;width:32px;height:32px;color:#000;text-align:center"|$4D2
| |
| |style="border:0px;background-color:#F8D3FE;width:32px;height:32px;color:#000;text-align:center"|$4D3
| |
| |style="border:0px;background-color:#FDCBFE;width:32px;height:32px;color:#000;text-align:center"|$4D4
| |
| |style="border:0px;background-color:#FDCBFE;width:32px;height:32px;color:#000;text-align:center"|$4D5
| |
| |style="border:0px;background-color:#FFD9D0;width:32px;height:32px;color:#000;text-align:center"|$4D6
| |
| |style="border:0px;background-color:#FEE3AE;width:32px;height:32px;color:#000;text-align:center"|$4D7
| |
| |style="border:0px;background-color:#F9F794;width:32px;height:32px;color:#000;text-align:center"|$4D8
| |
| |style="border:0px;background-color:#DFFF8D;width:32px;height:32px;color:#000;text-align:center"|$4D9
| |
| |style="border:0px;background-color:#C4FDAE;width:32px;height:32px;color:#000;text-align:center"|$4DA
| |
| |style="border:0px;background-color:#BBFFCF;width:32px;height:32px;color:#000;text-align:center"|$4DB
| |
| |style="border:0px;background-color:#B7FDFD;width:32px;height:32px;color:#000;text-align:center"|$4DC
| |
| |style="border:0px;background-color:#B9B9B8;width:32px;height:32px;color:#000;text-align:center"|$4DD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$4DE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$4DF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$4E0
| |
| |style="border:0px;background-color:#BF2301;width:32px;height:32px;color:#fff;text-align:center"|$4E1
| |
| |style="border:0px;background-color:#685800;width:32px;height:32px;color:#fff;text-align:center"|$4E2
| |
| |style="border:0px;background-color:#128300;width:32px;height:32px;color:#fff;text-align:center"|$4E3
| |
| |style="border:0px;background-color:#00A600;width:32px;height:32px;color:#fff;text-align:center"|$4E4
| |
| |style="border:0px;background-color:#00A600;width:32px;height:32px;color:#fff;text-align:center"|$4E5
| |
| |style="border:0px;background-color:#007D99;width:32px;height:32px;color:#fff;text-align:center"|$4E6
| |
| |style="border:0px;background-color:#0157FE;width:32px;height:32px;color:#fff;text-align:center"|$4E7
| |
| |style="border:0px;background-color:#161CFE;width:32px;height:32px;color:#fff;text-align:center"|$4E8
| |
| |style="border:0px;background-color:#6100FE;width:32px;height:32px;color:#fff;text-align:center"|$4E9
| |
| |style="border:0px;background-color:#C500FE;width:32px;height:32px;color:#fff;text-align:center"|$4EA
| |
| |style="border:0px;background-color:#E8009F;width:32px;height:32px;color:#fff;text-align:center"|$4EB
| |
| |style="border:0px;background-color:#EB0001;width:32px;height:32px;color:#fff;text-align:center"|$4EC
| |
| |style="border:0px;background-color:#D1D3D2;width:32px;height:32px;color:#000;text-align:center"|$4ED
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$4EE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$4EF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$4F0
| |
| |style="border:0px;background-color:#DC3E02;width:32px;height:32px;color:#fff;text-align:center"|$4F1
| |
| |style="border:0px;background-color:#847401;width:32px;height:32px;color:#fff;text-align:center"|$4F2
| |
| |style="border:0px;background-color:#2F9F00;width:32px;height:32px;color:#fff;text-align:center"|$4F3
| |
| |style="border:0px;background-color:#00C100;width:32px;height:32px;color:#fff;text-align:center"|$4F4
| |
| |style="border:0px;background-color:#00C100;width:32px;height:32px;color:#fff;text-align:center"|$4F5
| |
| |style="border:0px;background-color:#0099B4;width:32px;height:32px;color:#fff;text-align:center"|$4F6
| |
| |style="border:0px;background-color:#0074FE;width:32px;height:32px;color:#fff;text-align:center"|$4F7
| |
| |style="border:0px;background-color:#303BFE;width:32px;height:32px;color:#fff;text-align:center"|$4F8
| |
| |style="border:0px;background-color:#7B15FE;width:32px;height:32px;color:#fff;text-align:center"|$4F9
| |
| |style="border:0px;background-color:#E000FE;width:32px;height:32px;color:#fff;text-align:center"|$4FA
| |
| |style="border:0px;background-color:#FE02B8;width:32px;height:32px;color:#fff;text-align:center"|$4FB
| |
| |style="border:0px;background-color:#FE1700;width:32px;height:32px;color:#fff;text-align:center"|$4FC
| |
| |style="border:0px;background-color:#EBEDEA;width:32px;height:32px;color:#000;text-align:center"|$4FD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$4FE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$4FF
| |
| |-
| |
| ! colspan=16 | Saturation level $5
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$500
| |
| |style="border:0px;background-color:#EB5900;width:32px;height:32px;color:#fff;text-align:center"|$501
| |
| |style="border:0px;background-color:#988E01;width:32px;height:32px;color:#000;text-align:center"|$502
| |
| |style="border:0px;background-color:#49B600;width:32px;height:32px;color:#000;text-align:center"|$503
| |
| |style="border:0px;background-color:#00D400;width:32px;height:32px;color:#fff;text-align:center"|$504
| |
| |style="border:0px;background-color:#00D419;width:32px;height:32px;color:#fff;text-align:center"|$505
| |
| |style="border:0px;background-color:#00AEC7;width:32px;height:32px;color:#fff;text-align:center"|$506
| |
| |style="border:0px;background-color:#008BFD;width:32px;height:32px;color:#fff;text-align:center"|$507
| |
| |style="border:0px;background-color:#524FFF;width:32px;height:32px;color:#fff;text-align:center"|$508
| |
| |style="border:0px;background-color:#952CFD;width:32px;height:32px;color:#fff;text-align:center"|$509
| |
| |style="border:0px;background-color:#F00BFE;width:32px;height:32px;color:#fff;text-align:center"|$50A
| |
| |style="border:0px;background-color:#FE0FC5;width:32px;height:32px;color:#fff;text-align:center"|$50B
| |
| |style="border:0px;background-color:#FF3614;width:32px;height:32px;color:#fff;text-align:center"|$50C
| |
| |style="border:0px;background-color:#F8F8F8;width:32px;height:32px;color:#000;text-align:center"|$50D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$50E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$50F
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$510
| |
| |style="border:0px;background-color:#FF7400;width:32px;height:32px;color:#000;text-align:center"|$511
| |
| |style="border:0px;background-color:#B1AA00;width:32px;height:32px;color:#000;text-align:center"|$512
| |
| |style="border:0px;background-color:#64D001;width:32px;height:32px;color:#000;text-align:center"|$513
| |
| |style="border:0px;background-color:#12EA00;width:32px;height:32px;color:#000;text-align:center"|$514
| |
| |style="border:0px;background-color:#01EA36;width:32px;height:32px;color:#000;text-align:center"|$515
| |
| |style="border:0px;background-color:#00C5E0;width:32px;height:32px;color:#000;text-align:center"|$516
| |
| |style="border:0px;background-color:#12A3FE;width:32px;height:32px;color:#000;text-align:center"|$517
| |
| |style="border:0px;background-color:#666CFD;width:32px;height:32px;color:#fff;text-align:center"|$518
| |
| |style="border:0px;background-color:#AB49FD;width:32px;height:32px;color:#fff;text-align:center"|$519
| |
| |style="border:0px;background-color:#FE28FE;width:32px;height:32px;color:#000;text-align:center"|$51A
| |
| |style="border:0px;background-color:#FF2AE2;width:32px;height:32px;color:#fff;text-align:center"|$51B
| |
| |style="border:0px;background-color:#FE5138;width:32px;height:32px;color:#000;text-align:center"|$51C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$51D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$51E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$51F
| |
| |-
| |
| |style="border:0px;background-color:#0C0C0C;width:32px;height:32px;color:#fff;text-align:center"|$520
| |
| |style="border:0px;background-color:#FE8E01;width:32px;height:32px;color:#000;text-align:center"|$521
| |
| |style="border:0px;background-color:#CAC200;width:32px;height:32px;color:#000;text-align:center"|$522
| |
| |style="border:0px;background-color:#7EE800;width:32px;height:32px;color:#000;text-align:center"|$523
| |
| |style="border:0px;background-color:#31FE01;width:32px;height:32px;color:#000;text-align:center"|$524
| |
| |style="border:0px;background-color:#10FE50;width:32px;height:32px;color:#000;text-align:center"|$525
| |
| |style="border:0px;background-color:#0EDFF6;width:32px;height:32px;color:#000;text-align:center"|$526
| |
| |style="border:0px;background-color:#2DBEFE;width:32px;height:32px;color:#000;text-align:center"|$527
| |
| |style="border:0px;background-color:#8484FE;width:32px;height:32px;color:#000;text-align:center"|$528
| |
| |style="border:0px;background-color:#C761FD;width:32px;height:32px;color:#000;text-align:center"|$529
| |
| |style="border:0px;background-color:#FE43FE;width:32px;height:32px;color:#000;text-align:center"|$52A
| |
| |style="border:0px;background-color:#FE46FB;width:32px;height:32px;color:#000;text-align:center"|$52B
| |
| |style="border:0px;background-color:#FF6A4F;width:32px;height:32px;color:#000;text-align:center"|$52C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$52D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$52E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$52F
| |
| |-
| |
| |style="border:0px;background-color:#292927;width:32px;height:32px;color:#fff;text-align:center"|$530
| |
| |style="border:0px;background-color:#000043;width:32px;height:32px;color:#fff;text-align:center"|$531
| |
| |style="border:0px;background-color:#00006A;width:32px;height:32px;color:#fff;text-align:center"|$532
| |
| |style="border:0px;background-color:#000166;width:32px;height:32px;color:#fff;text-align:center"|$533
| |
| |style="border:0px;background-color:#210144;width:32px;height:32px;color:#fff;text-align:center"|$534
| |
| |style="border:0px;background-color:#310016;width:32px;height:32px;color:#fff;text-align:center"|$535
| |
| |style="border:0px;background-color:#300000;width:32px;height:32px;color:#fff;text-align:center"|$536
| |
| |style="border:0px;background-color:#220000;width:32px;height:32px;color:#fff;text-align:center"|$537
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$538
| |
| |style="border:0px;background-color:#000E01;width:32px;height:32px;color:#fff;text-align:center"|$539
| |
| |style="border:0px;background-color:#001900;width:32px;height:32px;color:#fff;text-align:center"|$53A
| |
| |style="border:0px;background-color:#011700;width:32px;height:32px;color:#fff;text-align:center"|$53B
| |
| |style="border:0px;background-color:#000913;width:32px;height:32px;color:#fff;text-align:center"|$53C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$53D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$53E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$53F
| |
| |-
| |
| |style="border:0px;background-color:#434343;width:32px;height:32px;color:#fff;text-align:center"|$540
| |
| |style="border:0px;background-color:#000B5C;width:32px;height:32px;color:#fff;text-align:center"|$541
| |
| |style="border:0px;background-color:#000083;width:32px;height:32px;color:#fff;text-align:center"|$542
| |
| |style="border:0px;background-color:#13007C;width:32px;height:32px;color:#fff;text-align:center"|$543
| |
| |style="border:0px;background-color:#380059;width:32px;height:32px;color:#fff;text-align:center"|$544
| |
| |style="border:0px;background-color:#450026;width:32px;height:32px;color:#fff;text-align:center"|$545
| |
| |style="border:0px;background-color:#460000;width:32px;height:32px;color:#fff;text-align:center"|$546
| |
| |style="border:0px;background-color:#360000;width:32px;height:32px;color:#fff;text-align:center"|$547
| |
| |style="border:0px;background-color:#111200;width:32px;height:32px;color:#fff;text-align:center"|$548
| |
| |style="border:0px;background-color:#002201;width:32px;height:32px;color:#fff;text-align:center"|$549
| |
| |style="border:0px;background-color:#002E00;width:32px;height:32px;color:#fff;text-align:center"|$54A
| |
| |style="border:0px;background-color:#002D00;width:32px;height:32px;color:#fff;text-align:center"|$54B
| |
| |style="border:0px;background-color:#001B27;width:32px;height:32px;color:#fff;text-align:center"|$54C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$54D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$54E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$54F
| |
| |-
| |
| |style="border:0px;background-color:#605D5E;width:32px;height:32px;color:#fff;text-align:center"|$550
| |
| |style="border:0px;background-color:#012679;width:32px;height:32px;color:#fff;text-align:center"|$551
| |
| |style="border:0px;background-color:#0C0C9D;width:32px;height:32px;color:#fff;text-align:center"|$552
| |
| |style="border:0px;background-color:#2E009C;width:32px;height:32px;color:#fff;text-align:center"|$553
| |
| |style="border:0px;background-color:#540074;width:32px;height:32px;color:#fff;text-align:center"|$554
| |
| |style="border:0px;background-color:#610043;width:32px;height:32px;color:#fff;text-align:center"|$555
| |
| |style="border:0px;background-color:#640000;width:32px;height:32px;color:#fff;text-align:center"|$556
| |
| |style="border:0px;background-color:#531000;width:32px;height:32px;color:#fff;text-align:center"|$557
| |
| |style="border:0px;background-color:#2C2D01;width:32px;height:32px;color:#fff;text-align:center"|$558
| |
| |style="border:0px;background-color:#0D3E00;width:32px;height:32px;color:#fff;text-align:center"|$559
| |
| |style="border:0px;background-color:#004A00;width:32px;height:32px;color:#fff;text-align:center"|$55A
| |
| |style="border:0px;background-color:#004900;width:32px;height:32px;color:#fff;text-align:center"|$55B
| |
| |style="border:0px;background-color:#013741;width:32px;height:32px;color:#fff;text-align:center"|$55C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$55D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$55E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$55F
| |
| |-
| |
| |style="border:0px;background-color:#797977;width:32px;height:32px;color:#fff;text-align:center"|$560
| |
| |style="border:0px;background-color:#014394;width:32px;height:32px;color:#fff;text-align:center"|$561
| |
| |style="border:0px;background-color:#2626B8;width:32px;height:32px;color:#fff;text-align:center"|$562
| |
| |style="border:0px;background-color:#4A17B8;width:32px;height:32px;color:#fff;text-align:center"|$563
| |
| |style="border:0px;background-color:#6F0B92;width:32px;height:32px;color:#fff;text-align:center"|$564
| |
| |style="border:0px;background-color:#7F0B60;width:32px;height:32px;color:#fff;text-align:center"|$565
| |
| |style="border:0px;background-color:#7F1B0C;width:32px;height:32px;color:#fff;text-align:center"|$566
| |
| |style="border:0px;background-color:#6F2C00;width:32px;height:32px;color:#fff;text-align:center"|$567
| |
| |style="border:0px;background-color:#484800;width:32px;height:32px;color:#fff;text-align:center"|$568
| |
| |style="border:0px;background-color:#285900;width:32px;height:32px;color:#fff;text-align:center"|$569
| |
| |style="border:0px;background-color:#006600;width:32px;height:32px;color:#fff;text-align:center"|$56A
| |
| |style="border:0px;background-color:#00650D;width:32px;height:32px;color:#fff;text-align:center"|$56B
| |
| |style="border:0px;background-color:#00545E;width:32px;height:32px;color:#fff;text-align:center"|$56C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$56D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$56E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$56F
| |
| |-
| |
| |style="border:0px;background-color:#939393;width:32px;height:32px;color:#000;text-align:center"|$570
| |
| |style="border:0px;background-color:#1B5EB1;width:32px;height:32px;color:#fff;text-align:center"|$571
| |
| |style="border:0px;background-color:#4243D4;width:32px;height:32px;color:#fff;text-align:center"|$572
| |
| |style="border:0px;background-color:#6530D5;width:32px;height:32px;color:#fff;text-align:center"|$573
| |
| |style="border:0px;background-color:#8B27AE;width:32px;height:32px;color:#fff;text-align:center"|$574
| |
| |style="border:0px;background-color:#9A247A;width:32px;height:32px;color:#fff;text-align:center"|$575
| |
| |style="border:0px;background-color:#993828;width:32px;height:32px;color:#fff;text-align:center"|$576
| |
| |style="border:0px;background-color:#8A4700;width:32px;height:32px;color:#fff;text-align:center"|$577
| |
| |style="border:0px;background-color:#646500;width:32px;height:32px;color:#fff;text-align:center"|$578
| |
| |style="border:0px;background-color:#437401;width:32px;height:32px;color:#fff;text-align:center"|$579
| |
| |style="border:0px;background-color:#188101;width:32px;height:32px;color:#fff;text-align:center"|$57A
| |
| |style="border:0px;background-color:#0A7F2A;width:32px;height:32px;color:#fff;text-align:center"|$57B
| |
| |style="border:0px;background-color:#096F7D;width:32px;height:32px;color:#fff;text-align:center"|$57C
| |
| |style="border:0px;background-color:#0C0D08;width:32px;height:32px;color:#fff;text-align:center"|$57D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$57E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$57F
| |
| |-
| |
| |style="border:0px;background-color:#ABADAA;width:32px;height:32px;color:#000;text-align:center"|$580
| |
| |style="border:0px;background-color:#3778C9;width:32px;height:32px;color:#fff;text-align:center"|$581
| |
| |style="border:0px;background-color:#5C5DEE;width:32px;height:32px;color:#fff;text-align:center"|$582
| |
| |style="border:0px;background-color:#7F4CF0;width:32px;height:32px;color:#fff;text-align:center"|$583
| |
| |style="border:0px;background-color:#A440C7;width:32px;height:32px;color:#fff;text-align:center"|$584
| |
| |style="border:0px;background-color:#B44095;width:32px;height:32px;color:#fff;text-align:center"|$585
| |
| |style="border:0px;background-color:#B45343;width:32px;height:32px;color:#fff;text-align:center"|$586
| |
| |style="border:0px;background-color:#A56318;width:32px;height:32px;color:#fff;text-align:center"|$587
| |
| |style="border:0px;background-color:#7F8000;width:32px;height:32px;color:#fff;text-align:center"|$588
| |
| |style="border:0px;background-color:#5F9000;width:32px;height:32px;color:#fff;text-align:center"|$589
| |
| |style="border:0px;background-color:#329D11;width:32px;height:32px;color:#fff;text-align:center"|$58A
| |
| |style="border:0px;background-color:#249B41;width:32px;height:32px;color:#fff;text-align:center"|$58B
| |
| |style="border:0px;background-color:#228A97;width:32px;height:32px;color:#fff;text-align:center"|$58C
| |
| |style="border:0px;background-color:#282828;width:32px;height:32px;color:#fff;text-align:center"|$58D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$58E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$58F
| |
| |-
| |
| |style="border:0px;background-color:#C5C5C5;width:32px;height:32px;color:#000;text-align:center"|$590
| |
| |style="border:0px;background-color:#5093E2;width:32px;height:32px;color:#000;text-align:center"|$591
| |
| |style="border:0px;background-color:#7577FD;width:32px;height:32px;color:#000;text-align:center"|$592
| |
| |style="border:0px;background-color:#9A65FD;width:32px;height:32px;color:#000;text-align:center"|$593
| |
| |style="border:0px;background-color:#BF5BE2;width:32px;height:32px;color:#000;text-align:center"|$594
| |
| |style="border:0px;background-color:#CE5AAE;width:32px;height:32px;color:#000;text-align:center"|$595
| |
| |style="border:0px;background-color:#D16C62;width:32px;height:32px;color:#000;text-align:center"|$596
| |
| |style="border:0px;background-color:#BF7D33;width:32px;height:32px;color:#000;text-align:center"|$597
| |
| |style="border:0px;background-color:#9B9B05;width:32px;height:32px;color:#000;text-align:center"|$598
| |
| |style="border:0px;background-color:#79AA05;width:32px;height:32px;color:#000;text-align:center"|$599
| |
| |style="border:0px;background-color:#4DB72C;width:32px;height:32px;color:#000;text-align:center"|$59A
| |
| |style="border:0px;background-color:#3FB55E;width:32px;height:32px;color:#000;text-align:center"|$59B
| |
| |style="border:0px;background-color:#3DA5AF;width:32px;height:32px;color:#000;text-align:center"|$59C
| |
| |style="border:0px;background-color:#424242;width:32px;height:32px;color:#fff;text-align:center"|$59D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$59E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$59F
| |
| |-
| |
| |style="border:0px;background-color:#DFDFDF;width:32px;height:32px;color:#000;text-align:center"|$5A0
| |
| |style="border:0px;background-color:#6CADFD;width:32px;height:32px;color:#000;text-align:center"|$5A1
| |
| |style="border:0px;background-color:#9093FE;width:32px;height:32px;color:#000;text-align:center"|$5A2
| |
| |style="border:0px;background-color:#B581FE;width:32px;height:32px;color:#000;text-align:center"|$5A3
| |
| |style="border:0px;background-color:#D775FC;width:32px;height:32px;color:#000;text-align:center"|$5A4
| |
| |style="border:0px;background-color:#EA76CB;width:32px;height:32px;color:#000;text-align:center"|$5A5
| |
| |style="border:0px;background-color:#EA887D;width:32px;height:32px;color:#000;text-align:center"|$5A6
| |
| |style="border:0px;background-color:#DB954D;width:32px;height:32px;color:#000;text-align:center"|$5A7
| |
| |style="border:0px;background-color:#B4B722;width:32px;height:32px;color:#000;text-align:center"|$5A8
| |
| |style="border:0px;background-color:#94C522;width:32px;height:32px;color:#000;text-align:center"|$5A9
| |
| |style="border:0px;background-color:#6ACF4E;width:32px;height:32px;color:#000;text-align:center"|$5AA
| |
| |style="border:0px;background-color:#5ACF77;width:32px;height:32px;color:#000;text-align:center"|$5AB
| |
| |style="border:0px;background-color:#58BECA;width:32px;height:32px;color:#000;text-align:center"|$5AC
| |
| |style="border:0px;background-color:#5E5E5E;width:32px;height:32px;color:#fff;text-align:center"|$5AD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$5AE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$5AF
| |
| |-
| |
| |style="border:0px;background-color:#F5F8F7;width:32px;height:32px;color:#000;text-align:center"|$5B0
| |
| |style="border:0px;background-color:#84C6FE;width:32px;height:32px;color:#000;text-align:center"|$5B1
| |
| |style="border:0px;background-color:#A9ABFE;width:32px;height:32px;color:#000;text-align:center"|$5B2
| |
| |style="border:0px;background-color:#CC99FE;width:32px;height:32px;color:#000;text-align:center"|$5B3
| |
| |style="border:0px;background-color:#F191FF;width:32px;height:32px;color:#000;text-align:center"|$5B4
| |
| |style="border:0px;background-color:#FD90E3;width:32px;height:32px;color:#000;text-align:center"|$5B5
| |
| |style="border:0px;background-color:#FEA096;width:32px;height:32px;color:#000;text-align:center"|$5B6
| |
| |style="border:0px;background-color:#F2AF68;width:32px;height:32px;color:#000;text-align:center"|$5B7
| |
| |style="border:0px;background-color:#CBCF3A;width:32px;height:32px;color:#000;text-align:center"|$5B8
| |
| |style="border:0px;background-color:#ACDD3D;width:32px;height:32px;color:#000;text-align:center"|$5B9
| |
| |style="border:0px;background-color:#82E964;width:32px;height:32px;color:#000;text-align:center"|$5BA
| |
| |style="border:0px;background-color:#74E895;width:32px;height:32px;color:#000;text-align:center"|$5BB
| |
| |style="border:0px;background-color:#71D7E5;width:32px;height:32px;color:#000;text-align:center"|$5BC
| |
| |style="border:0px;background-color:#777777;width:32px;height:32px;color:#fff;text-align:center"|$5BD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$5BE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$5BF
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$5C0
| |
| |style="border:0px;background-color:#A0DDFE;width:32px;height:32px;color:#000;text-align:center"|$5C1
| |
| |style="border:0px;background-color:#C2C4FD;width:32px;height:32px;color:#000;text-align:center"|$5C2
| |
| |style="border:0px;background-color:#E4B4FE;width:32px;height:32px;color:#000;text-align:center"|$5C3
| |
| |style="border:0px;background-color:#FFABFF;width:32px;height:32px;color:#000;text-align:center"|$5C4
| |
| |style="border:0px;background-color:#FFABF9;width:32px;height:32px;color:#000;text-align:center"|$5C5
| |
| |style="border:0px;background-color:#FFBBB0;width:32px;height:32px;color:#000;text-align:center"|$5C6
| |
| |style="border:0px;background-color:#FFCA84;width:32px;height:32px;color:#000;text-align:center"|$5C7
| |
| |style="border:0px;background-color:#E5E45E;width:32px;height:32px;color:#000;text-align:center"|$5C8
| |
| |style="border:0px;background-color:#C5F35C;width:32px;height:32px;color:#000;text-align:center"|$5C9
| |
| |style="border:0px;background-color:#9FFD84;width:32px;height:32px;color:#000;text-align:center"|$5CA
| |
| |style="border:0px;background-color:#92FDAF;width:32px;height:32px;color:#000;text-align:center"|$5CB
| |
| |style="border:0px;background-color:#90EEF5;width:32px;height:32px;color:#000;text-align:center"|$5CC
| |
| |style="border:0px;background-color:#939391;width:32px;height:32px;color:#000;text-align:center"|$5CD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$5CE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$5CF
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$5D0
| |
| |style="border:0px;background-color:#BCF4FF;width:32px;height:32px;color:#000;text-align:center"|$5D1
| |
| |style="border:0px;background-color:#DCDCFE;width:32px;height:32px;color:#000;text-align:center"|$5D2
| |
| |style="border:0px;background-color:#FCCEFE;width:32px;height:32px;color:#000;text-align:center"|$5D3
| |
| |style="border:0px;background-color:#FFC4FE;width:32px;height:32px;color:#000;text-align:center"|$5D4
| |
| |style="border:0px;background-color:#FFC3FF;width:32px;height:32px;color:#000;text-align:center"|$5D5
| |
| |style="border:0px;background-color:#FFD3C8;width:32px;height:32px;color:#000;text-align:center"|$5D6
| |
| |style="border:0px;background-color:#FEE2A0;width:32px;height:32px;color:#000;text-align:center"|$5D7
| |
| |style="border:0px;background-color:#FDFC7A;width:32px;height:32px;color:#000;text-align:center"|$5D8
| |
| |style="border:0px;background-color:#DEFF7A;width:32px;height:32px;color:#000;text-align:center"|$5D9
| |
| |style="border:0px;background-color:#BAFE9D;width:32px;height:32px;color:#000;text-align:center"|$5DA
| |
| |style="border:0px;background-color:#AEFEC9;width:32px;height:32px;color:#000;text-align:center"|$5DB
| |
| |style="border:0px;background-color:#ABFFFF;width:32px;height:32px;color:#000;text-align:center"|$5DC
| |
| |style="border:0px;background-color:#AAADAC;width:32px;height:32px;color:#000;text-align:center"|$5DD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$5DE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$5DF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$5E0
| |
| |style="border:0px;background-color:#B52401;width:32px;height:32px;color:#fff;text-align:center"|$5E1
| |
| |style="border:0px;background-color:#605900;width:32px;height:32px;color:#fff;text-align:center"|$5E2
| |
| |style="border:0px;background-color:#118100;width:32px;height:32px;color:#fff;text-align:center"|$5E3
| |
| |style="border:0px;background-color:#009D00;width:32px;height:32px;color:#fff;text-align:center"|$5E4
| |
| |style="border:0px;background-color:#009D00;width:32px;height:32px;color:#fff;text-align:center"|$5E5
| |
| |style="border:0px;background-color:#007696;width:32px;height:32px;color:#fff;text-align:center"|$5E6
| |
| |style="border:0px;background-color:#0153FB;width:32px;height:32px;color:#fff;text-align:center"|$5E7
| |
| |style="border:0px;background-color:#121BFF;width:32px;height:32px;color:#fff;text-align:center"|$5E8
| |
| |style="border:0px;background-color:#5B01FE;width:32px;height:32px;color:#fff;text-align:center"|$5E9
| |
| |style="border:0px;background-color:#B900FE;width:32px;height:32px;color:#fff;text-align:center"|$5EA
| |
| |style="border:0px;background-color:#D90097;width:32px;height:32px;color:#fff;text-align:center"|$5EB
| |
| |style="border:0px;background-color:#DF0100;width:32px;height:32px;color:#fff;text-align:center"|$5EC
| |
| |style="border:0px;background-color:#C6C7C2;width:32px;height:32px;color:#000;text-align:center"|$5ED
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$5EE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$5EF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$5F0
| |
| |style="border:0px;background-color:#D24000;width:32px;height:32px;color:#fff;text-align:center"|$5F1
| |
| |style="border:0px;background-color:#7F7400;width:32px;height:32px;color:#fff;text-align:center"|$5F2
| |
| |style="border:0px;background-color:#2C9D00;width:32px;height:32px;color:#fff;text-align:center"|$5F3
| |
| |style="border:0px;background-color:#00B900;width:32px;height:32px;color:#fff;text-align:center"|$5F4
| |
| |style="border:0px;background-color:#00B800;width:32px;height:32px;color:#fff;text-align:center"|$5F5
| |
| |style="border:0px;background-color:#0192AD;width:32px;height:32px;color:#fff;text-align:center"|$5F6
| |
| |style="border:0px;background-color:#006EFE;width:32px;height:32px;color:#fff;text-align:center"|$5F7
| |
| |style="border:0px;background-color:#3635FD;width:32px;height:32px;color:#fff;text-align:center"|$5F8
| |
| |style="border:0px;background-color:#7D12FD;width:32px;height:32px;color:#fff;text-align:center"|$5F9
| |
| |style="border:0px;background-color:#DA00FE;width:32px;height:32px;color:#fff;text-align:center"|$5FA
| |
| |style="border:0px;background-color:#F900B1;width:32px;height:32px;color:#fff;text-align:center"|$5FB
| |
| |style="border:0px;background-color:#FB1A01;width:32px;height:32px;color:#fff;text-align:center"|$5FC
| |
| |style="border:0px;background-color:#DFDEE3;width:32px;height:32px;color:#000;text-align:center"|$5FD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$5FE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$5FF
| |
| |-
| |
| ! colspan=16 | Saturation level $6
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$600
| |
| |style="border:0px;background-color:#E15B00;width:32px;height:32px;color:#fff;text-align:center"|$601
| |
| |style="border:0px;background-color:#948E00;width:32px;height:32px;color:#fff;text-align:center"|$602
| |
| |style="border:0px;background-color:#4CB400;width:32px;height:32px;color:#000;text-align:center"|$603
| |
| |style="border:0px;background-color:#02CB01;width:32px;height:32px;color:#fff;text-align:center"|$604
| |
| |style="border:0px;background-color:#00CB21;width:32px;height:32px;color:#fff;text-align:center"|$605
| |
| |style="border:0px;background-color:#01A7BD;width:32px;height:32px;color:#fff;text-align:center"|$606
| |
| |style="border:0px;background-color:#0186FE;width:32px;height:32px;color:#fff;text-align:center"|$607
| |
| |style="border:0px;background-color:#514EFE;width:32px;height:32px;color:#fff;text-align:center"|$608
| |
| |style="border:0px;background-color:#8F2FFD;width:32px;height:32px;color:#fff;text-align:center"|$609
| |
| |style="border:0px;background-color:#E611FD;width:32px;height:32px;color:#fff;text-align:center"|$60A
| |
| |style="border:0px;background-color:#FE13C4;width:32px;height:32px;color:#fff;text-align:center"|$60B
| |
| |style="border:0px;background-color:#FE381B;width:32px;height:32px;color:#fff;text-align:center"|$60C
| |
| |style="border:0px;background-color:#EBEBEB;width:32px;height:32px;color:#000;text-align:center"|$60D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$60E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$60F
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$610
| |
| |style="border:0px;background-color:#F97500;width:32px;height:32px;color:#000;text-align:center"|$611
| |
| |style="border:0px;background-color:#ADA901;width:32px;height:32px;color:#000;text-align:center"|$612
| |
| |style="border:0px;background-color:#66CD01;width:32px;height:32px;color:#000;text-align:center"|$613
| |
| |style="border:0px;background-color:#1BE400;width:32px;height:32px;color:#000;text-align:center"|$614
| |
| |style="border:0px;background-color:#00E33A;width:32px;height:32px;color:#000;text-align:center"|$615
| |
| |style="border:0px;background-color:#00BFD9;width:32px;height:32px;color:#000;text-align:center"|$616
| |
| |style="border:0px;background-color:#1AA0FE;width:32px;height:32px;color:#000;text-align:center"|$617
| |
| |style="border:0px;background-color:#656AFE;width:32px;height:32px;color:#fff;text-align:center"|$618
| |
| |style="border:0px;background-color:#A748FC;width:32px;height:32px;color:#fff;text-align:center"|$619
| |
| |style="border:0px;background-color:#FB2DFE;width:32px;height:32px;color:#000;text-align:center"|$61A
| |
| |style="border:0px;background-color:#FF31DF;width:32px;height:32px;color:#000;text-align:center"|$61B
| |
| |style="border:0px;background-color:#FE523D;width:32px;height:32px;color:#000;text-align:center"|$61C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$61D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$61E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$61F
| |
| |-
| |
| |style="border:0px;background-color:#1A1A18;width:32px;height:32px;color:#fff;text-align:center"|$620
| |
| |style="border:0px;background-color:#FE8F00;width:32px;height:32px;color:#000;text-align:center"|$621
| |
| |style="border:0px;background-color:#C5C200;width:32px;height:32px;color:#000;text-align:center"|$622
| |
| |style="border:0px;background-color:#83E400;width:32px;height:32px;color:#000;text-align:center"|$623
| |
| |style="border:0px;background-color:#3BF901;width:32px;height:32px;color:#000;text-align:center"|$624
| |
| |style="border:0px;background-color:#1CFA57;width:32px;height:32px;color:#000;text-align:center"|$625
| |
| |style="border:0px;background-color:#1AD8F0;width:32px;height:32px;color:#000;text-align:center"|$626
| |
| |style="border:0px;background-color:#37BAFD;width:32px;height:32px;color:#000;text-align:center"|$627
| |
| |style="border:0px;background-color:#8681FE;width:32px;height:32px;color:#000;text-align:center"|$628
| |
| |style="border:0px;background-color:#C362FE;width:32px;height:32px;color:#000;text-align:center"|$629
| |
| |style="border:0px;background-color:#FD4BFE;width:32px;height:32px;color:#000;text-align:center"|$62A
| |
| |style="border:0px;background-color:#FE4EEE;width:32px;height:32px;color:#000;text-align:center"|$62B
| |
| |style="border:0px;background-color:#FE7250;width:32px;height:32px;color:#000;text-align:center"|$62C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$62D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$62E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$62F
| |
| |-
| |
| |style="border:0px;background-color:#363636;width:32px;height:32px;color:#fff;text-align:center"|$630
| |
| |style="border:0px;background-color:#000152;width:32px;height:32px;color:#fff;text-align:center"|$631
| |
| |style="border:0px;background-color:#00007E;width:32px;height:32px;color:#fff;text-align:center"|$632
| |
| |style="border:0px;background-color:#02017B;width:32px;height:32px;color:#fff;text-align:center"|$633
| |
| |style="border:0px;background-color:#2B0052;width:32px;height:32px;color:#fff;text-align:center"|$634
| |
| |style="border:0px;background-color:#3F001B;width:32px;height:32px;color:#fff;text-align:center"|$635
| |
| |style="border:0px;background-color:#3C0000;width:32px;height:32px;color:#fff;text-align:center"|$636
| |
| |style="border:0px;background-color:#2A0001;width:32px;height:32px;color:#fff;text-align:center"|$637
| |
| |style="border:0px;background-color:#010100;width:32px;height:32px;color:#fff;text-align:center"|$638
| |
| |style="border:0px;background-color:#001201;width:32px;height:32px;color:#fff;text-align:center"|$639
| |
| |style="border:0px;background-color:#002100;width:32px;height:32px;color:#fff;text-align:center"|$63A
| |
| |style="border:0px;background-color:#001F00;width:32px;height:32px;color:#fff;text-align:center"|$63B
| |
| |style="border:0px;background-color:#000E1B;width:32px;height:32px;color:#fff;text-align:center"|$63C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$63D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$63E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$63F
| |
| |-
| |
| |style="border:0px;background-color:#525252;width:32px;height:32px;color:#fff;text-align:center"|$640
| |
| |style="border:0px;background-color:#000D72;width:32px;height:32px;color:#fff;text-align:center"|$641
| |
| |style="border:0px;background-color:#000095;width:32px;height:32px;color:#fff;text-align:center"|$642
| |
| |style="border:0px;background-color:#180099;width:32px;height:32px;color:#fff;text-align:center"|$643
| |
| |style="border:0px;background-color:#43006A;width:32px;height:32px;color:#fff;text-align:center"|$644
| |
| |style="border:0px;background-color:#540031;width:32px;height:32px;color:#fff;text-align:center"|$645
| |
| |style="border:0px;background-color:#540000;width:32px;height:32px;color:#fff;text-align:center"|$646
| |
| |style="border:0px;background-color:#440001;width:32px;height:32px;color:#fff;text-align:center"|$647
| |
| |style="border:0px;background-color:#151701;width:32px;height:32px;color:#fff;text-align:center"|$648
| |
| |style="border:0px;background-color:#002B02;width:32px;height:32px;color:#fff;text-align:center"|$649
| |
| |style="border:0px;background-color:#003800;width:32px;height:32px;color:#fff;text-align:center"|$64A
| |
| |style="border:0px;background-color:#003600;width:32px;height:32px;color:#fff;text-align:center"|$64B
| |
| |style="border:0px;background-color:#002132;width:32px;height:32px;color:#fff;text-align:center"|$64C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$64D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$64E
| |
| |style="border:0px;background-color:#000002;width:32px;height:32px;color:#fff;text-align:center"|$64F
| |
| |-
| |
| |style="border:0px;background-color:#6B6B6B;width:32px;height:32px;color:#fff;text-align:center"|$650
| |
| |style="border:0px;background-color:#012989;width:32px;height:32px;color:#fff;text-align:center"|$651
| |
| |style="border:0px;background-color:#080AB5;width:32px;height:32px;color:#fff;text-align:center"|$652
| |
| |style="border:0px;background-color:#3100B5;width:32px;height:32px;color:#fff;text-align:center"|$653
| |
| |style="border:0px;background-color:#5D0087;width:32px;height:32px;color:#fff;text-align:center"|$654
| |
| |style="border:0px;background-color:#6F004B;width:32px;height:32px;color:#fff;text-align:center"|$655
| |
| |style="border:0px;background-color:#6E0000;width:32px;height:32px;color:#fff;text-align:center"|$656
| |
| |style="border:0px;background-color:#5D1101;width:32px;height:32px;color:#fff;text-align:center"|$657
| |
| |style="border:0px;background-color:#2F3100;width:32px;height:32px;color:#fff;text-align:center"|$658
| |
| |style="border:0px;background-color:#094500;width:32px;height:32px;color:#fff;text-align:center"|$659
| |
| |style="border:0px;background-color:#005300;width:32px;height:32px;color:#fff;text-align:center"|$65A
| |
| |style="border:0px;background-color:#005100;width:32px;height:32px;color:#fff;text-align:center"|$65B
| |
| |style="border:0px;background-color:#013C4A;width:32px;height:32px;color:#fff;text-align:center"|$65C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$65D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$65E
| |
| |style="border:0px;background-color:#000002;width:32px;height:32px;color:#fff;text-align:center"|$65F
| |
| |-
| |
| |style="border:0px;background-color:#868686;width:32px;height:32px;color:#000;text-align:center"|$660
| |
| |style="border:0px;background-color:#0044A4;width:32px;height:32px;color:#fff;text-align:center"|$661
| |
| |style="border:0px;background-color:#2124D5;width:32px;height:32px;color:#fff;text-align:center"|$662
| |
| |style="border:0px;background-color:#4D10D3;width:32px;height:32px;color:#fff;text-align:center"|$663
| |
| |style="border:0px;background-color:#7903A5;width:32px;height:32px;color:#fff;text-align:center"|$664
| |
| |style="border:0px;background-color:#8E0169;width:32px;height:32px;color:#fff;text-align:center"|$665
| |
| |style="border:0px;background-color:#8D1709;width:32px;height:32px;color:#fff;text-align:center"|$666
| |
| |style="border:0px;background-color:#7A2B00;width:32px;height:32px;color:#fff;text-align:center"|$667
| |
| |style="border:0px;background-color:#4C4D00;width:32px;height:32px;color:#fff;text-align:center"|$668
| |
| |style="border:0px;background-color:#266202;width:32px;height:32px;color:#fff;text-align:center"|$669
| |
| |style="border:0px;background-color:#007101;width:32px;height:32px;color:#fff;text-align:center"|$66A
| |
| |style="border:0px;background-color:#006F06;width:32px;height:32px;color:#fff;text-align:center"|$66B
| |
| |style="border:0px;background-color:#015A6C;width:32px;height:32px;color:#fff;text-align:center"|$66C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$66D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$66E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$66F
| |
| |-
| |
| |style="border:0px;background-color:#9F9F9F;width:32px;height:32px;color:#000;text-align:center"|$670
| |
| |style="border:0px;background-color:#1260C1;width:32px;height:32px;color:#fff;text-align:center"|$671
| |
| |style="border:0px;background-color:#3D41EA;width:32px;height:32px;color:#fff;text-align:center"|$672
| |
| |style="border:0px;background-color:#682BED;width:32px;height:32px;color:#fff;text-align:center"|$673
| |
| |style="border:0px;background-color:#931FBE;width:32px;height:32px;color:#fff;text-align:center"|$674
| |
| |style="border:0px;background-color:#A81D84;width:32px;height:32px;color:#fff;text-align:center"|$675
| |
| |style="border:0px;background-color:#A83224;width:32px;height:32px;color:#fff;text-align:center"|$676
| |
| |style="border:0px;background-color:#944500;width:32px;height:32px;color:#fff;text-align:center"|$677
| |
| |style="border:0px;background-color:#676900;width:32px;height:32px;color:#fff;text-align:center"|$678
| |
| |style="border:0px;background-color:#417B01;width:32px;height:32px;color:#fff;text-align:center"|$679
| |
| |style="border:0px;background-color:#0F8A01;width:32px;height:32px;color:#fff;text-align:center"|$67A
| |
| |style="border:0px;background-color:#008723;width:32px;height:32px;color:#fff;text-align:center"|$67B
| |
| |style="border:0px;background-color:#007581;width:32px;height:32px;color:#fff;text-align:center"|$67C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$67D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$67E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$67F
| |
| |-
| |
| |style="border:0px;background-color:#BABABA;width:32px;height:32px;color:#000;text-align:center"|$680
| |
| |style="border:0px;background-color:#2D7CDC;width:32px;height:32px;color:#fff;text-align:center"|$681
| |
| |style="border:0px;background-color:#5A5BFE;width:32px;height:32px;color:#fff;text-align:center"|$682
| |
| |style="border:0px;background-color:#8446FD;width:32px;height:32px;color:#fff;text-align:center"|$683
| |
| |style="border:0px;background-color:#AF39D9;width:32px;height:32px;color:#fff;text-align:center"|$684
| |
| |style="border:0px;background-color:#C3389D;width:32px;height:32px;color:#fff;text-align:center"|$685
| |
| |style="border:0px;background-color:#C44F3E;width:32px;height:32px;color:#fff;text-align:center"|$686
| |
| |style="border:0px;background-color:#AF6208;width:32px;height:32px;color:#fff;text-align:center"|$687
| |
| |style="border:0px;background-color:#838500;width:32px;height:32px;color:#fff;text-align:center"|$688
| |
| |style="border:0px;background-color:#5D9800;width:32px;height:32px;color:#fff;text-align:center"|$689
| |
| |style="border:0px;background-color:#2CA603;width:32px;height:32px;color:#fff;text-align:center"|$68A
| |
| |style="border:0px;background-color:#18A43E;width:32px;height:32px;color:#fff;text-align:center"|$68B
| |
| |style="border:0px;background-color:#16909F;width:32px;height:32px;color:#fff;text-align:center"|$68C
| |
| |style="border:0px;background-color:#1A1A1C;width:32px;height:32px;color:#fff;text-align:center"|$68D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$68E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$68F
| |
| |-
| |
| |style="border:0px;background-color:#D2D2D4;width:32px;height:32px;color:#000;text-align:center"|$690
| |
| |style="border:0px;background-color:#4596F6;width:32px;height:32px;color:#000;text-align:center"|$691
| |
| |style="border:0px;background-color:#7476FF;width:32px;height:32px;color:#000;text-align:center"|$692
| |
| |style="border:0px;background-color:#9D60FE;width:32px;height:32px;color:#000;text-align:center"|$693
| |
| |style="border:0px;background-color:#C953F5;width:32px;height:32px;color:#000;text-align:center"|$694
| |
| |style="border:0px;background-color:#DD52B9;width:32px;height:32px;color:#000;text-align:center"|$695
| |
| |style="border:0px;background-color:#E0685A;width:32px;height:32px;color:#000;text-align:center"|$696
| |
| |style="border:0px;background-color:#CB7B22;width:32px;height:32px;color:#000;text-align:center"|$697
| |
| |style="border:0px;background-color:#9EA000;width:32px;height:32px;color:#000;text-align:center"|$698
| |
| |style="border:0px;background-color:#76B200;width:32px;height:32px;color:#000;text-align:center"|$699
| |
| |style="border:0px;background-color:#45C01B;width:32px;height:32px;color:#000;text-align:center"|$69A
| |
| |style="border:0px;background-color:#32BF54;width:32px;height:32px;color:#000;text-align:center"|$69B
| |
| |style="border:0px;background-color:#2FABB5;width:32px;height:32px;color:#000;text-align:center"|$69C
| |
| |style="border:0px;background-color:#353535;width:32px;height:32px;color:#fff;text-align:center"|$69D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$69E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$69F
| |
| |-
| |
| |style="border:0px;background-color:#EBEBEB;width:32px;height:32px;color:#000;text-align:center"|$6A0
| |
| |style="border:0px;background-color:#61B0FE;width:32px;height:32px;color:#000;text-align:center"|$6A1
| |
| |style="border:0px;background-color:#8D90FD;width:32px;height:32px;color:#000;text-align:center"|$6A2
| |
| |style="border:0px;background-color:#B77CFD;width:32px;height:32px;color:#000;text-align:center"|$6A3
| |
| |style="border:0px;background-color:#E16EFF;width:32px;height:32px;color:#000;text-align:center"|$6A4
| |
| |style="border:0px;background-color:#F56ED1;width:32px;height:32px;color:#000;text-align:center"|$6A5
| |
| |style="border:0px;background-color:#F48473;width:32px;height:32px;color:#000;text-align:center"|$6A6
| |
| |style="border:0px;background-color:#E39540;width:32px;height:32px;color:#000;text-align:center"|$6A7
| |
| |style="border:0px;background-color:#B8B708;width:32px;height:32px;color:#000;text-align:center"|$6A8
| |
| |style="border:0px;background-color:#92CA07;width:32px;height:32px;color:#000;text-align:center"|$6A9
| |
| |style="border:0px;background-color:#60D935;width:32px;height:32px;color:#000;text-align:center"|$6AA
| |
| |style="border:0px;background-color:#4DD96D;width:32px;height:32px;color:#000;text-align:center"|$6AB
| |
| |style="border:0px;background-color:#4CC4D2;width:32px;height:32px;color:#000;text-align:center"|$6AC
| |
| |style="border:0px;background-color:#515151;width:32px;height:32px;color:#fff;text-align:center"|$6AD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$6AE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$6AF
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$6B0
| |
| |style="border:0px;background-color:#7CC8FF;width:32px;height:32px;color:#000;text-align:center"|$6B1
| |
| |style="border:0px;background-color:#A6A9FD;width:32px;height:32px;color:#000;text-align:center"|$6B2
| |
| |style="border:0px;background-color:#CE95FE;width:32px;height:32px;color:#000;text-align:center"|$6B3
| |
| |style="border:0px;background-color:#F88AFD;width:32px;height:32px;color:#000;text-align:center"|$6B4
| |
| |style="border:0px;background-color:#FF88E9;width:32px;height:32px;color:#000;text-align:center"|$6B5
| |
| |style="border:0px;background-color:#FF9C8D;width:32px;height:32px;color:#000;text-align:center"|$6B6
| |
| |style="border:0px;background-color:#FBAF59;width:32px;height:32px;color:#000;text-align:center"|$6B7
| |
| |style="border:0px;background-color:#CED125;width:32px;height:32px;color:#000;text-align:center"|$6B8
| |
| |style="border:0px;background-color:#A7E422;width:32px;height:32px;color:#000;text-align:center"|$6B9
| |
| |style="border:0px;background-color:#79F155;width:32px;height:32px;color:#000;text-align:center"|$6BA
| |
| |style="border:0px;background-color:#67EF8E;width:32px;height:32px;color:#000;text-align:center"|$6BB
| |
| |style="border:0px;background-color:#69D9EE;width:32px;height:32px;color:#000;text-align:center"|$6BC
| |
| |style="border:0px;background-color:#696B67;width:32px;height:32px;color:#fff;text-align:center"|$6BD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$6BE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$6BF
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$6C0
| |
| |style="border:0px;background-color:#96E0FF;width:32px;height:32px;color:#000;text-align:center"|$6C1
| |
| |style="border:0px;background-color:#C1C3FE;width:32px;height:32px;color:#000;text-align:center"|$6C2
| |
| |style="border:0px;background-color:#E6B0FE;width:32px;height:32px;color:#000;text-align:center"|$6C3
| |
| |style="border:0px;background-color:#FEA4FE;width:32px;height:32px;color:#000;text-align:center"|$6C4
| |
| |style="border:0px;background-color:#FEA4FE;width:32px;height:32px;color:#000;text-align:center"|$6C5
| |
| |style="border:0px;background-color:#FEB7A9;width:32px;height:32px;color:#000;text-align:center"|$6C6
| |
| |style="border:0px;background-color:#FEC875;width:32px;height:32px;color:#000;text-align:center"|$6C7
| |
| |style="border:0px;background-color:#E6E943;width:32px;height:32px;color:#000;text-align:center"|$6C8
| |
| |style="border:0px;background-color:#C2F843;width:32px;height:32px;color:#000;text-align:center"|$6C9
| |
| |style="border:0px;background-color:#96FE73;width:32px;height:32px;color:#000;text-align:center"|$6CA
| |
| |style="border:0px;background-color:#85FEA5;width:32px;height:32px;color:#000;text-align:center"|$6CB
| |
| |style="border:0px;background-color:#85F1FE;width:32px;height:32px;color:#000;text-align:center"|$6CC
| |
| |style="border:0px;background-color:#858487;width:32px;height:32px;color:#000;text-align:center"|$6CD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$6CE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$6CF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$6D0
| |
| |style="border:0px;background-color:#890800;width:32px;height:32px;color:#fff;text-align:center"|$6D1
| |
| |style="border:0px;background-color:#413B01;width:32px;height:32px;color:#fff;text-align:center"|$6D2
| |
| |style="border:0px;background-color:#005F00;width:32px;height:32px;color:#fff;text-align:center"|$6D3
| |
| |style="border:0px;background-color:#017301;width:32px;height:32px;color:#fff;text-align:center"|$6D4
| |
| |style="border:0px;background-color:#007502;width:32px;height:32px;color:#fff;text-align:center"|$6D5
| |
| |style="border:0px;background-color:#015369;width:32px;height:32px;color:#fff;text-align:center"|$6D6
| |
| |style="border:0px;background-color:#0134C3;width:32px;height:32px;color:#fff;text-align:center"|$6D7
| |
| |style="border:0px;background-color:#0100FE;width:32px;height:32px;color:#fff;text-align:center"|$6D8
| |
| |style="border:0px;background-color:#3B00FE;width:32px;height:32px;color:#fff;text-align:center"|$6D9
| |
| |style="border:0px;background-color:#8E00D1;width:32px;height:32px;color:#fff;text-align:center"|$6DA
| |
| |style="border:0px;background-color:#A9006F;width:32px;height:32px;color:#fff;text-align:center"|$6DB
| |
| |style="border:0px;background-color:#AE0001;width:32px;height:32px;color:#fff;text-align:center"|$6DC
| |
| |style="border:0px;background-color:#9EA09F;width:32px;height:32px;color:#000;text-align:center"|$6DD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$6DE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$6DF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$6E0
| |
| |style="border:0px;background-color:#A62300;width:32px;height:32px;color:#fff;text-align:center"|$6E1
| |
| |style="border:0px;background-color:#5E5900;width:32px;height:32px;color:#fff;text-align:center"|$6E2
| |
| |style="border:0px;background-color:#167C00;width:32px;height:32px;color:#fff;text-align:center"|$6E3
| |
| |style="border:0px;background-color:#009100;width:32px;height:32px;color:#fff;text-align:center"|$6E4
| |
| |style="border:0px;background-color:#009201;width:32px;height:32px;color:#fff;text-align:center"|$6E5
| |
| |style="border:0px;background-color:#006F83;width:32px;height:32px;color:#fff;text-align:center"|$6E6
| |
| |style="border:0px;background-color:#0050E1;width:32px;height:32px;color:#fff;text-align:center"|$6E7
| |
| |style="border:0px;background-color:#1917FF;width:32px;height:32px;color:#fff;text-align:center"|$6E8
| |
| |style="border:0px;background-color:#5800FF;width:32px;height:32px;color:#fff;text-align:center"|$6E9
| |
| |style="border:0px;background-color:#AD00EA;width:32px;height:32px;color:#fff;text-align:center"|$6EA
| |
| |style="border:0px;background-color:#C9008E;width:32px;height:32px;color:#fff;text-align:center"|$6EB
| |
| |style="border:0px;background-color:#CD0300;width:32px;height:32px;color:#fff;text-align:center"|$6EC
| |
| |style="border:0px;background-color:#B8BAB9;width:32px;height:32px;color:#000;text-align:center"|$6ED
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$6EE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$6EF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$6F0
| |
| |style="border:0px;background-color:#C44000;width:32px;height:32px;color:#fff;text-align:center"|$6F1
| |
| |style="border:0px;background-color:#797400;width:32px;height:32px;color:#fff;text-align:center"|$6F2
| |
| |style="border:0px;background-color:#2F9A01;width:32px;height:32px;color:#fff;text-align:center"|$6F3
| |
| |style="border:0px;background-color:#00AE01;width:32px;height:32px;color:#fff;text-align:center"|$6F4
| |
| |style="border:0px;background-color:#01AD0A;width:32px;height:32px;color:#fff;text-align:center"|$6F5
| |
| |style="border:0px;background-color:#008BA6;width:32px;height:32px;color:#fff;text-align:center"|$6F6
| |
| |style="border:0px;background-color:#016BFD;width:32px;height:32px;color:#fff;text-align:center"|$6F7
| |
| |style="border:0px;background-color:#3134FD;width:32px;height:32px;color:#fff;text-align:center"|$6F8
| |
| |style="border:0px;background-color:#7413FE;width:32px;height:32px;color:#fff;text-align:center"|$6F9
| |
| |style="border:0px;background-color:#CA00FE;width:32px;height:32px;color:#fff;text-align:center"|$6FA
| |
| |style="border:0px;background-color:#E600A9;width:32px;height:32px;color:#fff;text-align:center"|$6FB
| |
| |style="border:0px;background-color:#EB1D05;width:32px;height:32px;color:#fff;text-align:center"|$6FC
| |
| |style="border:0px;background-color:#D3D3D3;width:32px;height:32px;color:#000;text-align:center"|$6FD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$6FE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$6FF
| |
| |-
| |
| ! colspan=16 | Saturation level $7
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$700
| |
| |style="border:0px;background-color:#D75A00;width:32px;height:32px;color:#fff;text-align:center"|$701
| |
| |style="border:0px;background-color:#918C01;width:32px;height:32px;color:#fff;text-align:center"|$702
| |
| |style="border:0px;background-color:#4EAE00;width:32px;height:32px;color:#fff;text-align:center"|$703
| |
| |style="border:0px;background-color:#09C101;width:32px;height:32px;color:#fff;text-align:center"|$704
| |
| |style="border:0px;background-color:#00C126;width:32px;height:32px;color:#fff;text-align:center"|$705
| |
| |style="border:0px;background-color:#00A0B6;width:32px;height:32px;color:#fff;text-align:center"|$706
| |
| |style="border:0px;background-color:#0884FD;width:32px;height:32px;color:#fff;text-align:center"|$707
| |
| |style="border:0px;background-color:#4D4EFE;width:32px;height:32px;color:#fff;text-align:center"|$708
| |
| |style="border:0px;background-color:#8C30FE;width:32px;height:32px;color:#fff;text-align:center"|$709
| |
| |style="border:0px;background-color:#D91AFE;width:32px;height:32px;color:#fff;text-align:center"|$70A
| |
| |style="border:0px;background-color:#F51BBA;width:32px;height:32px;color:#fff;text-align:center"|$70B
| |
| |style="border:0px;background-color:#F93B2A;width:32px;height:32px;color:#fff;text-align:center"|$70C
| |
| |style="border:0px;background-color:#DFE0DB;width:32px;height:32px;color:#000;text-align:center"|$70D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$70E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$70F
| |
| |-
| |
| |style="border:0px;background-color:#0C0C0C;width:32px;height:32px;color:#fff;text-align:center"|$710
| |
| |style="border:0px;background-color:#E97900;width:32px;height:32px;color:#000;text-align:center"|$711
| |
| |style="border:0px;background-color:#A9A601;width:32px;height:32px;color:#000;text-align:center"|$712
| |
| |style="border:0px;background-color:#69C501;width:32px;height:32px;color:#000;text-align:center"|$713
| |
| |style="border:0px;background-color:#26DA00;width:32px;height:32px;color:#000;text-align:center"|$714
| |
| |style="border:0px;background-color:#0AD943;width:32px;height:32px;color:#000;text-align:center"|$715
| |
| |style="border:0px;background-color:#0ABAD3;width:32px;height:32px;color:#000;text-align:center"|$716
| |
| |style="border:0px;background-color:#279BFD;width:32px;height:32px;color:#000;text-align:center"|$717
| |
| |style="border:0px;background-color:#6D68FD;width:32px;height:32px;color:#fff;text-align:center"|$718
| |
| |style="border:0px;background-color:#AB4BFE;width:32px;height:32px;color:#fff;text-align:center"|$719
| |
| |style="border:0px;background-color:#F534FE;width:32px;height:32px;color:#000;text-align:center"|$71A
| |
| |style="border:0px;background-color:#FE37D0;width:32px;height:32px;color:#000;text-align:center"|$71B
| |
| |style="border:0px;background-color:#FF583A;width:32px;height:32px;color:#000;text-align:center"|$71C
| |
| |style="border:0px;background-color:#F8F7FC;width:32px;height:32px;color:#000;text-align:center"|$71D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$71E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$71F
| |
| |-
| |
| |style="border:0px;background-color:#2A2823;width:32px;height:32px;color:#fff;text-align:center"|$720
| |
| |style="border:0px;background-color:#FF9103;width:32px;height:32px;color:#000;text-align:center"|$721
| |
| |style="border:0px;background-color:#C3C000;width:32px;height:32px;color:#000;text-align:center"|$722
| |
| |style="border:0px;background-color:#83DF00;width:32px;height:32px;color:#000;text-align:center"|$723
| |
| |style="border:0px;background-color:#41F203;width:32px;height:32px;color:#000;text-align:center"|$724
| |
| |style="border:0px;background-color:#27F35E;width:32px;height:32px;color:#000;text-align:center"|$725
| |
| |style="border:0px;background-color:#24D4EC;width:32px;height:32px;color:#000;text-align:center"|$726
| |
| |style="border:0px;background-color:#41B7FE;width:32px;height:32px;color:#000;text-align:center"|$727
| |
| |style="border:0px;background-color:#8C80FE;width:32px;height:32px;color:#000;text-align:center"|$728
| |
| |style="border:0px;background-color:#C865FE;width:32px;height:32px;color:#000;text-align:center"|$729
| |
| |style="border:0px;background-color:#FE52FE;width:32px;height:32px;color:#000;text-align:center"|$72A
| |
| |style="border:0px;background-color:#FD55E0;width:32px;height:32px;color:#000;text-align:center"|$72B
| |
| |style="border:0px;background-color:#FF7651;width:32px;height:32px;color:#000;text-align:center"|$72C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$72D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$72E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$72F
| |
| |-
| |
| |style="border:0px;background-color:#424443;width:32px;height:32px;color:#fff;text-align:center"|$730
| |
| |style="border:0px;background-color:#FFAB1D;width:32px;height:32px;color:#000;text-align:center"|$731
| |
| |style="border:0px;background-color:#DDD800;width:32px;height:32px;color:#000;text-align:center"|$732
| |
| |style="border:0px;background-color:#9DF701;width:32px;height:32px;color:#000;text-align:center"|$733
| |
| |style="border:0px;background-color:#5DFE1F;width:32px;height:32px;color:#000;text-align:center"|$734
| |
| |style="border:0px;background-color:#43FF77;width:32px;height:32px;color:#000;text-align:center"|$735
| |
| |style="border:0px;background-color:#40EBFD;width:32px;height:32px;color:#000;text-align:center"|$736
| |
| |style="border:0px;background-color:#5DCFFE;width:32px;height:32px;color:#000;text-align:center"|$737
| |
| |style="border:0px;background-color:#A09EFE;width:32px;height:32px;color:#000;text-align:center"|$738
| |
| |style="border:0px;background-color:#D683FE;width:32px;height:32px;color:#000;text-align:center"|$739
| |
| |style="border:0px;background-color:#FE6EFE;width:32px;height:32px;color:#000;text-align:center"|$73A
| |
| |style="border:0px;background-color:#FF70FE;width:32px;height:32px;color:#000;text-align:center"|$73B
| |
| |style="border:0px;background-color:#FF8E75;width:32px;height:32px;color:#000;text-align:center"|$73C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$73D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$73E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$73F
| |
| |-
| |
| |style="border:0px;background-color:#5E5D63;width:32px;height:32px;color:#fff;text-align:center"|$740
| |
| |style="border:0px;background-color:#00127C;width:32px;height:32px;color:#fff;text-align:center"|$741
| |
| |style="border:0px;background-color:#0000B6;width:32px;height:32px;color:#fff;text-align:center"|$742
| |
| |style="border:0px;background-color:#1D00B2;width:32px;height:32px;color:#fff;text-align:center"|$743
| |
| |style="border:0px;background-color:#4F0080;width:32px;height:32px;color:#fff;text-align:center"|$744
| |
| |style="border:0px;background-color:#630039;width:32px;height:32px;color:#fff;text-align:center"|$745
| |
| |style="border:0px;background-color:#640000;width:32px;height:32px;color:#fff;text-align:center"|$746
| |
| |style="border:0px;background-color:#4F0101;width:32px;height:32px;color:#fff;text-align:center"|$747
| |
| |style="border:0px;background-color:#1C1B01;width:32px;height:32px;color:#fff;text-align:center"|$748
| |
| |style="border:0px;background-color:#003201;width:32px;height:32px;color:#fff;text-align:center"|$749
| |
| |style="border:0px;background-color:#014301;width:32px;height:32px;color:#fff;text-align:center"|$74A
| |
| |style="border:0px;background-color:#004102;width:32px;height:32px;color:#fff;text-align:center"|$74B
| |
| |style="border:0px;background-color:#012837;width:32px;height:32px;color:#fff;text-align:center"|$74C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$74D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$74E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$74F
| |
| |-
| |
| |style="border:0px;background-color:#797979;width:32px;height:32px;color:#fff;text-align:center"|$750
| |
| |style="border:0px;background-color:#012D98;width:32px;height:32px;color:#fff;text-align:center"|$751
| |
| |style="border:0px;background-color:#0609C9;width:32px;height:32px;color:#fff;text-align:center"|$752
| |
| |style="border:0px;background-color:#3700CD;width:32px;height:32px;color:#fff;text-align:center"|$753
| |
| |style="border:0px;background-color:#690099;width:32px;height:32px;color:#fff;text-align:center"|$754
| |
| |style="border:0px;background-color:#7E0054;width:32px;height:32px;color:#fff;text-align:center"|$755
| |
| |style="border:0px;background-color:#7E0001;width:32px;height:32px;color:#fff;text-align:center"|$756
| |
| |style="border:0px;background-color:#691000;width:32px;height:32px;color:#fff;text-align:center"|$757
| |
| |style="border:0px;background-color:#343700;width:32px;height:32px;color:#fff;text-align:center"|$758
| |
| |style="border:0px;background-color:#094C00;width:32px;height:32px;color:#fff;text-align:center"|$759
| |
| |style="border:0px;background-color:#005E00;width:32px;height:32px;color:#fff;text-align:center"|$75A
| |
| |style="border:0px;background-color:#005A00;width:32px;height:32px;color:#fff;text-align:center"|$75B
| |
| |style="border:0px;background-color:#004352;width:32px;height:32px;color:#fff;text-align:center"|$75C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$75D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$75E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$75F
| |
| |-
| |
| |style="border:0px;background-color:#939393;width:32px;height:32px;color:#000;text-align:center"|$760
| |
| |style="border:0px;background-color:#0047BB;width:32px;height:32px;color:#fff;text-align:center"|$761
| |
| |style="border:0px;background-color:#2124EC;width:32px;height:32px;color:#fff;text-align:center"|$762
| |
| |style="border:0px;background-color:#530AEA;width:32px;height:32px;color:#fff;text-align:center"|$763
| |
| |style="border:0px;background-color:#8700B7;width:32px;height:32px;color:#fff;text-align:center"|$764
| |
| |style="border:0px;background-color:#9C006E;width:32px;height:32px;color:#fff;text-align:center"|$765
| |
| |style="border:0px;background-color:#9B1400;width:32px;height:32px;color:#fff;text-align:center"|$766
| |
| |style="border:0px;background-color:#872A00;width:32px;height:32px;color:#fff;text-align:center"|$767
| |
| |style="border:0px;background-color:#525100;width:32px;height:32px;color:#fff;text-align:center"|$768
| |
| |style="border:0px;background-color:#246801;width:32px;height:32px;color:#fff;text-align:center"|$769
| |
| |style="border:0px;background-color:#007900;width:32px;height:32px;color:#fff;text-align:center"|$76A
| |
| |style="border:0px;background-color:#007800;width:32px;height:32px;color:#fff;text-align:center"|$76B
| |
| |style="border:0px;background-color:#005F71;width:32px;height:32px;color:#fff;text-align:center"|$76C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$76D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$76E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$76F
| |
| |-
| |
| |style="border:0px;background-color:#ACABAF;width:32px;height:32px;color:#000;text-align:center"|$770
| |
| |style="border:0px;background-color:#0563D0;width:32px;height:32px;color:#fff;text-align:center"|$771
| |
| |style="border:0px;background-color:#3B3CFE;width:32px;height:32px;color:#fff;text-align:center"|$772
| |
| |style="border:0px;background-color:#7023FE;width:32px;height:32px;color:#fff;text-align:center"|$773
| |
| |style="border:0px;background-color:#A015CF;width:32px;height:32px;color:#fff;text-align:center"|$774
| |
| |style="border:0px;background-color:#B7168B;width:32px;height:32px;color:#fff;text-align:center"|$775
| |
| |style="border:0px;background-color:#B62E19;width:32px;height:32px;color:#fff;text-align:center"|$776
| |
| |style="border:0px;background-color:#A14401;width:32px;height:32px;color:#fff;text-align:center"|$777
| |
| |style="border:0px;background-color:#6D6C00;width:32px;height:32px;color:#fff;text-align:center"|$778
| |
| |style="border:0px;background-color:#3E8300;width:32px;height:32px;color:#fff;text-align:center"|$779
| |
| |style="border:0px;background-color:#069400;width:32px;height:32px;color:#fff;text-align:center"|$77A
| |
| |style="border:0px;background-color:#00931B;width:32px;height:32px;color:#fff;text-align:center"|$77B
| |
| |style="border:0px;background-color:#007B8B;width:32px;height:32px;color:#fff;text-align:center"|$77C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$77D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$77E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$77F
| |
| |-
| |
| |style="border:0px;background-color:#C5C5C5;width:32px;height:32px;color:#000;text-align:center"|$780
| |
| |style="border:0px;background-color:#227EEF;width:32px;height:32px;color:#fff;text-align:center"|$781
| |
| |style="border:0px;background-color:#5459FE;width:32px;height:32px;color:#fff;text-align:center"|$782
| |
| |style="border:0px;background-color:#883FFD;width:32px;height:32px;color:#fff;text-align:center"|$783
| |
| |style="border:0px;background-color:#BD31EB;width:32px;height:32px;color:#fff;text-align:center"|$784
| |
| |style="border:0px;background-color:#D031A8;width:32px;height:32px;color:#fff;text-align:center"|$785
| |
| |style="border:0px;background-color:#D34A37;width:32px;height:32px;color:#fff;text-align:center"|$786
| |
| |style="border:0px;background-color:#BC5F00;width:32px;height:32px;color:#fff;text-align:center"|$787
| |
| |style="border:0px;background-color:#888900;width:32px;height:32px;color:#fff;text-align:center"|$788
| |
| |style="border:0px;background-color:#5B9E01;width:32px;height:32px;color:#fff;text-align:center"|$789
| |
| |style="border:0px;background-color:#20AF00;width:32px;height:32px;color:#fff;text-align:center"|$78A
| |
| |style="border:0px;background-color:#0BAF35;width:32px;height:32px;color:#fff;text-align:center"|$78B
| |
| |style="border:0px;background-color:#0895A6;width:32px;height:32px;color:#fff;text-align:center"|$78C
| |
| |style="border:0px;background-color:#090E0C;width:32px;height:32px;color:#fff;text-align:center"|$78D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$78E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$78F
| |
| |-
| |
| |style="border:0px;background-color:#DFDFDD;width:32px;height:32px;color:#000;text-align:center"|$790
| |
| |style="border:0px;background-color:#3D9AFE;width:32px;height:32px;color:#000;text-align:center"|$791
| |
| |style="border:0px;background-color:#6F74FE;width:32px;height:32px;color:#000;text-align:center"|$792
| |
| |style="border:0px;background-color:#A55BFE;width:32px;height:32px;color:#000;text-align:center"|$793
| |
| |style="border:0px;background-color:#D74CFE;width:32px;height:32px;color:#000;text-align:center"|$794
| |
| |style="border:0px;background-color:#EC4DC4;width:32px;height:32px;color:#000;text-align:center"|$795
| |
| |style="border:0px;background-color:#EE6554;width:32px;height:32px;color:#000;text-align:center"|$796
| |
| |style="border:0px;background-color:#D67B13;width:32px;height:32px;color:#000;text-align:center"|$797
| |
| |style="border:0px;background-color:#A2A400;width:32px;height:32px;color:#000;text-align:center"|$798
| |
| |style="border:0px;background-color:#75BB00;width:32px;height:32px;color:#000;text-align:center"|$799
| |
| |style="border:0px;background-color:#3BCB0E;width:32px;height:32px;color:#000;text-align:center"|$79A
| |
| |style="border:0px;background-color:#25C951;width:32px;height:32px;color:#000;text-align:center"|$79B
| |
| |style="border:0px;background-color:#24B1C5;width:32px;height:32px;color:#000;text-align:center"|$79C
| |
| |style="border:0px;background-color:#282828;width:32px;height:32px;color:#fff;text-align:center"|$79D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$79E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$79F
| |
| |-
| |
| |style="border:0px;background-color:#F6F6F6;width:32px;height:32px;color:#000;text-align:center"|$7A0
| |
| |style="border:0px;background-color:#57B4FE;width:32px;height:32px;color:#000;text-align:center"|$7A1
| |
| |style="border:0px;background-color:#898FFC;width:32px;height:32px;color:#000;text-align:center"|$7A2
| |
| |style="border:0px;background-color:#BD75FD;width:32px;height:32px;color:#000;text-align:center"|$7A3
| |
| |style="border:0px;background-color:#F067FF;width:32px;height:32px;color:#000;text-align:center"|$7A4
| |
| |style="border:0px;background-color:#FF68DC;width:32px;height:32px;color:#000;text-align:center"|$7A5
| |
| |style="border:0px;background-color:#FE7F6E;width:32px;height:32px;color:#000;text-align:center"|$7A6
| |
| |style="border:0px;background-color:#F0942D;width:32px;height:32px;color:#000;text-align:center"|$7A7
| |
| |style="border:0px;background-color:#BCBD00;width:32px;height:32px;color:#000;text-align:center"|$7A8
| |
| |style="border:0px;background-color:#8CD400;width:32px;height:32px;color:#000;text-align:center"|$7A9
| |
| |style="border:0px;background-color:#56E329;width:32px;height:32px;color:#000;text-align:center"|$7AA
| |
| |style="border:0px;background-color:#42E16C;width:32px;height:32px;color:#000;text-align:center"|$7AB
| |
| |style="border:0px;background-color:#3ECADB;width:32px;height:32px;color:#000;text-align:center"|$7AC
| |
| |style="border:0px;background-color:#424242;width:32px;height:32px;color:#fff;text-align:center"|$7AD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$7AE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$7AF
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$7B0
| |
| |style="border:0px;background-color:#74CCFF;width:32px;height:32px;color:#000;text-align:center"|$7B1
| |
| |style="border:0px;background-color:#A5A9FF;width:32px;height:32px;color:#000;text-align:center"|$7B2
| |
| |style="border:0px;background-color:#D68FFE;width:32px;height:32px;color:#000;text-align:center"|$7B3
| |
| |style="border:0px;background-color:#FF82FF;width:32px;height:32px;color:#000;text-align:center"|$7B4
| |
| |style="border:0px;background-color:#FE82F2;width:32px;height:32px;color:#000;text-align:center"|$7B5
| |
| |style="border:0px;background-color:#FF998A;width:32px;height:32px;color:#000;text-align:center"|$7B6
| |
| |style="border:0px;background-color:#FEAE4B;width:32px;height:32px;color:#000;text-align:center"|$7B7
| |
| |style="border:0px;background-color:#D3D50F;width:32px;height:32px;color:#000;text-align:center"|$7B8
| |
| |style="border:0px;background-color:#ABEA10;width:32px;height:32px;color:#000;text-align:center"|$7B9
| |
| |style="border:0px;background-color:#73FA48;width:32px;height:32px;color:#000;text-align:center"|$7BA
| |
| |style="border:0px;background-color:#60F888;width:32px;height:32px;color:#000;text-align:center"|$7BB
| |
| |style="border:0px;background-color:#5EE2F1;width:32px;height:32px;color:#000;text-align:center"|$7BC
| |
| |style="border:0px;background-color:#5E5E5E;width:32px;height:32px;color:#fff;text-align:center"|$7BD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$7BE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$7BF
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$7C0
| |
| |style="border:0px;background-color:#8DE3FE;width:32px;height:32px;color:#000;text-align:center"|$7C1
| |
| |style="border:0px;background-color:#BEC2FF;width:32px;height:32px;color:#000;text-align:center"|$7C2
| |
| |style="border:0px;background-color:#EBA9FF;width:32px;height:32px;color:#000;text-align:center"|$7C3
| |
| |style="border:0px;background-color:#FE9CFE;width:32px;height:32px;color:#000;text-align:center"|$7C4
| |
| |style="border:0px;background-color:#FF9BFE;width:32px;height:32px;color:#000;text-align:center"|$7C5
| |
| |style="border:0px;background-color:#FFB3A5;width:32px;height:32px;color:#000;text-align:center"|$7C6
| |
| |style="border:0px;background-color:#FEC76A;width:32px;height:32px;color:#000;text-align:center"|$7C7
| |
| |style="border:0px;background-color:#E9EC2B;width:32px;height:32px;color:#000;text-align:center"|$7C8
| |
| |style="border:0px;background-color:#BEFE2E;width:32px;height:32px;color:#000;text-align:center"|$7C9
| |
| |style="border:0px;background-color:#8AFE66;width:32px;height:32px;color:#000;text-align:center"|$7CA
| |
| |style="border:0px;background-color:#7BFEA5;width:32px;height:32px;color:#000;text-align:center"|$7CB
| |
| |style="border:0px;background-color:#78F7FE;width:32px;height:32px;color:#000;text-align:center"|$7CC
| |
| |style="border:0px;background-color:#777775;width:32px;height:32px;color:#fff;text-align:center"|$7CD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$7CE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$7CF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$7D0
| |
| |style="border:0px;background-color:#7F0C00;width:32px;height:32px;color:#fff;text-align:center"|$7D1
| |
| |style="border:0px;background-color:#3F3A01;width:32px;height:32px;color:#fff;text-align:center"|$7D2
| |
| |style="border:0px;background-color:#015A00;width:32px;height:32px;color:#fff;text-align:center"|$7D3
| |
| |style="border:0px;background-color:#006D00;width:32px;height:32px;color:#fff;text-align:center"|$7D4
| |
| |style="border:0px;background-color:#006D00;width:32px;height:32px;color:#fff;text-align:center"|$7D5
| |
| |style="border:0px;background-color:#014D64;width:32px;height:32px;color:#fff;text-align:center"|$7D6
| |
| |style="border:0px;background-color:#0032B7;width:32px;height:32px;color:#fff;text-align:center"|$7D7
| |
| |style="border:0px;background-color:#0100FE;width:32px;height:32px;color:#fff;text-align:center"|$7D8
| |
| |style="border:0px;background-color:#3D00FE;width:32px;height:32px;color:#fff;text-align:center"|$7D9
| |
| |style="border:0px;background-color:#8700BD;width:32px;height:32px;color:#fff;text-align:center"|$7DA
| |
| |style="border:0px;background-color:#9F0068;width:32px;height:32px;color:#fff;text-align:center"|$7DB
| |
| |style="border:0px;background-color:#A20000;width:32px;height:32px;color:#fff;text-align:center"|$7DC
| |
| |style="border:0px;background-color:#929292;width:32px;height:32px;color:#000;text-align:center"|$7DD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$7DE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$7DF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$7E0
| |
| |style="border:0px;background-color:#9B2501;width:32px;height:32px;color:#fff;text-align:center"|$7E1
| |
| |style="border:0px;background-color:#595400;width:32px;height:32px;color:#fff;text-align:center"|$7E2
| |
| |style="border:0px;background-color:#197500;width:32px;height:32px;color:#fff;text-align:center"|$7E3
| |
| |style="border:0px;background-color:#008500;width:32px;height:32px;color:#fff;text-align:center"|$7E4
| |
| |style="border:0px;background-color:#008700;width:32px;height:32px;color:#fff;text-align:center"|$7E5
| |
| |style="border:0px;background-color:#00697E;width:32px;height:32px;color:#fff;text-align:center"|$7E6
| |
| |style="border:0px;background-color:#004CD2;width:32px;height:32px;color:#fff;text-align:center"|$7E7
| |
| |style="border:0px;background-color:#1C1BFE;width:32px;height:32px;color:#fff;text-align:center"|$7E8
| |
| |style="border:0px;background-color:#5300FE;width:32px;height:32px;color:#fff;text-align:center"|$7E9
| |
| |style="border:0px;background-color:#A000DE;width:32px;height:32px;color:#fff;text-align:center"|$7EA
| |
| |style="border:0px;background-color:#B90083;width:32px;height:32px;color:#fff;text-align:center"|$7EB
| |
| |style="border:0px;background-color:#BF0800;width:32px;height:32px;color:#fff;text-align:center"|$7EC
| |
| |style="border:0px;background-color:#ADADAB;width:32px;height:32px;color:#000;text-align:center"|$7ED
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$7EE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$7EF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$7F0
| |
| |style="border:0px;background-color:#B64102;width:32px;height:32px;color:#fff;text-align:center"|$7F1
| |
| |style="border:0px;background-color:#747100;width:32px;height:32px;color:#fff;text-align:center"|$7F2
| |
| |style="border:0px;background-color:#349101;width:32px;height:32px;color:#fff;text-align:center"|$7F3
| |
| |style="border:0px;background-color:#00A300;width:32px;height:32px;color:#fff;text-align:center"|$7F4
| |
| |style="border:0px;background-color:#00A30F;width:32px;height:32px;color:#fff;text-align:center"|$7F5
| |
| |style="border:0px;background-color:#01839A;width:32px;height:32px;color:#fff;text-align:center"|$7F6
| |
| |style="border:0px;background-color:#0068EE;width:32px;height:32px;color:#fff;text-align:center"|$7F7
| |
| |style="border:0px;background-color:#3534FE;width:32px;height:32px;color:#fff;text-align:center"|$7F8
| |
| |style="border:0px;background-color:#7017FD;width:32px;height:32px;color:#fff;text-align:center"|$7F9
| |
| |style="border:0px;background-color:#BC02F2;width:32px;height:32px;color:#fff;text-align:center"|$7FA
| |
| |style="border:0px;background-color:#D6029E;width:32px;height:32px;color:#fff;text-align:center"|$7FB
| |
| |style="border:0px;background-color:#DC210D;width:32px;height:32px;color:#fff;text-align:center"|$7FC
| |
| |style="border:0px;background-color:#C6C6C6;width:32px;height:32px;color:#000;text-align:center"|$7FD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$7FE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$7FF
| |
| |-
| |
| ! colspan=16 | Saturation level $8
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$800
| |
| |style="border:0px;background-color:#C85C01;width:32px;height:32px;color:#fff;text-align:center"|$801
| |
| |style="border:0px;background-color:#8B8901;width:32px;height:32px;color:#fff;text-align:center"|$802
| |
| |style="border:0px;background-color:#51A401;width:32px;height:32px;color:#fff;text-align:center"|$803
| |
| |style="border:0px;background-color:#17B601;width:32px;height:32px;color:#fff;text-align:center"|$804
| |
| |style="border:0px;background-color:#00B630;width:32px;height:32px;color:#fff;text-align:center"|$805
| |
| |style="border:0px;background-color:#009AAE;width:32px;height:32px;color:#fff;text-align:center"|$806
| |
| |style="border:0px;background-color:#1680FA;width:32px;height:32px;color:#fff;text-align:center"|$807
| |
| |style="border:0px;background-color:#5453FE;width:32px;height:32px;color:#fff;text-align:center"|$808
| |
| |style="border:0px;background-color:#8738FE;width:32px;height:32px;color:#fff;text-align:center"|$809
| |
| |style="border:0px;background-color:#CC25FD;width:32px;height:32px;color:#fff;text-align:center"|$80A
| |
| |style="border:0px;background-color:#E226B1;width:32px;height:32px;color:#fff;text-align:center"|$80B
| |
| |style="border:0px;background-color:#E7422F;width:32px;height:32px;color:#fff;text-align:center"|$80C
| |
| |style="border:0px;background-color:#D4D2D3;width:32px;height:32px;color:#000;text-align:center"|$80D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$80E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$80F
| |
| |-
| |
| |style="border:0px;background-color:#1A1A1A;width:32px;height:32px;color:#fff;text-align:center"|$810
| |
| |style="border:0px;background-color:#E27700;width:32px;height:32px;color:#000;text-align:center"|$811
| |
| |style="border:0px;background-color:#A7A201;width:32px;height:32px;color:#000;text-align:center"|$812
| |
| |style="border:0px;background-color:#6CBF00;width:32px;height:32px;color:#000;text-align:center"|$813
| |
| |style="border:0px;background-color:#32D000;width:32px;height:32px;color:#000;text-align:center"|$814
| |
| |style="border:0px;background-color:#1AD048;width:32px;height:32px;color:#000;text-align:center"|$815
| |
| |style="border:0px;background-color:#17B5C1;width:32px;height:32px;color:#000;text-align:center"|$816
| |
| |style="border:0px;background-color:#2F9BFF;width:32px;height:32px;color:#000;text-align:center"|$817
| |
| |style="border:0px;background-color:#6E6CFE;width:32px;height:32px;color:#fff;text-align:center"|$818
| |
| |style="border:0px;background-color:#A153FE;width:32px;height:32px;color:#fff;text-align:center"|$819
| |
| |style="border:0px;background-color:#E140FE;width:32px;height:32px;color:#000;text-align:center"|$81A
| |
| |style="border:0px;background-color:#FB41CA;width:32px;height:32px;color:#000;text-align:center"|$81B
| |
| |style="border:0px;background-color:#FE5D4B;width:32px;height:32px;color:#000;text-align:center"|$81C
| |
| |style="border:0px;background-color:#EBEBEB;width:32px;height:32px;color:#000;text-align:center"|$81D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$81E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$81F
| |
| |-
| |
| |style="border:0px;background-color:#353535;width:32px;height:32px;color:#fff;text-align:center"|$820
| |
| |style="border:0px;background-color:#F89014;width:32px;height:32px;color:#000;text-align:center"|$821
| |
| |style="border:0px;background-color:#BDB900;width:32px;height:32px;color:#000;text-align:center"|$822
| |
| |style="border:0px;background-color:#86D601;width:32px;height:32px;color:#000;text-align:center"|$823
| |
| |style="border:0px;background-color:#4DE715;width:32px;height:32px;color:#000;text-align:center"|$824
| |
| |style="border:0px;background-color:#33E762;width:32px;height:32px;color:#000;text-align:center"|$825
| |
| |style="border:0px;background-color:#32CDDF;width:32px;height:32px;color:#000;text-align:center"|$826
| |
| |style="border:0px;background-color:#4CB3FE;width:32px;height:32px;color:#000;text-align:center"|$827
| |
| |style="border:0px;background-color:#8686FE;width:32px;height:32px;color:#000;text-align:center"|$828
| |
| |style="border:0px;background-color:#BC6DFE;width:32px;height:32px;color:#000;text-align:center"|$829
| |
| |style="border:0px;background-color:#FC59FD;width:32px;height:32px;color:#000;text-align:center"|$82A
| |
| |style="border:0px;background-color:#FE5BE5;width:32px;height:32px;color:#000;text-align:center"|$82B
| |
| |style="border:0px;background-color:#FF7764;width:32px;height:32px;color:#000;text-align:center"|$82C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$82D
| |
| |style="border:0px;background-color:#000002;width:32px;height:32px;color:#fff;text-align:center"|$82E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$82F
| |
| |-
| |
| |style="border:0px;background-color:#505050;width:32px;height:32px;color:#fff;text-align:center"|$830
| |
| |style="border:0px;background-color:#FEAB33;width:32px;height:32px;color:#000;text-align:center"|$831
| |
| |style="border:0px;background-color:#D7D400;width:32px;height:32px;color:#000;text-align:center"|$832
| |
| |style="border:0px;background-color:#A1EE00;width:32px;height:32px;color:#000;text-align:center"|$833
| |
| |style="border:0px;background-color:#69FE33;width:32px;height:32px;color:#000;text-align:center"|$834
| |
| |style="border:0px;background-color:#53FD80;width:32px;height:32px;color:#000;text-align:center"|$835
| |
| |style="border:0px;background-color:#51E4F8;width:32px;height:32px;color:#000;text-align:center"|$836
| |
| |style="border:0px;background-color:#67CCFF;width:32px;height:32px;color:#000;text-align:center"|$837
| |
| |style="border:0px;background-color:#A79EFE;width:32px;height:32px;color:#000;text-align:center"|$838
| |
| |style="border:0px;background-color:#D986FE;width:32px;height:32px;color:#000;text-align:center"|$839
| |
| |style="border:0px;background-color:#FD75FE;width:32px;height:32px;color:#000;text-align:center"|$83A
| |
| |style="border:0px;background-color:#FE77F8;width:32px;height:32px;color:#000;text-align:center"|$83B
| |
| |style="border:0px;background-color:#FF937C;width:32px;height:32px;color:#000;text-align:center"|$83C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$83D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$83E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$83F
| |
| |-
| |
| |style="border:0px;background-color:#6B6A6E;width:32px;height:32px;color:#fff;text-align:center"|$840
| |
| |style="border:0px;background-color:#011597;width:32px;height:32px;color:#fff;text-align:center"|$841
| |
| |style="border:0px;background-color:#0000C8;width:32px;height:32px;color:#fff;text-align:center"|$842
| |
| |style="border:0px;background-color:#2100C9;width:32px;height:32px;color:#fff;text-align:center"|$843
| |
| |style="border:0px;background-color:#590090;width:32px;height:32px;color:#fff;text-align:center"|$844
| |
| |style="border:0px;background-color:#710044;width:32px;height:32px;color:#fff;text-align:center"|$845
| |
| |style="border:0px;background-color:#720000;width:32px;height:32px;color:#fff;text-align:center"|$846
| |
| |style="border:0px;background-color:#590000;width:32px;height:32px;color:#fff;text-align:center"|$847
| |
| |style="border:0px;background-color:#1E1F00;width:32px;height:32px;color:#fff;text-align:center"|$848
| |
| |style="border:0px;background-color:#003700;width:32px;height:32px;color:#fff;text-align:center"|$849
| |
| |style="border:0px;background-color:#004B00;width:32px;height:32px;color:#fff;text-align:center"|$84A
| |
| |style="border:0px;background-color:#004900;width:32px;height:32px;color:#fff;text-align:center"|$84B
| |
| |style="border:0px;background-color:#002E42;width:32px;height:32px;color:#fff;text-align:center"|$84C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$84D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$84E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$84F
| |
| |-
| |
| |style="border:0px;background-color:#868688;width:32px;height:32px;color:#000;text-align:center"|$850
| |
| |style="border:0px;background-color:#0032AA;width:32px;height:32px;color:#fff;text-align:center"|$851
| |
| |style="border:0px;background-color:#0507F0;width:32px;height:32px;color:#fff;text-align:center"|$852
| |
| |style="border:0px;background-color:#3C00E9;width:32px;height:32px;color:#fff;text-align:center"|$853
| |
| |style="border:0px;background-color:#7600AC;width:32px;height:32px;color:#fff;text-align:center"|$854
| |
| |style="border:0px;background-color:#8D005A;width:32px;height:32px;color:#fff;text-align:center"|$855
| |
| |style="border:0px;background-color:#8E0000;width:32px;height:32px;color:#fff;text-align:center"|$856
| |
| |style="border:0px;background-color:#780E00;width:32px;height:32px;color:#fff;text-align:center"|$857
| |
| |style="border:0px;background-color:#3C3B02;width:32px;height:32px;color:#fff;text-align:center"|$858
| |
| |style="border:0px;background-color:#095500;width:32px;height:32px;color:#fff;text-align:center"|$859
| |
| |style="border:0px;background-color:#006A01;width:32px;height:32px;color:#fff;text-align:center"|$85A
| |
| |style="border:0px;background-color:#006800;width:32px;height:32px;color:#fff;text-align:center"|$85B
| |
| |style="border:0px;background-color:#014D5D;width:32px;height:32px;color:#fff;text-align:center"|$85C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$85D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$85E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$85F
| |
| |-
| |
| |style="border:0px;background-color:#A09FA3;width:32px;height:32px;color:#000;text-align:center"|$860
| |
| |style="border:0px;background-color:#014BCD;width:32px;height:32px;color:#fff;text-align:center"|$861
| |
| |style="border:0px;background-color:#1C20FC;width:32px;height:32px;color:#fff;text-align:center"|$862
| |
| |style="border:0px;background-color:#5604FD;width:32px;height:32px;color:#fff;text-align:center"|$863
| |
| |style="border:0px;background-color:#9200CC;width:32px;height:32px;color:#fff;text-align:center"|$864
| |
| |style="border:0px;background-color:#AD007B;width:32px;height:32px;color:#fff;text-align:center"|$865
| |
| |style="border:0px;background-color:#AB0F00;width:32px;height:32px;color:#fff;text-align:center"|$866
| |
| |style="border:0px;background-color:#922801;width:32px;height:32px;color:#fff;text-align:center"|$867
| |
| |style="border:0px;background-color:#575702;width:32px;height:32px;color:#fff;text-align:center"|$868
| |
| |style="border:0px;background-color:#227001;width:32px;height:32px;color:#fff;text-align:center"|$869
| |
| |style="border:0px;background-color:#008401;width:32px;height:32px;color:#fff;text-align:center"|$86A
| |
| |style="border:0px;background-color:#008201;width:32px;height:32px;color:#fff;text-align:center"|$86B
| |
| |style="border:0px;background-color:#00677A;width:32px;height:32px;color:#fff;text-align:center"|$86C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$86D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$86E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$86F
| |
| |-
| |
| |style="border:0px;background-color:#B8BAB7;width:32px;height:32px;color:#000;text-align:center"|$870
| |
| |style="border:0px;background-color:#0067E9;width:32px;height:32px;color:#fff;text-align:center"|$871
| |
| |style="border:0px;background-color:#383CFD;width:32px;height:32px;color:#fff;text-align:center"|$872
| |
| |style="border:0px;background-color:#731EFE;width:32px;height:32px;color:#fff;text-align:center"|$873
| |
| |style="border:0px;background-color:#AF0DEE;width:32px;height:32px;color:#fff;text-align:center"|$874
| |
| |style="border:0px;background-color:#C90D95;width:32px;height:32px;color:#fff;text-align:center"|$875
| |
| |style="border:0px;background-color:#C92814;width:32px;height:32px;color:#fff;text-align:center"|$876
| |
| |style="border:0px;background-color:#B14401;width:32px;height:32px;color:#fff;text-align:center"|$877
| |
| |style="border:0px;background-color:#6E7501;width:32px;height:32px;color:#fff;text-align:center"|$878
| |
| |style="border:0px;background-color:#3A8D01;width:32px;height:32px;color:#fff;text-align:center"|$879
| |
| |style="border:0px;background-color:#00A001;width:32px;height:32px;color:#fff;text-align:center"|$87A
| |
| |style="border:0px;background-color:#009F15;width:32px;height:32px;color:#fff;text-align:center"|$87B
| |
| |style="border:0px;background-color:#00829C;width:32px;height:32px;color:#fff;text-align:center"|$87C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$87D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$87E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$87F
| |
| |-
| |
| |style="border:0px;background-color:#D3D3D1;width:32px;height:32px;color:#000;text-align:center"|$880
| |
| |style="border:0px;background-color:#1781FC;width:32px;height:32px;color:#fff;text-align:center"|$881
| |
| |style="border:0px;background-color:#5258FE;width:32px;height:32px;color:#fff;text-align:center"|$882
| |
| |style="border:0px;background-color:#8D3AFE;width:32px;height:32px;color:#fff;text-align:center"|$883
| |
| |style="border:0px;background-color:#C928FE;width:32px;height:32px;color:#fff;text-align:center"|$884
| |
| |style="border:0px;background-color:#E327B1;width:32px;height:32px;color:#fff;text-align:center"|$885
| |
| |style="border:0px;background-color:#E4432F;width:32px;height:32px;color:#fff;text-align:center"|$886
| |
| |style="border:0px;background-color:#CB5E01;width:32px;height:32px;color:#fff;text-align:center"|$887
| |
| |style="border:0px;background-color:#8D8E00;width:32px;height:32px;color:#fff;text-align:center"|$888
| |
| |style="border:0px;background-color:#56A902;width:32px;height:32px;color:#fff;text-align:center"|$889
| |
| |style="border:0px;background-color:#13BD01;width:32px;height:32px;color:#fff;text-align:center"|$88A
| |
| |style="border:0px;background-color:#00B931;width:32px;height:32px;color:#fff;text-align:center"|$88B
| |
| |style="border:0px;background-color:#009FAF;width:32px;height:32px;color:#fff;text-align:center"|$88C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$88D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$88E
| |
| |style="border:0px;background-color:#000002;width:32px;height:32px;color:#fff;text-align:center"|$88F
| |
| |-
| |
| |style="border:0px;background-color:#EBEBED;width:32px;height:32px;color:#000;text-align:center"|$890
| |
| |style="border:0px;background-color:#329CFC;width:32px;height:32px;color:#000;text-align:center"|$891
| |
| |style="border:0px;background-color:#6F71FE;width:32px;height:32px;color:#000;text-align:center"|$892
| |
| |style="border:0px;background-color:#A855FD;width:32px;height:32px;color:#000;text-align:center"|$893
| |
| |style="border:0px;background-color:#E444FE;width:32px;height:32px;color:#000;text-align:center"|$894
| |
| |style="border:0px;background-color:#FD43CA;width:32px;height:32px;color:#000;text-align:center"|$895
| |
| |style="border:0px;background-color:#FC5F4C;width:32px;height:32px;color:#000;text-align:center"|$896
| |
| |style="border:0px;background-color:#E37900;width:32px;height:32px;color:#000;text-align:center"|$897
| |
| |style="border:0px;background-color:#A9A800;width:32px;height:32px;color:#000;text-align:center"|$898
| |
| |style="border:0px;background-color:#70C300;width:32px;height:32px;color:#000;text-align:center"|$899
| |
| |style="border:0px;background-color:#2ED500;width:32px;height:32px;color:#000;text-align:center"|$89A
| |
| |style="border:0px;background-color:#18D449;width:32px;height:32px;color:#000;text-align:center"|$89B
| |
| |style="border:0px;background-color:#13B9C8;width:32px;height:32px;color:#000;text-align:center"|$89C
| |
| |style="border:0px;background-color:#1A191E;width:32px;height:32px;color:#fff;text-align:center"|$89D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$89E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$89F
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$8A0
| |
| |style="border:0px;background-color:#4EB5FE;width:32px;height:32px;color:#000;text-align:center"|$8A1
| |
| |style="border:0px;background-color:#898BFF;width:32px;height:32px;color:#000;text-align:center"|$8A2
| |
| |style="border:0px;background-color:#C36EFF;width:32px;height:32px;color:#000;text-align:center"|$8A3
| |
| |style="border:0px;background-color:#FA5EFE;width:32px;height:32px;color:#000;text-align:center"|$8A4
| |
| |style="border:0px;background-color:#FF5EE0;width:32px;height:32px;color:#000;text-align:center"|$8A5
| |
| |style="border:0px;background-color:#FF7965;width:32px;height:32px;color:#000;text-align:center"|$8A6
| |
| |style="border:0px;background-color:#FC9319;width:32px;height:32px;color:#000;text-align:center"|$8A7
| |
| |style="border:0px;background-color:#C4BF00;width:32px;height:32px;color:#000;text-align:center"|$8A8
| |
| |style="border:0px;background-color:#8DDA00;width:32px;height:32px;color:#000;text-align:center"|$8A9
| |
| |style="border:0px;background-color:#4BED13;width:32px;height:32px;color:#000;text-align:center"|$8AA
| |
| |style="border:0px;background-color:#33EC60;width:32px;height:32px;color:#000;text-align:center"|$8AB
| |
| |style="border:0px;background-color:#2FD1DD;width:32px;height:32px;color:#000;text-align:center"|$8AC
| |
| |style="border:0px;background-color:#35362F;width:32px;height:32px;color:#fff;text-align:center"|$8AD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$8AE
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$8AF
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$8B0
| |
| |style="border:0px;background-color:#68CEFF;width:32px;height:32px;color:#000;text-align:center"|$8B1
| |
| |style="border:0px;background-color:#A0A7FE;width:32px;height:32px;color:#000;text-align:center"|$8B2
| |
| |style="border:0px;background-color:#D889FE;width:32px;height:32px;color:#000;text-align:center"|$8B3
| |
| |style="border:0px;background-color:#FD7AFE;width:32px;height:32px;color:#000;text-align:center"|$8B4
| |
| |style="border:0px;background-color:#FF79FC;width:32px;height:32px;color:#000;text-align:center"|$8B5
| |
| |style="border:0px;background-color:#FE9381;width:32px;height:32px;color:#000;text-align:center"|$8B6
| |
| |style="border:0px;background-color:#FEAB39;width:32px;height:32px;color:#000;text-align:center"|$8B7
| |
| |style="border:0px;background-color:#D9DA00;width:32px;height:32px;color:#000;text-align:center"|$8B8
| |
| |style="border:0px;background-color:#A8F300;width:32px;height:32px;color:#000;text-align:center"|$8B9
| |
| |style="border:0px;background-color:#67FE36;width:32px;height:32px;color:#000;text-align:center"|$8BA
| |
| |style="border:0px;background-color:#50FE7A;width:32px;height:32px;color:#000;text-align:center"|$8BB
| |
| |style="border:0px;background-color:#4CEAF6;width:32px;height:32px;color:#000;text-align:center"|$8BC
| |
| |style="border:0px;background-color:#505050;width:32px;height:32px;color:#fff;text-align:center"|$8BD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$8BE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$8BF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$8C0
| |
| |style="border:0px;background-color:#570000;width:32px;height:32px;color:#fff;text-align:center"|$8C1
| |
| |style="border:0px;background-color:#1E1900;width:32px;height:32px;color:#fff;text-align:center"|$8C2
| |
| |style="border:0px;background-color:#013600;width:32px;height:32px;color:#fff;text-align:center"|$8C3
| |
| |style="border:0px;background-color:#004500;width:32px;height:32px;color:#fff;text-align:center"|$8C4
| |
| |style="border:0px;background-color:#004600;width:32px;height:32px;color:#fff;text-align:center"|$8C5
| |
| |style="border:0px;background-color:#012A3E;width:32px;height:32px;color:#fff;text-align:center"|$8C6
| |
| |style="border:0px;background-color:#001185;width:32px;height:32px;color:#fff;text-align:center"|$8C7
| |
| |style="border:0px;background-color:#0000CD;width:32px;height:32px;color:#fff;text-align:center"|$8C8
| |
| |style="border:0px;background-color:#1801CB;width:32px;height:32px;color:#fff;text-align:center"|$8C9
| |
| |style="border:0px;background-color:#59008B;width:32px;height:32px;color:#fff;text-align:center"|$8CA
| |
| |style="border:0px;background-color:#6E003A;width:32px;height:32px;color:#fff;text-align:center"|$8CB
| |
| |style="border:0px;background-color:#710100;width:32px;height:32px;color:#fff;text-align:center"|$8CC
| |
| |style="border:0px;background-color:#6A6B66;width:32px;height:32px;color:#fff;text-align:center"|$8CD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$8CE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$8CF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$8D0
| |
| |style="border:0px;background-color:#740C00;width:32px;height:32px;color:#fff;text-align:center"|$8D1
| |
| |style="border:0px;background-color:#393500;width:32px;height:32px;color:#fff;text-align:center"|$8D2
| |
| |style="border:0px;background-color:#015200;width:32px;height:32px;color:#fff;text-align:center"|$8D3
| |
| |style="border:0px;background-color:#006300;width:32px;height:32px;color:#fff;text-align:center"|$8D4
| |
| |style="border:0px;background-color:#006300;width:32px;height:32px;color:#fff;text-align:center"|$8D5
| |
| |style="border:0px;background-color:#00465C;width:32px;height:32px;color:#fff;text-align:center"|$8D6
| |
| |style="border:0px;background-color:#002EA2;width:32px;height:32px;color:#fff;text-align:center"|$8D7
| |
| |style="border:0px;background-color:#0301EF;width:32px;height:32px;color:#fff;text-align:center"|$8D8
| |
| |style="border:0px;background-color:#3601ED;width:32px;height:32px;color:#fff;text-align:center"|$8D9
| |
| |style="border:0px;background-color:#7A00AA;width:32px;height:32px;color:#fff;text-align:center"|$8DA
| |
| |style="border:0px;background-color:#910061;width:32px;height:32px;color:#fff;text-align:center"|$8DB
| |
| |style="border:0px;background-color:#920000;width:32px;height:32px;color:#fff;text-align:center"|$8DC
| |
| |style="border:0px;background-color:#868686;width:32px;height:32px;color:#000;text-align:center"|$8DD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$8DE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$8DF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$8E0
| |
| |style="border:0px;background-color:#912600;width:32px;height:32px;color:#fff;text-align:center"|$8E1
| |
| |style="border:0px;background-color:#555200;width:32px;height:32px;color:#fff;text-align:center"|$8E2
| |
| |style="border:0px;background-color:#1B6F00;width:32px;height:32px;color:#fff;text-align:center"|$8E3
| |
| |style="border:0px;background-color:#008000;width:32px;height:32px;color:#fff;text-align:center"|$8E4
| |
| |style="border:0px;background-color:#008000;width:32px;height:32px;color:#fff;text-align:center"|$8E5
| |
| |style="border:0px;background-color:#006376;width:32px;height:32px;color:#fff;text-align:center"|$8E6
| |
| |style="border:0px;background-color:#0148C1;width:32px;height:32px;color:#fff;text-align:center"|$8E7
| |
| |style="border:0px;background-color:#1C1BFF;width:32px;height:32px;color:#fff;text-align:center"|$8E8
| |
| |style="border:0px;background-color:#5200FF;width:32px;height:32px;color:#fff;text-align:center"|$8E9
| |
| |style="border:0px;background-color:#9500C6;width:32px;height:32px;color:#fff;text-align:center"|$8EA
| |
| |style="border:0px;background-color:#AC0078;width:32px;height:32px;color:#fff;text-align:center"|$8EB
| |
| |style="border:0px;background-color:#AF0B00;width:32px;height:32px;color:#fff;text-align:center"|$8EC
| |
| |style="border:0px;background-color:#A0A09D;width:32px;height:32px;color:#000;text-align:center"|$8ED
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$8EE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$8EF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$8F0
| |
| |style="border:0px;background-color:#AE4101;width:32px;height:32px;color:#fff;text-align:center"|$8F1
| |
| |style="border:0px;background-color:#706D01;width:32px;height:32px;color:#fff;text-align:center"|$8F2
| |
| |style="border:0px;background-color:#368800;width:32px;height:32px;color:#fff;text-align:center"|$8F3
| |
| |style="border:0px;background-color:#009B00;width:32px;height:32px;color:#fff;text-align:center"|$8F4
| |
| |style="border:0px;background-color:#009B0F;width:32px;height:32px;color:#fff;text-align:center"|$8F5
| |
| |style="border:0px;background-color:#007F90;width:32px;height:32px;color:#fff;text-align:center"|$8F6
| |
| |style="border:0px;background-color:#0065DE;width:32px;height:32px;color:#fff;text-align:center"|$8F7
| |
| |style="border:0px;background-color:#3736FC;width:32px;height:32px;color:#fff;text-align:center"|$8F8
| |
| |style="border:0px;background-color:#6B1CFE;width:32px;height:32px;color:#fff;text-align:center"|$8F9
| |
| |style="border:0px;background-color:#AE09E1;width:32px;height:32px;color:#fff;text-align:center"|$8FA
| |
| |style="border:0px;background-color:#C60C91;width:32px;height:32px;color:#fff;text-align:center"|$8FB
| |
| |style="border:0px;background-color:#C72614;width:32px;height:32px;color:#fff;text-align:center"|$8FC
| |
| |style="border:0px;background-color:#B9BAB5;width:32px;height:32px;color:#000;text-align:center"|$8FD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$8FE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$8FF
| |
| |-
| |
| ! colspan=16 | Saturation level $9
| |
| |-
| |
| |style="border:0px;background-color:#0E0B0C;width:32px;height:32px;color:#fff;text-align:center"|$900
| |
| |style="border:0px;background-color:#BB5F00;width:32px;height:32px;color:#fff;text-align:center"|$901
| |
| |style="border:0px;background-color:#878401;width:32px;height:32px;color:#fff;text-align:center"|$902
| |
| |style="border:0px;background-color:#529E00;width:32px;height:32px;color:#fff;text-align:center"|$903
| |
| |style="border:0px;background-color:#1FAB00;width:32px;height:32px;color:#fff;text-align:center"|$904
| |
| |style="border:0px;background-color:#0AAB37;width:32px;height:32px;color:#fff;text-align:center"|$905
| |
| |style="border:0px;background-color:#0A92A5;width:32px;height:32px;color:#fff;text-align:center"|$906
| |
| |style="border:0px;background-color:#207DE6;width:32px;height:32px;color:#fff;text-align:center"|$907
| |
| |style="border:0px;background-color:#5754FD;width:32px;height:32px;color:#fff;text-align:center"|$908
| |
| |style="border:0px;background-color:#833FFE;width:32px;height:32px;color:#fff;text-align:center"|$909
| |
| |style="border:0px;background-color:#BD2DEA;width:32px;height:32px;color:#fff;text-align:center"|$90A
| |
| |style="border:0px;background-color:#D22EA6;width:32px;height:32px;color:#fff;text-align:center"|$90B
| |
| |style="border:0px;background-color:#D44734;width:32px;height:32px;color:#fff;text-align:center"|$90C
| |
| |style="border:0px;background-color:#C6C6C6;width:32px;height:32px;color:#000;text-align:center"|$90D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$90E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$90F
| |
| |-
| |
| |style="border:0px;background-color:#272727;width:32px;height:32px;color:#fff;text-align:center"|$910
| |
| |style="border:0px;background-color:#D57908;width:32px;height:32px;color:#000;text-align:center"|$911
| |
| |style="border:0px;background-color:#A29E01;width:32px;height:32px;color:#000;text-align:center"|$912
| |
| |style="border:0px;background-color:#6EB700;width:32px;height:32px;color:#000;text-align:center"|$913
| |
| |style="border:0px;background-color:#3BC609;width:32px;height:32px;color:#000;text-align:center"|$914
| |
| |style="border:0px;background-color:#27C652;width:32px;height:32px;color:#000;text-align:center"|$915
| |
| |style="border:0px;background-color:#26AEBC;width:32px;height:32px;color:#000;text-align:center"|$916
| |
| |style="border:0px;background-color:#3B98FE;width:32px;height:32px;color:#000;text-align:center"|$917
| |
| |style="border:0px;background-color:#726FFE;width:32px;height:32px;color:#000;text-align:center"|$918
| |
| |style="border:0px;background-color:#9D59FE;width:32px;height:32px;color:#000;text-align:center"|$919
| |
| |style="border:0px;background-color:#D848FF;width:32px;height:32px;color:#000;text-align:center"|$91A
| |
| |style="border:0px;background-color:#ED4ABF;width:32px;height:32px;color:#000;text-align:center"|$91B
| |
| |style="border:0px;background-color:#EF6250;width:32px;height:32px;color:#000;text-align:center"|$91C
| |
| |style="border:0px;background-color:#DEDFE3;width:32px;height:32px;color:#000;text-align:center"|$91D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$91E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$91F
| |
| |-
| |
| |style="border:0px;background-color:#424242;width:32px;height:32px;color:#fff;text-align:center"|$920
| |
| |style="border:0px;background-color:#EE9227;width:32px;height:32px;color:#000;text-align:center"|$921
| |
| |style="border:0px;background-color:#BBB701;width:32px;height:32px;color:#000;text-align:center"|$922
| |
| |style="border:0px;background-color:#8AD000;width:32px;height:32px;color:#000;text-align:center"|$923
| |
| |style="border:0px;background-color:#57DF25;width:32px;height:32px;color:#000;text-align:center"|$924
| |
| |style="border:0px;background-color:#41DE6B;width:32px;height:32px;color:#000;text-align:center"|$925
| |
| |style="border:0px;background-color:#43C6DA;width:32px;height:32px;color:#000;text-align:center"|$926
| |
| |style="border:0px;background-color:#56B2FE;width:32px;height:32px;color:#000;text-align:center"|$927
| |
| |style="border:0px;background-color:#8E87FF;width:32px;height:32px;color:#000;text-align:center"|$928
| |
| |style="border:0px;background-color:#B973FF;width:32px;height:32px;color:#000;text-align:center"|$929
| |
| |style="border:0px;background-color:#F362FE;width:32px;height:32px;color:#000;text-align:center"|$92A
| |
| |style="border:0px;background-color:#FF64D9;width:32px;height:32px;color:#000;text-align:center"|$92B
| |
| |style="border:0px;background-color:#FE7D6A;width:32px;height:32px;color:#000;text-align:center"|$92C
| |
| |style="border:0px;background-color:#F6F6F6;width:32px;height:32px;color:#000;text-align:center"|$92D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$92E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$92F
| |
| |-
| |
| |style="border:0px;background-color:#5E5E5E;width:32px;height:32px;color:#fff;text-align:center"|$930
| |
| |style="border:0px;background-color:#FFAC41;width:32px;height:32px;color:#000;text-align:center"|$931
| |
| |style="border:0px;background-color:#D3CF0E;width:32px;height:32px;color:#000;text-align:center"|$932
| |
| |style="border:0px;background-color:#A0E90C;width:32px;height:32px;color:#000;text-align:center"|$933
| |
| |style="border:0px;background-color:#71F63F;width:32px;height:32px;color:#000;text-align:center"|$934
| |
| |style="border:0px;background-color:#5EF687;width:32px;height:32px;color:#000;text-align:center"|$935
| |
| |style="border:0px;background-color:#5DDFEF;width:32px;height:32px;color:#000;text-align:center"|$936
| |
| |style="border:0px;background-color:#6FC9FE;width:32px;height:32px;color:#000;text-align:center"|$937
| |
| |style="border:0px;background-color:#A9A2FE;width:32px;height:32px;color:#000;text-align:center"|$938
| |
| |style="border:0px;background-color:#D58CFE;width:32px;height:32px;color:#000;text-align:center"|$939
| |
| |style="border:0px;background-color:#FE7EFE;width:32px;height:32px;color:#000;text-align:center"|$93A
| |
| |style="border:0px;background-color:#FF81EC;width:32px;height:32px;color:#000;text-align:center"|$93B
| |
| |style="border:0px;background-color:#FE9883;width:32px;height:32px;color:#000;text-align:center"|$93C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$93D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$93E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$93F
| |
| |-
| |
| |style="border:0px;background-color:#797775;width:32px;height:32px;color:#fff;text-align:center"|$940
| |
| |style="border:0px;background-color:#FFC55D;width:32px;height:32px;color:#000;text-align:center"|$941
| |
| |style="border:0px;background-color:#ECE72B;width:32px;height:32px;color:#000;text-align:center"|$942
| |
| |style="border:0px;background-color:#BBFD2A;width:32px;height:32px;color:#000;text-align:center"|$943
| |
| |style="border:0px;background-color:#8BFF5E;width:32px;height:32px;color:#000;text-align:center"|$944
| |
| |style="border:0px;background-color:#77FE9F;width:32px;height:32px;color:#000;text-align:center"|$945
| |
| |style="border:0px;background-color:#77F6FF;width:32px;height:32px;color:#000;text-align:center"|$946
| |
| |style="border:0px;background-color:#8AE1FD;width:32px;height:32px;color:#000;text-align:center"|$947
| |
| |style="border:0px;background-color:#BEBBFD;width:32px;height:32px;color:#000;text-align:center"|$948
| |
| |style="border:0px;background-color:#E6A7FE;width:32px;height:32px;color:#000;text-align:center"|$949
| |
| |style="border:0px;background-color:#FE96FE;width:32px;height:32px;color:#000;text-align:center"|$94A
| |
| |style="border:0px;background-color:#FF99FD;width:32px;height:32px;color:#000;text-align:center"|$94B
| |
| |style="border:0px;background-color:#FEB19B;width:32px;height:32px;color:#000;text-align:center"|$94C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$94D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$94E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$94F
| |
| |-
| |
| |style="border:0px;background-color:#939296;width:32px;height:32px;color:#000;text-align:center"|$950
| |
| |style="border:0px;background-color:#0033C6;width:32px;height:32px;color:#fff;text-align:center"|$951
| |
| |style="border:0px;background-color:#0205FE;width:32px;height:32px;color:#fff;text-align:center"|$952
| |
| |style="border:0px;background-color:#4300FE;width:32px;height:32px;color:#fff;text-align:center"|$953
| |
| |style="border:0px;background-color:#8300C2;width:32px;height:32px;color:#fff;text-align:center"|$954
| |
| |style="border:0px;background-color:#9F0064;width:32px;height:32px;color:#fff;text-align:center"|$955
| |
| |style="border:0px;background-color:#A00000;width:32px;height:32px;color:#fff;text-align:center"|$956
| |
| |style="border:0px;background-color:#840E00;width:32px;height:32px;color:#fff;text-align:center"|$957
| |
| |style="border:0px;background-color:#404000;width:32px;height:32px;color:#fff;text-align:center"|$958
| |
| |style="border:0px;background-color:#065D00;width:32px;height:32px;color:#fff;text-align:center"|$959
| |
| |style="border:0px;background-color:#017300;width:32px;height:32px;color:#fff;text-align:center"|$95A
| |
| |style="border:0px;background-color:#007001;width:32px;height:32px;color:#fff;text-align:center"|$95B
| |
| |style="border:0px;background-color:#005268;width:32px;height:32px;color:#fff;text-align:center"|$95C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$95D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$95E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$95F
| |
| |-
| |
| |style="border:0px;background-color:#ACACAC;width:32px;height:32px;color:#000;text-align:center"|$960
| |
| |style="border:0px;background-color:#0050DD;width:32px;height:32px;color:#fff;text-align:center"|$961
| |
| |style="border:0px;background-color:#1C1FFD;width:32px;height:32px;color:#fff;text-align:center"|$962
| |
| |style="border:0px;background-color:#5B00FD;width:32px;height:32px;color:#fff;text-align:center"|$963
| |
| |style="border:0px;background-color:#A000E1;width:32px;height:32px;color:#fff;text-align:center"|$964
| |
| |style="border:0px;background-color:#BB0085;width:32px;height:32px;color:#fff;text-align:center"|$965
| |
| |style="border:0px;background-color:#BC0B01;width:32px;height:32px;color:#fff;text-align:center"|$966
| |
| |style="border:0px;background-color:#A02901;width:32px;height:32px;color:#fff;text-align:center"|$967
| |
| |style="border:0px;background-color:#595D00;width:32px;height:32px;color:#fff;text-align:center"|$968
| |
| |style="border:0px;background-color:#1F7800;width:32px;height:32px;color:#fff;text-align:center"|$969
| |
| |style="border:0px;background-color:#008E00;width:32px;height:32px;color:#fff;text-align:center"|$96A
| |
| |style="border:0px;background-color:#008A00;width:32px;height:32px;color:#fff;text-align:center"|$96B
| |
| |style="border:0px;background-color:#016B83;width:32px;height:32px;color:#fff;text-align:center"|$96C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$96D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$96E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$96F
| |
| |-
| |
| |style="border:0px;background-color:#C7C4CA;width:32px;height:32px;color:#000;text-align:center"|$970
| |
| |style="border:0px;background-color:#0068FA;width:32px;height:32px;color:#fff;text-align:center"|$971
| |
| |style="border:0px;background-color:#3739FE;width:32px;height:32px;color:#fff;text-align:center"|$972
| |
| |style="border:0px;background-color:#751AFD;width:32px;height:32px;color:#fff;text-align:center"|$973
| |
| |style="border:0px;background-color:#B908F7;width:32px;height:32px;color:#fff;text-align:center"|$974
| |
| |style="border:0px;background-color:#D4089B;width:32px;height:32px;color:#fff;text-align:center"|$975
| |
| |style="border:0px;background-color:#D5270E;width:32px;height:32px;color:#fff;text-align:center"|$976
| |
| |style="border:0px;background-color:#B84301;width:32px;height:32px;color:#fff;text-align:center"|$977
| |
| |style="border:0px;background-color:#767700;width:32px;height:32px;color:#fff;text-align:center"|$978
| |
| |style="border:0px;background-color:#3A9401;width:32px;height:32px;color:#fff;text-align:center"|$979
| |
| |style="border:0px;background-color:#01A900;width:32px;height:32px;color:#fff;text-align:center"|$97A
| |
| |style="border:0px;background-color:#00A70D;width:32px;height:32px;color:#fff;text-align:center"|$97B
| |
| |style="border:0px;background-color:#00889E;width:32px;height:32px;color:#fff;text-align:center"|$97C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$97D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$97E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$97F
| |
| |-
| |
| |style="border:0px;background-color:#DDE0DF;width:32px;height:32px;color:#000;text-align:center"|$980
| |
| |style="border:0px;background-color:#0E84FE;width:32px;height:32px;color:#fff;text-align:center"|$981
| |
| |style="border:0px;background-color:#5255FE;width:32px;height:32px;color:#fff;text-align:center"|$982
| |
| |style="border:0px;background-color:#9136FC;width:32px;height:32px;color:#fff;text-align:center"|$983
| |
| |style="border:0px;background-color:#D523FE;width:32px;height:32px;color:#fff;text-align:center"|$984
| |
| |style="border:0px;background-color:#EF22BB;width:32px;height:32px;color:#fff;text-align:center"|$985
| |
| |style="border:0px;background-color:#F0412C;width:32px;height:32px;color:#fff;text-align:center"|$986
| |
| |style="border:0px;background-color:#D35E00;width:32px;height:32px;color:#fff;text-align:center"|$987
| |
| |style="border:0px;background-color:#909200;width:32px;height:32px;color:#000;text-align:center"|$988
| |
| |style="border:0px;background-color:#57B000;width:32px;height:32px;color:#000;text-align:center"|$989
| |
| |style="border:0px;background-color:#0BC701;width:32px;height:32px;color:#fff;text-align:center"|$98A
| |
| |style="border:0px;background-color:#00C327;width:32px;height:32px;color:#fff;text-align:center"|$98B
| |
| |style="border:0px;background-color:#00A4B8;width:32px;height:32px;color:#fff;text-align:center"|$98C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$98D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$98E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$98F
| |
| |-
| |
| |style="border:0px;background-color:#F8F7FB;width:32px;height:32px;color:#000;text-align:center"|$990
| |
| |style="border:0px;background-color:#2D9DFF;width:32px;height:32px;color:#000;text-align:center"|$991
| |
| |style="border:0px;background-color:#6B70FE;width:32px;height:32px;color:#fff;text-align:center"|$992
| |
| |style="border:0px;background-color:#AC4FFE;width:32px;height:32px;color:#fff;text-align:center"|$993
| |
| |style="border:0px;background-color:#ED3EFD;width:32px;height:32px;color:#000;text-align:center"|$994
| |
| |style="border:0px;background-color:#FE3ED2;width:32px;height:32px;color:#000;text-align:center"|$995
| |
| |style="border:0px;background-color:#FE5C46;width:32px;height:32px;color:#000;text-align:center"|$996
| |
| |style="border:0px;background-color:#ED7900;width:32px;height:32px;color:#000;text-align:center"|$997
| |
| |style="border:0px;background-color:#ACAC00;width:32px;height:32px;color:#000;text-align:center"|$998
| |
| |style="border:0px;background-color:#70CA00;width:32px;height:32px;color:#000;text-align:center"|$999
| |
| |style="border:0px;background-color:#26E000;width:32px;height:32px;color:#000;text-align:center"|$99A
| |
| |style="border:0px;background-color:#0ADF40;width:32px;height:32px;color:#000;text-align:center"|$99B
| |
| |style="border:0px;background-color:#07BED4;width:32px;height:32px;color:#000;text-align:center"|$99C
| |
| |style="border:0px;background-color:#0B0D0C;width:32px;height:32px;color:#fff;text-align:center"|$99D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$99E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$99F
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$9A0
| |
| |style="border:0px;background-color:#48B8FF;width:32px;height:32px;color:#000;text-align:center"|$9A1
| |
| |style="border:0px;background-color:#888AFE;width:32px;height:32px;color:#000;text-align:center"|$9A2
| |
| |style="border:0px;background-color:#C56BFF;width:32px;height:32px;color:#000;text-align:center"|$9A3
| |
| |style="border:0px;background-color:#FF59FF;width:32px;height:32px;color:#000;text-align:center"|$9A4
| |
| |style="border:0px;background-color:#FF58EB;width:32px;height:32px;color:#000;text-align:center"|$9A5
| |
| |style="border:0px;background-color:#FF7761;width:32px;height:32px;color:#000;text-align:center"|$9A6
| |
| |style="border:0px;background-color:#FE9311;width:32px;height:32px;color:#000;text-align:center"|$9A7
| |
| |style="border:0px;background-color:#C5C600;width:32px;height:32px;color:#000;text-align:center"|$9A8
| |
| |style="border:0px;background-color:#8CE000;width:32px;height:32px;color:#000;text-align:center"|$9A9
| |
| |style="border:0px;background-color:#45F50B;width:32px;height:32px;color:#000;text-align:center"|$9AA
| |
| |style="border:0px;background-color:#2BF360;width:32px;height:32px;color:#000;text-align:center"|$9AB
| |
| |style="border:0px;background-color:#26D6EC;width:32px;height:32px;color:#000;text-align:center"|$9AC
| |
| |style="border:0px;background-color:#27282C;width:32px;height:32px;color:#fff;text-align:center"|$9AD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$9AE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$9AF
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$9B0
| |
| |style="border:0px;background-color:#63D0FE;width:32px;height:32px;color:#000;text-align:center"|$9B1
| |
| |style="border:0px;background-color:#A2A4FE;width:32px;height:32px;color:#000;text-align:center"|$9B2
| |
| |style="border:0px;background-color:#DE86FE;width:32px;height:32px;color:#000;text-align:center"|$9B3
| |
| |style="border:0px;background-color:#FF73FE;width:32px;height:32px;color:#000;text-align:center"|$9B4
| |
| |style="border:0px;background-color:#FF73FF;width:32px;height:32px;color:#000;text-align:center"|$9B5
| |
| |style="border:0px;background-color:#FE917C;width:32px;height:32px;color:#000;text-align:center"|$9B6
| |
| |style="border:0px;background-color:#FEAD2D;width:32px;height:32px;color:#000;text-align:center"|$9B7
| |
| |style="border:0px;background-color:#DBDD00;width:32px;height:32px;color:#000;text-align:center"|$9B8
| |
| |style="border:0px;background-color:#A4F901;width:32px;height:32px;color:#000;text-align:center"|$9B9
| |
| |style="border:0px;background-color:#5EFE25;width:32px;height:32px;color:#000;text-align:center"|$9BA
| |
| |style="border:0px;background-color:#44FE78;width:32px;height:32px;color:#000;text-align:center"|$9BB
| |
| |style="border:0px;background-color:#41EEFE;width:32px;height:32px;color:#000;text-align:center"|$9BC
| |
| |style="border:0px;background-color:#434343;width:32px;height:32px;color:#fff;text-align:center"|$9BD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$9BE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$9BF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$9C0
| |
| |style="border:0px;background-color:#4D0000;width:32px;height:32px;color:#fff;text-align:center"|$9C1
| |
| |style="border:0px;background-color:#191700;width:32px;height:32px;color:#fff;text-align:center"|$9C2
| |
| |style="border:0px;background-color:#002F00;width:32px;height:32px;color:#fff;text-align:center"|$9C3
| |
| |style="border:0px;background-color:#003D01;width:32px;height:32px;color:#fff;text-align:center"|$9C4
| |
| |style="border:0px;background-color:#003C00;width:32px;height:32px;color:#fff;text-align:center"|$9C5
| |
| |style="border:0px;background-color:#00243A;width:32px;height:32px;color:#fff;text-align:center"|$9C6
| |
| |style="border:0px;background-color:#000F76;width:32px;height:32px;color:#fff;text-align:center"|$9C7
| |
| |style="border:0px;background-color:#0000B2;width:32px;height:32px;color:#fff;text-align:center"|$9C8
| |
| |style="border:0px;background-color:#1400B2;width:32px;height:32px;color:#fff;text-align:center"|$9C9
| |
| |style="border:0px;background-color:#4E007A;width:32px;height:32px;color:#fff;text-align:center"|$9CA
| |
| |style="border:0px;background-color:#610039;width:32px;height:32px;color:#fff;text-align:center"|$9CB
| |
| |style="border:0px;background-color:#640000;width:32px;height:32px;color:#fff;text-align:center"|$9CC
| |
| |style="border:0px;background-color:#5E5E61;width:32px;height:32px;color:#fff;text-align:center"|$9CD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$9CE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$9CF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$9D0
| |
| |style="border:0px;background-color:#660C01;width:32px;height:32px;color:#fff;text-align:center"|$9D1
| |
| |style="border:0px;background-color:#343100;width:32px;height:32px;color:#fff;text-align:center"|$9D2
| |
| |style="border:0px;background-color:#024800;width:32px;height:32px;color:#fff;text-align:center"|$9D3
| |
| |style="border:0px;background-color:#005700;width:32px;height:32px;color:#fff;text-align:center"|$9D4
| |
| |style="border:0px;background-color:#005700;width:32px;height:32px;color:#fff;text-align:center"|$9D5
| |
| |style="border:0px;background-color:#004151;width:32px;height:32px;color:#fff;text-align:center"|$9D6
| |
| |style="border:0px;background-color:#002992;width:32px;height:32px;color:#fff;text-align:center"|$9D7
| |
| |style="border:0px;background-color:#0603D6;width:32px;height:32px;color:#fff;text-align:center"|$9D8
| |
| |style="border:0px;background-color:#3100D1;width:32px;height:32px;color:#fff;text-align:center"|$9D9
| |
| |style="border:0px;background-color:#6C0095;width:32px;height:32px;color:#fff;text-align:center"|$9DA
| |
| |style="border:0px;background-color:#800055;width:32px;height:32px;color:#fff;text-align:center"|$9DB
| |
| |style="border:0px;background-color:#820000;width:32px;height:32px;color:#fff;text-align:center"|$9DC
| |
| |style="border:0px;background-color:#787878;width:32px;height:32px;color:#fff;text-align:center"|$9DD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$9DE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$9DF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$9E0
| |
| |style="border:0px;background-color:#852700;width:32px;height:32px;color:#fff;text-align:center"|$9E1
| |
| |style="border:0px;background-color:#514F00;width:32px;height:32px;color:#fff;text-align:center"|$9E2
| |
| |style="border:0px;background-color:#1C6700;width:32px;height:32px;color:#fff;text-align:center"|$9E3
| |
| |style="border:0px;background-color:#007500;width:32px;height:32px;color:#fff;text-align:center"|$9E4
| |
| |style="border:0px;background-color:#007501;width:32px;height:32px;color:#fff;text-align:center"|$9E5
| |
| |style="border:0px;background-color:#005D6F;width:32px;height:32px;color:#fff;text-align:center"|$9E6
| |
| |style="border:0px;background-color:#0046B0;width:32px;height:32px;color:#fff;text-align:center"|$9E7
| |
| |style="border:0px;background-color:#1F1EF5;width:32px;height:32px;color:#fff;text-align:center"|$9E8
| |
| |style="border:0px;background-color:#4E06F5;width:32px;height:32px;color:#fff;text-align:center"|$9E9
| |
| |style="border:0px;background-color:#8A00B7;width:32px;height:32px;color:#fff;text-align:center"|$9EA
| |
| |style="border:0px;background-color:#9E0071;width:32px;height:32px;color:#fff;text-align:center"|$9EB
| |
| |style="border:0px;background-color:#A01100;width:32px;height:32px;color:#fff;text-align:center"|$9EC
| |
| |style="border:0px;background-color:#939391;width:32px;height:32px;color:#000;text-align:center"|$9ED
| |
| |style="border:0px;background-color:#000002;width:32px;height:32px;color:#fff;text-align:center"|$9EE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$9EF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$9F0
| |
| |style="border:0px;background-color:#A14200;width:32px;height:32px;color:#fff;text-align:center"|$9F1
| |
| |style="border:0px;background-color:#6C6901;width:32px;height:32px;color:#fff;text-align:center"|$9F2
| |
| |style="border:0px;background-color:#388300;width:32px;height:32px;color:#fff;text-align:center"|$9F3
| |
| |style="border:0px;background-color:#059001;width:32px;height:32px;color:#fff;text-align:center"|$9F4
| |
| |style="border:0px;background-color:#00911A;width:32px;height:32px;color:#fff;text-align:center"|$9F5
| |
| |style="border:0px;background-color:#00798A;width:32px;height:32px;color:#fff;text-align:center"|$9F6
| |
| |style="border:0px;background-color:#0460CD;width:32px;height:32px;color:#fff;text-align:center"|$9F7
| |
| |style="border:0px;background-color:#3939FD;width:32px;height:32px;color:#fff;text-align:center"|$9F8
| |
| |style="border:0px;background-color:#6921FE;width:32px;height:32px;color:#fff;text-align:center"|$9F9
| |
| |style="border:0px;background-color:#A411D3;width:32px;height:32px;color:#fff;text-align:center"|$9FA
| |
| |style="border:0px;background-color:#B8128C;width:32px;height:32px;color:#fff;text-align:center"|$9FB
| |
| |style="border:0px;background-color:#BB291A;width:32px;height:32px;color:#fff;text-align:center"|$9FC
| |
| |style="border:0px;background-color:#ACADA8;width:32px;height:32px;color:#000;text-align:center"|$9FD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$9FE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$9FF
| |
| |-
| |
| ! colspan=16 | Saturation level $A
| |
| |-
| |
| |style="border:0px;background-color:#1A1C1B;width:32px;height:32px;color:#fff;text-align:center"|$A00
| |
| |style="border:0px;background-color:#B16000;width:32px;height:32px;color:#fff;text-align:center"|$A01
| |
| |style="border:0px;background-color:#838001;width:32px;height:32px;color:#fff;text-align:center"|$A02
| |
| |style="border:0px;background-color:#589701;width:32px;height:32px;color:#fff;text-align:center"|$A03
| |
| |style="border:0px;background-color:#2AA300;width:32px;height:32px;color:#fff;text-align:center"|$A04
| |
| |style="border:0px;background-color:#15A43B;width:32px;height:32px;color:#fff;text-align:center"|$A05
| |
| |style="border:0px;background-color:#158F9C;width:32px;height:32px;color:#fff;text-align:center"|$A06
| |
| |style="border:0px;background-color:#2879D5;width:32px;height:32px;color:#fff;text-align:center"|$A07
| |
| |style="border:0px;background-color:#5857FD;width:32px;height:32px;color:#fff;text-align:center"|$A08
| |
| |style="border:0px;background-color:#8043FD;width:32px;height:32px;color:#fff;text-align:center"|$A09
| |
| |style="border:0px;background-color:#B333D5;width:32px;height:32px;color:#fff;text-align:center"|$A0A
| |
| |style="border:0px;background-color:#C635A0;width:32px;height:32px;color:#fff;text-align:center"|$A0B
| |
| |style="border:0px;background-color:#C84A3C;width:32px;height:32px;color:#fff;text-align:center"|$A0C
| |
| |style="border:0px;background-color:#B9B9B9;width:32px;height:32px;color:#000;text-align:center"|$A0D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A0E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A0F
| |
| |-
| |
| |style="border:0px;background-color:#343437;width:32px;height:32px;color:#fff;text-align:center"|$A10
| |
| |style="border:0px;background-color:#C87A18;width:32px;height:32px;color:#000;text-align:center"|$A11
| |
| |style="border:0px;background-color:#9D9801;width:32px;height:32px;color:#000;text-align:center"|$A12
| |
| |style="border:0px;background-color:#70AF00;width:32px;height:32px;color:#000;text-align:center"|$A13
| |
| |style="border:0px;background-color:#44BD18;width:32px;height:32px;color:#000;text-align:center"|$A14
| |
| |style="border:0px;background-color:#30BD55;width:32px;height:32px;color:#000;text-align:center"|$A15
| |
| |style="border:0px;background-color:#2FA7B5;width:32px;height:32px;color:#000;text-align:center"|$A16
| |
| |style="border:0px;background-color:#4495F0;width:32px;height:32px;color:#000;text-align:center"|$A17
| |
| |style="border:0px;background-color:#7370FD;width:32px;height:32px;color:#000;text-align:center"|$A18
| |
| |style="border:0px;background-color:#9A5EFE;width:32px;height:32px;color:#000;text-align:center"|$A19
| |
| |style="border:0px;background-color:#CC4FF2;width:32px;height:32px;color:#000;text-align:center"|$A1A
| |
| |style="border:0px;background-color:#DF51B5;width:32px;height:32px;color:#000;text-align:center"|$A1B
| |
| |style="border:0px;background-color:#E36653;width:32px;height:32px;color:#000;text-align:center"|$A1C
| |
| |style="border:0px;background-color:#D2D3CD;width:32px;height:32px;color:#000;text-align:center"|$A1D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A1E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A1F
| |
| |-
| |
| |style="border:0px;background-color:#51504E;width:32px;height:32px;color:#fff;text-align:center"|$A20
| |
| |style="border:0px;background-color:#E39535;width:32px;height:32px;color:#000;text-align:center"|$A21
| |
| |style="border:0px;background-color:#B5B306;width:32px;height:32px;color:#000;text-align:center"|$A22
| |
| |style="border:0px;background-color:#8BC70B;width:32px;height:32px;color:#000;text-align:center"|$A23
| |
| |style="border:0px;background-color:#60D536;width:32px;height:32px;color:#000;text-align:center"|$A24
| |
| |style="border:0px;background-color:#4CD772;width:32px;height:32px;color:#000;text-align:center"|$A25
| |
| |style="border:0px;background-color:#4FC0D0;width:32px;height:32px;color:#000;text-align:center"|$A26
| |
| |style="border:0px;background-color:#60AEFE;width:32px;height:32px;color:#000;text-align:center"|$A27
| |
| |style="border:0px;background-color:#8F8BFF;width:32px;height:32px;color:#000;text-align:center"|$A28
| |
| |style="border:0px;background-color:#B27BFE;width:32px;height:32px;color:#000;text-align:center"|$A29
| |
| |style="border:0px;background-color:#E56BFE;width:32px;height:32px;color:#000;text-align:center"|$A2A
| |
| |style="border:0px;background-color:#F96CCF;width:32px;height:32px;color:#000;text-align:center"|$A2B
| |
| |style="border:0px;background-color:#FB806F;width:32px;height:32px;color:#000;text-align:center"|$A2C
| |
| |style="border:0px;background-color:#EBEAEF;width:32px;height:32px;color:#000;text-align:center"|$A2D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A2E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A2F
| |
| |-
| |
| |style="border:0px;background-color:#6A6A6A;width:32px;height:32px;color:#fff;text-align:center"|$A30
| |
| |style="border:0px;background-color:#F8AD52;width:32px;height:32px;color:#000;text-align:center"|$A31
| |
| |style="border:0px;background-color:#CECB24;width:32px;height:32px;color:#000;text-align:center"|$A32
| |
| |style="border:0px;background-color:#A4E026;width:32px;height:32px;color:#000;text-align:center"|$A33
| |
| |style="border:0px;background-color:#79EC51;width:32px;height:32px;color:#000;text-align:center"|$A34
| |
| |style="border:0px;background-color:#69ED8A;width:32px;height:32px;color:#000;text-align:center"|$A35
| |
| |style="border:0px;background-color:#68D8E4;width:32px;height:32px;color:#000;text-align:center"|$A36
| |
| |style="border:0px;background-color:#79C6FE;width:32px;height:32px;color:#000;text-align:center"|$A37
| |
| |style="border:0px;background-color:#A8A5FF;width:32px;height:32px;color:#000;text-align:center"|$A38
| |
| |style="border:0px;background-color:#C993FF;width:32px;height:32px;color:#000;text-align:center"|$A39
| |
| |style="border:0px;background-color:#FD84FE;width:32px;height:32px;color:#000;text-align:center"|$A3A
| |
| |style="border:0px;background-color:#FF85E8;width:32px;height:32px;color:#000;text-align:center"|$A3B
| |
| |style="border:0px;background-color:#FF9A8C;width:32px;height:32px;color:#000;text-align:center"|$A3C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$A3D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A3E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A3F
| |
| |-
| |
| |style="border:0px;background-color:#858585;width:32px;height:32px;color:#000;text-align:center"|$A40
| |
| |style="border:0px;background-color:#FEC76C;width:32px;height:32px;color:#000;text-align:center"|$A41
| |
| |style="border:0px;background-color:#E6E43F;width:32px;height:32px;color:#000;text-align:center"|$A42
| |
| |style="border:0px;background-color:#BDF942;width:32px;height:32px;color:#000;text-align:center"|$A43
| |
| |style="border:0px;background-color:#93FF6E;width:32px;height:32px;color:#000;text-align:center"|$A44
| |
| |style="border:0px;background-color:#84FFA5;width:32px;height:32px;color:#000;text-align:center"|$A45
| |
| |style="border:0px;background-color:#85F0FF;width:32px;height:32px;color:#000;text-align:center"|$A46
| |
| |style="border:0px;background-color:#95DEFD;width:32px;height:32px;color:#000;text-align:center"|$A47
| |
| |style="border:0px;background-color:#C0BEFE;width:32px;height:32px;color:#000;text-align:center"|$A48
| |
| |style="border:0px;background-color:#E4ADFF;width:32px;height:32px;color:#000;text-align:center"|$A49
| |
| |style="border:0px;background-color:#FE9FFE;width:32px;height:32px;color:#000;text-align:center"|$A4A
| |
| |style="border:0px;background-color:#FEA1FC;width:32px;height:32px;color:#000;text-align:center"|$A4B
| |
| |style="border:0px;background-color:#FEB5A3;width:32px;height:32px;color:#000;text-align:center"|$A4C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$A4D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A4E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A4F
| |
| |-
| |
| |style="border:0px;background-color:#A0A09E;width:32px;height:32px;color:#000;text-align:center"|$A50
| |
| |style="border:0px;background-color:#0035D8;width:32px;height:32px;color:#fff;text-align:center"|$A51
| |
| |style="border:0px;background-color:#0203FD;width:32px;height:32px;color:#fff;text-align:center"|$A52
| |
| |style="border:0px;background-color:#4600FF;width:32px;height:32px;color:#fff;text-align:center"|$A53
| |
| |style="border:0px;background-color:#8E00D2;width:32px;height:32px;color:#fff;text-align:center"|$A54
| |
| |style="border:0px;background-color:#AC006E;width:32px;height:32px;color:#fff;text-align:center"|$A55
| |
| |style="border:0px;background-color:#AC0000;width:32px;height:32px;color:#fff;text-align:center"|$A56
| |
| |style="border:0px;background-color:#8F0D01;width:32px;height:32px;color:#fff;text-align:center"|$A57
| |
| |style="border:0px;background-color:#444301;width:32px;height:32px;color:#fff;text-align:center"|$A58
| |
| |style="border:0px;background-color:#036300;width:32px;height:32px;color:#fff;text-align:center"|$A59
| |
| |style="border:0px;background-color:#007E00;width:32px;height:32px;color:#fff;text-align:center"|$A5A
| |
| |style="border:0px;background-color:#007900;width:32px;height:32px;color:#fff;text-align:center"|$A5B
| |
| |style="border:0px;background-color:#005772;width:32px;height:32px;color:#fff;text-align:center"|$A5C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$A5D
| |
| |style="border:0px;background-color:#000002;width:32px;height:32px;color:#fff;text-align:center"|$A5E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A5F
| |
| |-
| |
| |style="border:0px;background-color:#BCB9BA;width:32px;height:32px;color:#000;text-align:center"|$A60
| |
| |style="border:0px;background-color:#0051F4;width:32px;height:32px;color:#fff;text-align:center"|$A61
| |
| |style="border:0px;background-color:#191EFC;width:32px;height:32px;color:#fff;text-align:center"|$A62
| |
| |style="border:0px;background-color:#6100FE;width:32px;height:32px;color:#fff;text-align:center"|$A63
| |
| |style="border:0px;background-color:#AC01F0;width:32px;height:32px;color:#fff;text-align:center"|$A64
| |
| |style="border:0px;background-color:#C90089;width:32px;height:32px;color:#fff;text-align:center"|$A65
| |
| |style="border:0px;background-color:#C90800;width:32px;height:32px;color:#fff;text-align:center"|$A66
| |
| |style="border:0px;background-color:#AC2900;width:32px;height:32px;color:#fff;text-align:center"|$A67
| |
| |style="border:0px;background-color:#5E6000;width:32px;height:32px;color:#fff;text-align:center"|$A68
| |
| |style="border:0px;background-color:#1C8101;width:32px;height:32px;color:#fff;text-align:center"|$A69
| |
| |style="border:0px;background-color:#009B00;width:32px;height:32px;color:#fff;text-align:center"|$A6A
| |
| |style="border:0px;background-color:#009800;width:32px;height:32px;color:#fff;text-align:center"|$A6B
| |
| |style="border:0px;background-color:#00758E;width:32px;height:32px;color:#fff;text-align:center"|$A6C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$A6D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A6E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A6F
| |
| |-
| |
| |style="border:0px;background-color:#D3D3D5;width:32px;height:32px;color:#000;text-align:center"|$A70
| |
| |style="border:0px;background-color:#016DFE;width:32px;height:32px;color:#fff;text-align:center"|$A71
| |
| |style="border:0px;background-color:#313BFC;width:32px;height:32px;color:#fff;text-align:center"|$A72
| |
| |style="border:0px;background-color:#7C16FD;width:32px;height:32px;color:#fff;text-align:center"|$A73
| |
| |style="border:0px;background-color:#C801FE;width:32px;height:32px;color:#fff;text-align:center"|$A74
| |
| |style="border:0px;background-color:#E600AA;width:32px;height:32px;color:#fff;text-align:center"|$A75
| |
| |style="border:0px;background-color:#E9220B;width:32px;height:32px;color:#fff;text-align:center"|$A76
| |
| |style="border:0px;background-color:#CB4101;width:32px;height:32px;color:#fff;text-align:center"|$A77
| |
| |style="border:0px;background-color:#7F7A00;width:32px;height:32px;color:#fff;text-align:center"|$A78
| |
| |style="border:0px;background-color:#3C9901;width:32px;height:32px;color:#fff;text-align:center"|$A79
| |
| |style="border:0px;background-color:#01B601;width:32px;height:32px;color:#fff;text-align:center"|$A7A
| |
| |style="border:0px;background-color:#00B403;width:32px;height:32px;color:#fff;text-align:center"|$A7B
| |
| |style="border:0px;background-color:#0091A6;width:32px;height:32px;color:#fff;text-align:center"|$A7C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$A7D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A7E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A7F
| |
| |-
| |
| |style="border:0px;background-color:#EBECE8;width:32px;height:32px;color:#000;text-align:center"|$A80
| |
| |style="border:0px;background-color:#0688FF;width:32px;height:32px;color:#fff;text-align:center"|$A81
| |
| |style="border:0px;background-color:#5154FE;width:32px;height:32px;color:#fff;text-align:center"|$A82
| |
| |style="border:0px;background-color:#9531FD;width:32px;height:32px;color:#fff;text-align:center"|$A83
| |
| |style="border:0px;background-color:#E11CFF;width:32px;height:32px;color:#fff;text-align:center"|$A84
| |
| |style="border:0px;background-color:#FD1AC1;width:32px;height:32px;color:#fff;text-align:center"|$A85
| |
| |style="border:0px;background-color:#FD3D24;width:32px;height:32px;color:#fff;text-align:center"|$A86
| |
| |style="border:0px;background-color:#E05E01;width:32px;height:32px;color:#fff;text-align:center"|$A87
| |
| |style="border:0px;background-color:#949700;width:32px;height:32px;color:#000;text-align:center"|$A88
| |
| |style="border:0px;background-color:#54B600;width:32px;height:32px;color:#000;text-align:center"|$A89
| |
| |style="border:0px;background-color:#00D001;width:32px;height:32px;color:#fff;text-align:center"|$A8A
| |
| |style="border:0px;background-color:#00CE24;width:32px;height:32px;color:#fff;text-align:center"|$A8B
| |
| |style="border:0px;background-color:#00ABC4;width:32px;height:32px;color:#fff;text-align:center"|$A8C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A8D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A8E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A8F
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$A90
| |
| |style="border:0px;background-color:#21A0FE;width:32px;height:32px;color:#000;text-align:center"|$A91
| |
| |style="border:0px;background-color:#6B6CFD;width:32px;height:32px;color:#fff;text-align:center"|$A92
| |
| |style="border:0px;background-color:#AF4AFD;width:32px;height:32px;color:#fff;text-align:center"|$A93
| |
| |style="border:0px;background-color:#F936FF;width:32px;height:32px;color:#000;text-align:center"|$A94
| |
| |style="border:0px;background-color:#FF35D6;width:32px;height:32px;color:#000;text-align:center"|$A95
| |
| |style="border:0px;background-color:#FF583D;width:32px;height:32px;color:#000;text-align:center"|$A96
| |
| |style="border:0px;background-color:#F97801;width:32px;height:32px;color:#000;text-align:center"|$A97
| |
| |style="border:0px;background-color:#B0B000;width:32px;height:32px;color:#000;text-align:center"|$A98
| |
| |style="border:0px;background-color:#6BD100;width:32px;height:32px;color:#000;text-align:center"|$A99
| |
| |style="border:0px;background-color:#1CE700;width:32px;height:32px;color:#000;text-align:center"|$A9A
| |
| |style="border:0px;background-color:#00E444;width:32px;height:32px;color:#000;text-align:center"|$A9B
| |
| |style="border:0px;background-color:#00C2DE;width:32px;height:32px;color:#000;text-align:center"|$A9C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A9D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A9E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$A9F
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$AA0
| |
| |style="border:0px;background-color:#3EBBFE;width:32px;height:32px;color:#000;text-align:center"|$AA1
| |
| |style="border:0px;background-color:#8688FD;width:32px;height:32px;color:#000;text-align:center"|$AA2
| |
| |style="border:0px;background-color:#C867FE;width:32px;height:32px;color:#000;text-align:center"|$AA3
| |
| |style="border:0px;background-color:#FD51FD;width:32px;height:32px;color:#000;text-align:center"|$AA4
| |
| |style="border:0px;background-color:#FF52F1;width:32px;height:32px;color:#000;text-align:center"|$AA5
| |
| |style="border:0px;background-color:#FF735C;width:32px;height:32px;color:#000;text-align:center"|$AA6
| |
| |style="border:0px;background-color:#FE9302;width:32px;height:32px;color:#000;text-align:center"|$AA7
| |
| |style="border:0px;background-color:#C7CA00;width:32px;height:32px;color:#000;text-align:center"|$AA8
| |
| |style="border:0px;background-color:#8AE801;width:32px;height:32px;color:#000;text-align:center"|$AA9
| |
| |style="border:0px;background-color:#3AFE01;width:32px;height:32px;color:#000;text-align:center"|$AAA
| |
| |style="border:0px;background-color:#1CFD57;width:32px;height:32px;color:#000;text-align:center"|$AAB
| |
| |style="border:0px;background-color:#18DDF0;width:32px;height:32px;color:#000;text-align:center"|$AAC
| |
| |style="border:0px;background-color:#191919;width:32px;height:32px;color:#fff;text-align:center"|$AAD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$AAE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$AAF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$AB0
| |
| |style="border:0px;background-color:#2C0000;width:32px;height:32px;color:#fff;text-align:center"|$AB1
| |
| |style="border:0px;background-color:#020100;width:32px;height:32px;color:#fff;text-align:center"|$AB2
| |
| |style="border:0px;background-color:#011400;width:32px;height:32px;color:#fff;text-align:center"|$AB3
| |
| |style="border:0px;background-color:#012000;width:32px;height:32px;color:#fff;text-align:center"|$AB4
| |
| |style="border:0px;background-color:#001F00;width:32px;height:32px;color:#fff;text-align:center"|$AB5
| |
| |style="border:0px;background-color:#000D1A;width:32px;height:32px;color:#fff;text-align:center"|$AB6
| |
| |style="border:0px;background-color:#00004F;width:32px;height:32px;color:#fff;text-align:center"|$AB7
| |
| |style="border:0px;background-color:#010080;width:32px;height:32px;color:#fff;text-align:center"|$AB8
| |
| |style="border:0px;background-color:#010084;width:32px;height:32px;color:#fff;text-align:center"|$AB9
| |
| |style="border:0px;background-color:#2E0051;width:32px;height:32px;color:#fff;text-align:center"|$ABA
| |
| |style="border:0px;background-color:#3C001D;width:32px;height:32px;color:#fff;text-align:center"|$ABB
| |
| |style="border:0px;background-color:#400001;width:32px;height:32px;color:#fff;text-align:center"|$ABC
| |
| |style="border:0px;background-color:#353736;width:32px;height:32px;color:#fff;text-align:center"|$ABD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$ABE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$ABF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$AC0
| |
| |style="border:0px;background-color:#3F0001;width:32px;height:32px;color:#fff;text-align:center"|$AC1
| |
| |style="border:0px;background-color:#131200;width:32px;height:32px;color:#fff;text-align:center"|$AC2
| |
| |style="border:0px;background-color:#002700;width:32px;height:32px;color:#fff;text-align:center"|$AC3
| |
| |style="border:0px;background-color:#013300;width:32px;height:32px;color:#fff;text-align:center"|$AC4
| |
| |style="border:0px;background-color:#003500;width:32px;height:32px;color:#fff;text-align:center"|$AC5
| |
| |style="border:0px;background-color:#00202D;width:32px;height:32px;color:#fff;text-align:center"|$AC6
| |
| |style="border:0px;background-color:#010D63;width:32px;height:32px;color:#fff;text-align:center"|$AC7
| |
| |style="border:0px;background-color:#000096;width:32px;height:32px;color:#fff;text-align:center"|$AC8
| |
| |style="border:0px;background-color:#100097;width:32px;height:32px;color:#fff;text-align:center"|$AC9
| |
| |style="border:0px;background-color:#420067;width:32px;height:32px;color:#fff;text-align:center"|$ACA
| |
| |style="border:0px;background-color:#52002F;width:32px;height:32px;color:#fff;text-align:center"|$ACB
| |
| |style="border:0px;background-color:#570100;width:32px;height:32px;color:#fff;text-align:center"|$ACC
| |
| |style="border:0px;background-color:#51524D;width:32px;height:32px;color:#fff;text-align:center"|$ACD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$ACE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$ACF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$AD0
| |
| |style="border:0px;background-color:#5C0D01;width:32px;height:32px;color:#fff;text-align:center"|$AD1
| |
| |style="border:0px;background-color:#2F2D00;width:32px;height:32px;color:#fff;text-align:center"|$AD2
| |
| |style="border:0px;background-color:#044200;width:32px;height:32px;color:#fff;text-align:center"|$AD3
| |
| |style="border:0px;background-color:#004E00;width:32px;height:32px;color:#fff;text-align:center"|$AD4
| |
| |style="border:0px;background-color:#004F00;width:32px;height:32px;color:#fff;text-align:center"|$AD5
| |
| |style="border:0px;background-color:#00394A;width:32px;height:32px;color:#fff;text-align:center"|$AD6
| |
| |style="border:0px;background-color:#002880;width:32px;height:32px;color:#fff;text-align:center"|$AD7
| |
| |style="border:0px;background-color:#0904B9;width:32px;height:32px;color:#fff;text-align:center"|$AD8
| |
| |style="border:0px;background-color:#2D01B3;width:32px;height:32px;color:#fff;text-align:center"|$AD9
| |
| |style="border:0px;background-color:#61007D;width:32px;height:32px;color:#fff;text-align:center"|$ADA
| |
| |style="border:0px;background-color:#72004C;width:32px;height:32px;color:#fff;text-align:center"|$ADB
| |
| |style="border:0px;background-color:#720000;width:32px;height:32px;color:#fff;text-align:center"|$ADC
| |
| |style="border:0px;background-color:#696B68;width:32px;height:32px;color:#fff;text-align:center"|$ADD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$ADE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$ADF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$AE0
| |
| |style="border:0px;background-color:#782901;width:32px;height:32px;color:#fff;text-align:center"|$AE1
| |
| |style="border:0px;background-color:#4C4A00;width:32px;height:32px;color:#fff;text-align:center"|$AE2
| |
| |style="border:0px;background-color:#1F5F00;width:32px;height:32px;color:#fff;text-align:center"|$AE3
| |
| |style="border:0px;background-color:#006C00;width:32px;height:32px;color:#fff;text-align:center"|$AE4
| |
| |style="border:0px;background-color:#006D04;width:32px;height:32px;color:#fff;text-align:center"|$AE5
| |
| |style="border:0px;background-color:#005768;width:32px;height:32px;color:#fff;text-align:center"|$AE6
| |
| |style="border:0px;background-color:#00429D;width:32px;height:32px;color:#fff;text-align:center"|$AE7
| |
| |style="border:0px;background-color:#231FD8;width:32px;height:32px;color:#fff;text-align:center"|$AE8
| |
| |style="border:0px;background-color:#4B0BDB;width:32px;height:32px;color:#fff;text-align:center"|$AE9
| |
| |style="border:0px;background-color:#7F00A4;width:32px;height:32px;color:#fff;text-align:center"|$AEA
| |
| |style="border:0px;background-color:#8E0068;width:32px;height:32px;color:#fff;text-align:center"|$AEB
| |
| |style="border:0px;background-color:#901504;width:32px;height:32px;color:#fff;text-align:center"|$AEC
| |
| |style="border:0px;background-color:#858583;width:32px;height:32px;color:#000;text-align:center"|$AED
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$AEE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$AEF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$AF0
| |
| |style="border:0px;background-color:#944401;width:32px;height:32px;color:#fff;text-align:center"|$AF1
| |
| |style="border:0px;background-color:#666400;width:32px;height:32px;color:#fff;text-align:center"|$AF2
| |
| |style="border:0px;background-color:#3C7A00;width:32px;height:32px;color:#fff;text-align:center"|$AF3
| |
| |style="border:0px;background-color:#0E8600;width:32px;height:32px;color:#fff;text-align:center"|$AF4
| |
| |style="border:0px;background-color:#008820;width:32px;height:32px;color:#fff;text-align:center"|$AF5
| |
| |style="border:0px;background-color:#007181;width:32px;height:32px;color:#fff;text-align:center"|$AF6
| |
| |style="border:0px;background-color:#0E5DB9;width:32px;height:32px;color:#fff;text-align:center"|$AF7
| |
| |style="border:0px;background-color:#3F3BF2;width:32px;height:32px;color:#fff;text-align:center"|$AF8
| |
| |style="border:0px;background-color:#6628F2;width:32px;height:32px;color:#fff;text-align:center"|$AF9
| |
| |style="border:0px;background-color:#9719BD;width:32px;height:32px;color:#fff;text-align:center"|$AFA
| |
| |style="border:0px;background-color:#A91A83;width:32px;height:32px;color:#fff;text-align:center"|$AFB
| |
| |style="border:0px;background-color:#AB3021;width:32px;height:32px;color:#fff;text-align:center"|$AFC
| |
| |style="border:0px;background-color:#A0A0A0;width:32px;height:32px;color:#000;text-align:center"|$AFD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$AFE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$AFF
| |
| |-
| |
| ! colspan=16 | Saturation level $B
| |
| |-
| |
| |style="border:0px;background-color:#272821;width:32px;height:32px;color:#fff;text-align:center"|$B00
| |
| |style="border:0px;background-color:#A6610E;width:32px;height:32px;color:#fff;text-align:center"|$B01
| |
| |style="border:0px;background-color:#7E7D00;width:32px;height:32px;color:#fff;text-align:center"|$B02
| |
| |style="border:0px;background-color:#598F00;width:32px;height:32px;color:#fff;text-align:center"|$B03
| |
| |style="border:0px;background-color:#329811;width:32px;height:32px;color:#fff;text-align:center"|$B04
| |
| |style="border:0px;background-color:#239941;width:32px;height:32px;color:#fff;text-align:center"|$B05
| |
| |style="border:0px;background-color:#228896;width:32px;height:32px;color:#fff;text-align:center"|$B06
| |
| |style="border:0px;background-color:#3078C4;width:32px;height:32px;color:#fff;text-align:center"|$B07
| |
| |style="border:0px;background-color:#5D59F4;width:32px;height:32px;color:#fff;text-align:center"|$B08
| |
| |style="border:0px;background-color:#7C49F5;width:32px;height:32px;color:#fff;text-align:center"|$B09
| |
| |style="border:0px;background-color:#A73CC7;width:32px;height:32px;color:#fff;text-align:center"|$B0A
| |
| |style="border:0px;background-color:#B63E96;width:32px;height:32px;color:#fff;text-align:center"|$B0B
| |
| |style="border:0px;background-color:#B85043;width:32px;height:32px;color:#fff;text-align:center"|$B0C
| |
| |style="border:0px;background-color:#ADAEA9;width:32px;height:32px;color:#000;text-align:center"|$B0D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B0E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B0F
| |
| |-
| |
| |style="border:0px;background-color:#434341;width:32px;height:32px;color:#fff;text-align:center"|$B10
| |
| |style="border:0px;background-color:#BF7B28;width:32px;height:32px;color:#000;text-align:center"|$B11
| |
| |style="border:0px;background-color:#989804;width:32px;height:32px;color:#000;text-align:center"|$B12
| |
| |style="border:0px;background-color:#75A801;width:32px;height:32px;color:#000;text-align:center"|$B13
| |
| |style="border:0px;background-color:#4DB329;width:32px;height:32px;color:#000;text-align:center"|$B14
| |
| |style="border:0px;background-color:#3EB45C;width:32px;height:32px;color:#000;text-align:center"|$B15
| |
| |style="border:0px;background-color:#3CA4B1;width:32px;height:32px;color:#000;text-align:center"|$B16
| |
| |style="border:0px;background-color:#4D90DE;width:32px;height:32px;color:#000;text-align:center"|$B17
| |
| |style="border:0px;background-color:#7774FF;width:32px;height:32px;color:#000;text-align:center"|$B18
| |
| |style="border:0px;background-color:#9863FE;width:32px;height:32px;color:#000;text-align:center"|$B19
| |
| |style="border:0px;background-color:#C156E5;width:32px;height:32px;color:#000;text-align:center"|$B1A
| |
| |style="border:0px;background-color:#D059AD;width:32px;height:32px;color:#000;text-align:center"|$B1B
| |
| |style="border:0px;background-color:#D06B5C;width:32px;height:32px;color:#000;text-align:center"|$B1C
| |
| |style="border:0px;background-color:#C5C5C5;width:32px;height:32px;color:#000;text-align:center"|$B1D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B1E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B1F
| |
| |-
| |
| |style="border:0px;background-color:#5D5D5B;width:32px;height:32px;color:#fff;text-align:center"|$B20
| |
| |style="border:0px;background-color:#D89745;width:32px;height:32px;color:#000;text-align:center"|$B21
| |
| |style="border:0px;background-color:#B2B220;width:32px;height:32px;color:#000;text-align:center"|$B22
| |
| |style="border:0px;background-color:#90C222;width:32px;height:32px;color:#000;text-align:center"|$B23
| |
| |style="border:0px;background-color:#69CF47;width:32px;height:32px;color:#000;text-align:center"|$B24
| |
| |style="border:0px;background-color:#5ACE7B;width:32px;height:32px;color:#000;text-align:center"|$B25
| |
| |style="border:0px;background-color:#59BECA;width:32px;height:32px;color:#000;text-align:center"|$B26
| |
| |style="border:0px;background-color:#6AACFA;width:32px;height:32px;color:#000;text-align:center"|$B27
| |
| |style="border:0px;background-color:#9090FE;width:32px;height:32px;color:#000;text-align:center"|$B28
| |
| |style="border:0px;background-color:#B180FE;width:32px;height:32px;color:#000;text-align:center"|$B29
| |
| |style="border:0px;background-color:#DB74FA;width:32px;height:32px;color:#000;text-align:center"|$B2A
| |
| |style="border:0px;background-color:#E776C5;width:32px;height:32px;color:#000;text-align:center"|$B2B
| |
| |style="border:0px;background-color:#EA857B;width:32px;height:32px;color:#000;text-align:center"|$B2C
| |
| |style="border:0px;background-color:#DFDEE1;width:32px;height:32px;color:#000;text-align:center"|$B2D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B2E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B2F
| |
| |-
| |
| |style="border:0px;background-color:#7A7778;width:32px;height:32px;color:#fff;text-align:center"|$B30
| |
| |style="border:0px;background-color:#EDAF61;width:32px;height:32px;color:#000;text-align:center"|$B31
| |
| |style="border:0px;background-color:#CCC83F;width:32px;height:32px;color:#000;text-align:center"|$B32
| |
| |style="border:0px;background-color:#A8D93D;width:32px;height:32px;color:#000;text-align:center"|$B33
| |
| |style="border:0px;background-color:#84E561;width:32px;height:32px;color:#000;text-align:center"|$B34
| |
| |style="border:0px;background-color:#75E593;width:32px;height:32px;color:#000;text-align:center"|$B35
| |
| |style="border:0px;background-color:#76D3E2;width:32px;height:32px;color:#000;text-align:center"|$B36
| |
| |style="border:0px;background-color:#81C3FE;width:32px;height:32px;color:#000;text-align:center"|$B37
| |
| |style="border:0px;background-color:#A7AAFE;width:32px;height:32px;color:#000;text-align:center"|$B38
| |
| |style="border:0px;background-color:#C59AFE;width:32px;height:32px;color:#000;text-align:center"|$B39
| |
| |style="border:0px;background-color:#EF8CFF;width:32px;height:32px;color:#000;text-align:center"|$B3A
| |
| |style="border:0px;background-color:#FF8CE6;width:32px;height:32px;color:#000;text-align:center"|$B3B
| |
| |style="border:0px;background-color:#FE9C98;width:32px;height:32px;color:#000;text-align:center"|$B3C
| |
| |style="border:0px;background-color:#F8F8F8;width:32px;height:32px;color:#000;text-align:center"|$B3D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B3E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B3F
| |
| |-
| |
| |style="border:0px;background-color:#939393;width:32px;height:32px;color:#000;text-align:center"|$B40
| |
| |style="border:0px;background-color:#FEC97F;width:32px;height:32px;color:#000;text-align:center"|$B41
| |
| |style="border:0px;background-color:#E4E05F;width:32px;height:32px;color:#000;text-align:center"|$B42
| |
| |style="border:0px;background-color:#C2F25D;width:32px;height:32px;color:#000;text-align:center"|$B43
| |
| |style="border:0px;background-color:#A0FA7E;width:32px;height:32px;color:#000;text-align:center"|$B44
| |
| |style="border:0px;background-color:#93FBAE;width:32px;height:32px;color:#000;text-align:center"|$B45
| |
| |style="border:0px;background-color:#92ECF7;width:32px;height:32px;color:#000;text-align:center"|$B46
| |
| |style="border:0px;background-color:#9FDCFF;width:32px;height:32px;color:#000;text-align:center"|$B47
| |
| |style="border:0px;background-color:#C3C2FE;width:32px;height:32px;color:#000;text-align:center"|$B48
| |
| |style="border:0px;background-color:#DFB4FE;width:32px;height:32px;color:#000;text-align:center"|$B49
| |
| |style="border:0px;background-color:#FEA8FE;width:32px;height:32px;color:#000;text-align:center"|$B4A
| |
| |style="border:0px;background-color:#FEA9FB;width:32px;height:32px;color:#000;text-align:center"|$B4B
| |
| |style="border:0px;background-color:#FFB9AD;width:32px;height:32px;color:#000;text-align:center"|$B4C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$B4D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B4E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B4F
| |
| |-
| |
| |style="border:0px;background-color:#ACACAC;width:32px;height:32px;color:#000;text-align:center"|$B50
| |
| |style="border:0px;background-color:#FEE098;width:32px;height:32px;color:#000;text-align:center"|$B51
| |
| |style="border:0px;background-color:#FBF877;width:32px;height:32px;color:#000;text-align:center"|$B52
| |
| |style="border:0px;background-color:#D9FE76;width:32px;height:32px;color:#000;text-align:center"|$B53
| |
| |style="border:0px;background-color:#BAFE99;width:32px;height:32px;color:#000;text-align:center"|$B54
| |
| |style="border:0px;background-color:#ACFFC9;width:32px;height:32px;color:#000;text-align:center"|$B55
| |
| |style="border:0px;background-color:#AAFFFF;width:32px;height:32px;color:#000;text-align:center"|$B56
| |
| |style="border:0px;background-color:#B8F2FE;width:32px;height:32px;color:#000;text-align:center"|$B57
| |
| |style="border:0px;background-color:#DCDAFF;width:32px;height:32px;color:#000;text-align:center"|$B58
| |
| |style="border:0px;background-color:#F7CCFE;width:32px;height:32px;color:#000;text-align:center"|$B59
| |
| |style="border:0px;background-color:#FEC2FE;width:32px;height:32px;color:#000;text-align:center"|$B5A
| |
| |style="border:0px;background-color:#FEC3FE;width:32px;height:32px;color:#000;text-align:center"|$B5B
| |
| |style="border:0px;background-color:#FFD2C6;width:32px;height:32px;color:#000;text-align:center"|$B5C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$B5D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B5E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B5F
| |
| |-
| |
| |style="border:0px;background-color:#C8C4C8;width:32px;height:32px;color:#000;text-align:center"|$B60
| |
| |style="border:0px;background-color:#0054FF;width:32px;height:32px;color:#fff;text-align:center"|$B61
| |
| |style="border:0px;background-color:#1821FD;width:32px;height:32px;color:#fff;text-align:center"|$B62
| |
| |style="border:0px;background-color:#6500FE;width:32px;height:32px;color:#fff;text-align:center"|$B63
| |
| |style="border:0px;background-color:#B800FF;width:32px;height:32px;color:#fff;text-align:center"|$B64
| |
| |style="border:0px;background-color:#DA0095;width:32px;height:32px;color:#fff;text-align:center"|$B65
| |
| |style="border:0px;background-color:#D90400;width:32px;height:32px;color:#fff;text-align:center"|$B66
| |
| |style="border:0px;background-color:#BB2701;width:32px;height:32px;color:#fff;text-align:center"|$B67
| |
| |style="border:0px;background-color:#636001;width:32px;height:32px;color:#fff;text-align:center"|$B68
| |
| |style="border:0px;background-color:#1E8201;width:32px;height:32px;color:#fff;text-align:center"|$B69
| |
| |style="border:0px;background-color:#00A700;width:32px;height:32px;color:#fff;text-align:center"|$B6A
| |
| |style="border:0px;background-color:#00A101;width:32px;height:32px;color:#fff;text-align:center"|$B6B
| |
| |style="border:0px;background-color:#007C95;width:32px;height:32px;color:#fff;text-align:center"|$B6C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$B6D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B6E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B6F
| |
| |-
| |
| |style="border:0px;background-color:#E1DEDF;width:32px;height:32px;color:#000;text-align:center"|$B70
| |
| |style="border:0px;background-color:#0171FF;width:32px;height:32px;color:#fff;text-align:center"|$B71
| |
| |style="border:0px;background-color:#303EFE;width:32px;height:32px;color:#fff;text-align:center"|$B72
| |
| |style="border:0px;background-color:#8117FE;width:32px;height:32px;color:#fff;text-align:center"|$B73
| |
| |style="border:0px;background-color:#D600FE;width:32px;height:32px;color:#fff;text-align:center"|$B74
| |
| |style="border:0px;background-color:#F700B4;width:32px;height:32px;color:#fff;text-align:center"|$B75
| |
| |style="border:0px;background-color:#F71D04;width:32px;height:32px;color:#fff;text-align:center"|$B76
| |
| |style="border:0px;background-color:#D74102;width:32px;height:32px;color:#fff;text-align:center"|$B77
| |
| |style="border:0px;background-color:#817A00;width:32px;height:32px;color:#fff;text-align:center"|$B78
| |
| |style="border:0px;background-color:#389D01;width:32px;height:32px;color:#fff;text-align:center"|$B79
| |
| |style="border:0px;background-color:#00C101;width:32px;height:32px;color:#fff;text-align:center"|$B7A
| |
| |style="border:0px;background-color:#00BF03;width:32px;height:32px;color:#fff;text-align:center"|$B7B
| |
| |style="border:0px;background-color:#0099B3;width:32px;height:32px;color:#fff;text-align:center"|$B7C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$B7D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B7E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B7F
| |
| |-
| |
| |style="border:0px;background-color:#F7F8FC;width:32px;height:32px;color:#000;text-align:center"|$B80
| |
| |style="border:0px;background-color:#008CFF;width:32px;height:32px;color:#fff;text-align:center"|$B81
| |
| |style="border:0px;background-color:#4A58FE;width:32px;height:32px;color:#fff;text-align:center"|$B82
| |
| |style="border:0px;background-color:#9D30FD;width:32px;height:32px;color:#fff;text-align:center"|$B83
| |
| |style="border:0px;background-color:#EF12FF;width:32px;height:32px;color:#fff;text-align:center"|$B84
| |
| |style="border:0px;background-color:#FF10CD;width:32px;height:32px;color:#fff;text-align:center"|$B85
| |
| |style="border:0px;background-color:#FF391D;width:32px;height:32px;color:#fff;text-align:center"|$B86
| |
| |style="border:0px;background-color:#F15C00;width:32px;height:32px;color:#fff;text-align:center"|$B87
| |
| |style="border:0px;background-color:#9B9500;width:32px;height:32px;color:#000;text-align:center"|$B88
| |
| |style="border:0px;background-color:#51B902;width:32px;height:32px;color:#000;text-align:center"|$B89
| |
| |style="border:0px;background-color:#01DC01;width:32px;height:32px;color:#000;text-align:center"|$B8A
| |
| |style="border:0px;background-color:#00DA1A;width:32px;height:32px;color:#000;text-align:center"|$B8B
| |
| |style="border:0px;background-color:#00B4CC;width:32px;height:32px;color:#000;text-align:center"|$B8C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B8D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B8E
| |
| |style="border:0px;background-color:#000002;width:32px;height:32px;color:#fff;text-align:center"|$B8F
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$B90
| |
| |style="border:0px;background-color:#14A6FE;width:32px;height:32px;color:#000;text-align:center"|$B91
| |
| |style="border:0px;background-color:#6671FE;width:32px;height:32px;color:#fff;text-align:center"|$B92
| |
| |style="border:0px;background-color:#B44BFE;width:32px;height:32px;color:#fff;text-align:center"|$B93
| |
| |style="border:0px;background-color:#FE2CFF;width:32px;height:32px;color:#000;text-align:center"|$B94
| |
| |style="border:0px;background-color:#FF2DE6;width:32px;height:32px;color:#000;text-align:center"|$B95
| |
| |style="border:0px;background-color:#FF543A;width:32px;height:32px;color:#000;text-align:center"|$B96
| |
| |style="border:0px;background-color:#FF7601;width:32px;height:32px;color:#000;text-align:center"|$B97
| |
| |style="border:0px;background-color:#B5AE00;width:32px;height:32px;color:#000;text-align:center"|$B98
| |
| |style="border:0px;background-color:#6CD200;width:32px;height:32px;color:#000;text-align:center"|$B99
| |
| |style="border:0px;background-color:#11F301;width:32px;height:32px;color:#000;text-align:center"|$B9A
| |
| |style="border:0px;background-color:#00EF37;width:32px;height:32px;color:#000;text-align:center"|$B9B
| |
| |style="border:0px;background-color:#01CAE4;width:32px;height:32px;color:#000;text-align:center"|$B9C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B9D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B9E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$B9F
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$BA0
| |
| |style="border:0px;background-color:#32BEFC;width:32px;height:32px;color:#000;text-align:center"|$BA1
| |
| |style="border:0px;background-color:#818AFE;width:32px;height:32px;color:#000;text-align:center"|$BA2
| |
| |style="border:0px;background-color:#CD63FE;width:32px;height:32px;color:#000;text-align:center"|$BA3
| |
| |style="border:0px;background-color:#FD4AFE;width:32px;height:32px;color:#000;text-align:center"|$BA4
| |
| |style="border:0px;background-color:#FF48FC;width:32px;height:32px;color:#000;text-align:center"|$BA5
| |
| |style="border:0px;background-color:#FF6F53;width:32px;height:32px;color:#000;text-align:center"|$BA6
| |
| |style="border:0px;background-color:#FF9101;width:32px;height:32px;color:#000;text-align:center"|$BA7
| |
| |style="border:0px;background-color:#CBCA00;width:32px;height:32px;color:#000;text-align:center"|$BA8
| |
| |style="border:0px;background-color:#87EC00;width:32px;height:32px;color:#000;text-align:center"|$BA9
| |
| |style="border:0px;background-color:#2DFF00;width:32px;height:32px;color:#000;text-align:center"|$BAA
| |
| |style="border:0px;background-color:#0DFE52;width:32px;height:32px;color:#000;text-align:center"|$BAB
| |
| |style="border:0px;background-color:#09E3FE;width:32px;height:32px;color:#000;text-align:center"|$BAC
| |
| |style="border:0px;background-color:#0B0B0D;width:32px;height:32px;color:#fff;text-align:center"|$BAD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$BAE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$BAF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$BB0
| |
| |style="border:0px;background-color:#220000;width:32px;height:32px;color:#fff;text-align:center"|$BB1
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$BB2
| |
| |style="border:0px;background-color:#000E00;width:32px;height:32px;color:#fff;text-align:center"|$BB3
| |
| |style="border:0px;background-color:#011901;width:32px;height:32px;color:#fff;text-align:center"|$BB4
| |
| |style="border:0px;background-color:#001800;width:32px;height:32px;color:#fff;text-align:center"|$BB5
| |
| |style="border:0px;background-color:#010713;width:32px;height:32px;color:#fff;text-align:center"|$BB6
| |
| |style="border:0px;background-color:#000040;width:32px;height:32px;color:#fff;text-align:center"|$BB7
| |
| |style="border:0px;background-color:#00006C;width:32px;height:32px;color:#fff;text-align:center"|$BB8
| |
| |style="border:0px;background-color:#00006C;width:32px;height:32px;color:#fff;text-align:center"|$BB9
| |
| |style="border:0px;background-color:#260042;width:32px;height:32px;color:#fff;text-align:center"|$BBA
| |
| |style="border:0px;background-color:#330013;width:32px;height:32px;color:#fff;text-align:center"|$BBB
| |
| |style="border:0px;background-color:#320001;width:32px;height:32px;color:#fff;text-align:center"|$BBC
| |
| |style="border:0px;background-color:#282828;width:32px;height:32px;color:#fff;text-align:center"|$BBD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$BBE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$BBF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$BC0
| |
| |style="border:0px;background-color:#350002;width:32px;height:32px;color:#fff;text-align:center"|$BC1
| |
| |style="border:0px;background-color:#110E00;width:32px;height:32px;color:#fff;text-align:center"|$BC2
| |
| |style="border:0px;background-color:#001F00;width:32px;height:32px;color:#fff;text-align:center"|$BC3
| |
| |style="border:0px;background-color:#002B00;width:32px;height:32px;color:#fff;text-align:center"|$BC4
| |
| |style="border:0px;background-color:#002B00;width:32px;height:32px;color:#fff;text-align:center"|$BC5
| |
| |style="border:0px;background-color:#011828;width:32px;height:32px;color:#fff;text-align:center"|$BC6
| |
| |style="border:0px;background-color:#000A51;width:32px;height:32px;color:#fff;text-align:center"|$BC7
| |
| |style="border:0px;background-color:#00007E;width:32px;height:32px;color:#fff;text-align:center"|$BC8
| |
| |style="border:0px;background-color:#0E007E;width:32px;height:32px;color:#fff;text-align:center"|$BC9
| |
| |style="border:0px;background-color:#350053;width:32px;height:32px;color:#fff;text-align:center"|$BCA
| |
| |style="border:0px;background-color:#420025;width:32px;height:32px;color:#fff;text-align:center"|$BCB
| |
| |style="border:0px;background-color:#460002;width:32px;height:32px;color:#fff;text-align:center"|$BCC
| |
| |style="border:0px;background-color:#41443F;width:32px;height:32px;color:#fff;text-align:center"|$BCD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$BCE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$BCF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$BD0
| |
| |style="border:0px;background-color:#521000;width:32px;height:32px;color:#fff;text-align:center"|$BD1
| |
| |style="border:0px;background-color:#2D2A01;width:32px;height:32px;color:#fff;text-align:center"|$BD2
| |
| |style="border:0px;background-color:#073B00;width:32px;height:32px;color:#fff;text-align:center"|$BD3
| |
| |style="border:0px;background-color:#004800;width:32px;height:32px;color:#fff;text-align:center"|$BD4
| |
| |style="border:0px;background-color:#004800;width:32px;height:32px;color:#fff;text-align:center"|$BD5
| |
| |style="border:0px;background-color:#003442;width:32px;height:32px;color:#fff;text-align:center"|$BD6
| |
| |style="border:0px;background-color:#012770;width:32px;height:32px;color:#fff;text-align:center"|$BD7
| |
| |style="border:0px;background-color:#0C08A2;width:32px;height:32px;color:#fff;text-align:center"|$BD8
| |
| |style="border:0px;background-color:#2A009E;width:32px;height:32px;color:#fff;text-align:center"|$BD9
| |
| |style="border:0px;background-color:#560071;width:32px;height:32px;color:#fff;text-align:center"|$BDA
| |
| |style="border:0px;background-color:#630041;width:32px;height:32px;color:#fff;text-align:center"|$BDB
| |
| |style="border:0px;background-color:#660000;width:32px;height:32px;color:#fff;text-align:center"|$BDC
| |
| |style="border:0px;background-color:#5E5E60;width:32px;height:32px;color:#fff;text-align:center"|$BDD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$BDE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$BDF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$BE0
| |
| |style="border:0px;background-color:#6D2B01;width:32px;height:32px;color:#fff;text-align:center"|$BE1
| |
| |style="border:0px;background-color:#484600;width:32px;height:32px;color:#fff;text-align:center"|$BE2
| |
| |style="border:0px;background-color:#235800;width:32px;height:32px;color:#fff;text-align:center"|$BE3
| |
| |style="border:0px;background-color:#006401;width:32px;height:32px;color:#fff;text-align:center"|$BE4
| |
| |style="border:0px;background-color:#00640E;width:32px;height:32px;color:#fff;text-align:center"|$BE5
| |
| |style="border:0px;background-color:#00525E;width:32px;height:32px;color:#fff;text-align:center"|$BE6
| |
| |style="border:0px;background-color:#00418F;width:32px;height:32px;color:#fff;text-align:center"|$BE7
| |
| |style="border:0px;background-color:#2824BF;width:32px;height:32px;color:#fff;text-align:center"|$BE8
| |
| |style="border:0px;background-color:#4514C2;width:32px;height:32px;color:#fff;text-align:center"|$BE9
| |
| |style="border:0px;background-color:#720694;width:32px;height:32px;color:#fff;text-align:center"|$BEA
| |
| |style="border:0px;background-color:#7F0962;width:32px;height:32px;color:#fff;text-align:center"|$BEB
| |
| |style="border:0px;background-color:#81190C;width:32px;height:32px;color:#fff;text-align:center"|$BEC
| |
| |style="border:0px;background-color:#787878;width:32px;height:32px;color:#fff;text-align:center"|$BED
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$BEE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$BEF
| |
| |-
| |
| |style="border:0px;background-color:#0D0D0D;width:32px;height:32px;color:#fff;text-align:center"|$BF0
| |
| |style="border:0px;background-color:#8D4601;width:32px;height:32px;color:#fff;text-align:center"|$BF1
| |
| |style="border:0px;background-color:#656201;width:32px;height:32px;color:#fff;text-align:center"|$BF2
| |
| |style="border:0px;background-color:#3F7400;width:32px;height:32px;color:#fff;text-align:center"|$BF3
| |
| |style="border:0px;background-color:#167F00;width:32px;height:32px;color:#fff;text-align:center"|$BF4
| |
| |style="border:0px;background-color:#087E26;width:32px;height:32px;color:#fff;text-align:center"|$BF5
| |
| |style="border:0px;background-color:#086E7C;width:32px;height:32px;color:#fff;text-align:center"|$BF6
| |
| |style="border:0px;background-color:#1A5DAB;width:32px;height:32px;color:#fff;text-align:center"|$BF7
| |
| |style="border:0px;background-color:#4140DA;width:32px;height:32px;color:#fff;text-align:center"|$BF8
| |
| |style="border:0px;background-color:#622EDA;width:32px;height:32px;color:#fff;text-align:center"|$BF9
| |
| |style="border:0px;background-color:#8D23AD;width:32px;height:32px;color:#fff;text-align:center"|$BFA
| |
| |style="border:0px;background-color:#9C247E;width:32px;height:32px;color:#fff;text-align:center"|$BFB
| |
| |style="border:0px;background-color:#9B3628;width:32px;height:32px;color:#fff;text-align:center"|$BFC
| |
| |style="border:0px;background-color:#939393;width:32px;height:32px;color:#000;text-align:center"|$BFD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$BFE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$BFF
| |
| |-
| |
| ! colspan=16 | Saturation level $C
| |
| |-
| |
| |style="border:0px;background-color:#363636;width:32px;height:32px;color:#fff;text-align:center"|$C00
| |
| |style="border:0px;background-color:#98621E;width:32px;height:32px;color:#fff;text-align:center"|$C01
| |
| |style="border:0px;background-color:#7A7702;width:32px;height:32px;color:#fff;text-align:center"|$C02
| |
| |style="border:0px;background-color:#5C8600;width:32px;height:32px;color:#fff;text-align:center"|$C03
| |
| |style="border:0px;background-color:#3F8F20;width:32px;height:32px;color:#fff;text-align:center"|$C04
| |
| |style="border:0px;background-color:#309049;width:32px;height:32px;color:#fff;text-align:center"|$C05
| |
| |style="border:0px;background-color:#2F818C;width:32px;height:32px;color:#fff;text-align:center"|$C06
| |
| |style="border:0px;background-color:#3D74B4;width:32px;height:32px;color:#fff;text-align:center"|$C07
| |
| |style="border:0px;background-color:#5D5DD9;width:32px;height:32px;color:#fff;text-align:center"|$C08
| |
| |style="border:0px;background-color:#774ED9;width:32px;height:32px;color:#fff;text-align:center"|$C09
| |
| |style="border:0px;background-color:#9B44B4;width:32px;height:32px;color:#fff;text-align:center"|$C0A
| |
| |style="border:0px;background-color:#A6458B;width:32px;height:32px;color:#fff;text-align:center"|$C0B
| |
| |style="border:0px;background-color:#A7524D;width:32px;height:32px;color:#fff;text-align:center"|$C0C
| |
| |style="border:0px;background-color:#9E9E9E;width:32px;height:32px;color:#000;text-align:center"|$C0D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C0E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C0F
| |
| |-
| |
| |style="border:0px;background-color:#50504E;width:32px;height:32px;color:#fff;text-align:center"|$C10
| |
| |style="border:0px;background-color:#B37D3B;width:32px;height:32px;color:#000;text-align:center"|$C11
| |
| |style="border:0px;background-color:#95931C;width:32px;height:32px;color:#000;text-align:center"|$C12
| |
| |style="border:0px;background-color:#77A21C;width:32px;height:32px;color:#000;text-align:center"|$C13
| |
| |style="border:0px;background-color:#5AAA3B;width:32px;height:32px;color:#000;text-align:center"|$C14
| |
| |style="border:0px;background-color:#4CAC65;width:32px;height:32px;color:#000;text-align:center"|$C15
| |
| |style="border:0px;background-color:#4A9CA7;width:32px;height:32px;color:#000;text-align:center"|$C16
| |
| |style="border:0px;background-color:#5890CB;width:32px;height:32px;color:#000;text-align:center"|$C17
| |
| |style="border:0px;background-color:#7777F1;width:32px;height:32px;color:#000;text-align:center"|$C18
| |
| |style="border:0px;background-color:#936BF0;width:32px;height:32px;color:#000;text-align:center"|$C19
| |
| |style="border:0px;background-color:#B460D1;width:32px;height:32px;color:#000;text-align:center"|$C1A
| |
| |style="border:0px;background-color:#C260AB;width:32px;height:32px;color:#000;text-align:center"|$C1B
| |
| |style="border:0px;background-color:#C27065;width:32px;height:32px;color:#000;text-align:center"|$C1C
| |
| |style="border:0px;background-color:#B7B9BB;width:32px;height:32px;color:#000;text-align:center"|$C1D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C1E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C1F
| |
| |-
| |
| |style="border:0px;background-color:#696967;width:32px;height:32px;color:#fff;text-align:center"|$C20
| |
| |style="border:0px;background-color:#CC9755;width:32px;height:32px;color:#000;text-align:center"|$C21
| |
| |style="border:0px;background-color:#AFAC39;width:32px;height:32px;color:#000;text-align:center"|$C22
| |
| |style="border:0px;background-color:#91BB35;width:32px;height:32px;color:#000;text-align:center"|$C23
| |
| |style="border:0px;background-color:#73C257;width:32px;height:32px;color:#000;text-align:center"|$C24
| |
| |style="border:0px;background-color:#68C37E;width:32px;height:32px;color:#000;text-align:center"|$C25
| |
| |style="border:0px;background-color:#64B7BF;width:32px;height:32px;color:#000;text-align:center"|$C26
| |
| |style="border:0px;background-color:#71A9E4;width:32px;height:32px;color:#000;text-align:center"|$C27
| |
| |style="border:0px;background-color:#8F90FC;width:32px;height:32px;color:#000;text-align:center"|$C28
| |
| |style="border:0px;background-color:#AC84FE;width:32px;height:32px;color:#000;text-align:center"|$C29
| |
| |style="border:0px;background-color:#CE7AE9;width:32px;height:32px;color:#000;text-align:center"|$C2A
| |
| |style="border:0px;background-color:#DA7AC2;width:32px;height:32px;color:#000;text-align:center"|$C2B
| |
| |style="border:0px;background-color:#DC8A7F;width:32px;height:32px;color:#000;text-align:center"|$C2C
| |
| |style="border:0px;background-color:#D0D3D2;width:32px;height:32px;color:#000;text-align:center"|$C2D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C2E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C2F
| |
| |-
| |
| |style="border:0px;background-color:#868485;width:32px;height:32px;color:#000;text-align:center"|$C30
| |
| |style="border:0px;background-color:#E5B16F;width:32px;height:32px;color:#000;text-align:center"|$C31
| |
| |style="border:0px;background-color:#C7C652;width:32px;height:32px;color:#000;text-align:center"|$C32
| |
| |style="border:0px;background-color:#ABD453;width:32px;height:32px;color:#000;text-align:center"|$C33
| |
| |style="border:0px;background-color:#8DDC71;width:32px;height:32px;color:#000;text-align:center"|$C34
| |
| |style="border:0px;background-color:#82DD98;width:32px;height:32px;color:#000;text-align:center"|$C35
| |
| |style="border:0px;background-color:#80CED8;width:32px;height:32px;color:#000;text-align:center"|$C36
| |
| |style="border:0px;background-color:#8EC2FC;width:32px;height:32px;color:#000;text-align:center"|$C37
| |
| |style="border:0px;background-color:#ABACFE;width:32px;height:32px;color:#000;text-align:center"|$C38
| |
| |style="border:0px;background-color:#C69EFF;width:32px;height:32px;color:#000;text-align:center"|$C39
| |
| |style="border:0px;background-color:#E795FC;width:32px;height:32px;color:#000;text-align:center"|$C3A
| |
| |style="border:0px;background-color:#F296D9;width:32px;height:32px;color:#000;text-align:center"|$C3B
| |
| |style="border:0px;background-color:#F4A49B;width:32px;height:32px;color:#000;text-align:center"|$C3C
| |
| |style="border:0px;background-color:#EBEBE9;width:32px;height:32px;color:#000;text-align:center"|$C3D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C3E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C3F
| |
| |-
| |
| |style="border:0px;background-color:#9F9F9D;width:32px;height:32px;color:#000;text-align:center"|$C40
| |
| |style="border:0px;background-color:#FBC88F;width:32px;height:32px;color:#000;text-align:center"|$C41
| |
| |style="border:0px;background-color:#DFDD71;width:32px;height:32px;color:#000;text-align:center"|$C42
| |
| |style="border:0px;background-color:#C4EA71;width:32px;height:32px;color:#000;text-align:center"|$C43
| |
| |style="border:0px;background-color:#A8F38E;width:32px;height:32px;color:#000;text-align:center"|$C44
| |
| |style="border:0px;background-color:#9CF3AF;width:32px;height:32px;color:#000;text-align:center"|$C45
| |
| |style="border:0px;background-color:#9DE6EF;width:32px;height:32px;color:#000;text-align:center"|$C46
| |
| |style="border:0px;background-color:#A6DAFE;width:32px;height:32px;color:#000;text-align:center"|$C47
| |
| |style="border:0px;background-color:#C4C6FF;width:32px;height:32px;color:#000;text-align:center"|$C48
| |
| |style="border:0px;background-color:#E0B8FE;width:32px;height:32px;color:#000;text-align:center"|$C49
| |
| |style="border:0px;background-color:#FDAEFF;width:32px;height:32px;color:#000;text-align:center"|$C4A
| |
| |style="border:0px;background-color:#FFAFF3;width:32px;height:32px;color:#000;text-align:center"|$C4B
| |
| |style="border:0px;background-color:#FFBCB3;width:32px;height:32px;color:#000;text-align:center"|$C4C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$C4D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C4E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C4F
| |
| |-
| |
| |style="border:0px;background-color:#B9B9B9;width:32px;height:32px;color:#000;text-align:center"|$C50
| |
| |style="border:0px;background-color:#FEE2AB;width:32px;height:32px;color:#000;text-align:center"|$C51
| |
| |style="border:0px;background-color:#F7F590;width:32px;height:32px;color:#000;text-align:center"|$C52
| |
| |style="border:0px;background-color:#DDFF91;width:32px;height:32px;color:#000;text-align:center"|$C53
| |
| |style="border:0px;background-color:#C4FDAC;width:32px;height:32px;color:#000;text-align:center"|$C54
| |
| |style="border:0px;background-color:#BAFFD0;width:32px;height:32px;color:#000;text-align:center"|$C55
| |
| |style="border:0px;background-color:#B9FDFE;width:32px;height:32px;color:#000;text-align:center"|$C56
| |
| |style="border:0px;background-color:#C4F1FF;width:32px;height:32px;color:#000;text-align:center"|$C57
| |
| |style="border:0px;background-color:#DEDEFF;width:32px;height:32px;color:#000;text-align:center"|$C58
| |
| |style="border:0px;background-color:#F6D1FE;width:32px;height:32px;color:#000;text-align:center"|$C59
| |
| |style="border:0px;background-color:#FFC8FF;width:32px;height:32px;color:#000;text-align:center"|$C5A
| |
| |style="border:0px;background-color:#FEC9FE;width:32px;height:32px;color:#000;text-align:center"|$C5B
| |
| |style="border:0px;background-color:#FDD7CA;width:32px;height:32px;color:#000;text-align:center"|$C5C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$C5D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C5E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C5F
| |
| |-
| |
| |style="border:0px;background-color:#D3D3D3;width:32px;height:32px;color:#000;text-align:center"|$C60
| |
| |style="border:0px;background-color:#015AFE;width:32px;height:32px;color:#fff;text-align:center"|$C61
| |
| |style="border:0px;background-color:#1727FC;width:32px;height:32px;color:#fff;text-align:center"|$C62
| |
| |style="border:0px;background-color:#6E00FE;width:32px;height:32px;color:#fff;text-align:center"|$C63
| |
| |style="border:0px;background-color:#C500FF;width:32px;height:32px;color:#fff;text-align:center"|$C64
| |
| |style="border:0px;background-color:#EA00A2;width:32px;height:32px;color:#fff;text-align:center"|$C65
| |
| |style="border:0px;background-color:#EB0100;width:32px;height:32px;color:#fff;text-align:center"|$C66
| |
| |style="border:0px;background-color:#C62700;width:32px;height:32px;color:#fff;text-align:center"|$C67
| |
| |style="border:0px;background-color:#676302;width:32px;height:32px;color:#fff;text-align:center"|$C68
| |
| |style="border:0px;background-color:#178A01;width:32px;height:32px;color:#fff;text-align:center"|$C69
| |
| |style="border:0px;background-color:#00B200;width:32px;height:32px;color:#fff;text-align:center"|$C6A
| |
| |style="border:0px;background-color:#01AD02;width:32px;height:32px;color:#fff;text-align:center"|$C6B
| |
| |style="border:0px;background-color:#0084A1;width:32px;height:32px;color:#fff;text-align:center"|$C6C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$C6D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C6E
| |
| |style="border:0px;background-color:#000002;width:32px;height:32px;color:#fff;text-align:center"|$C6F
| |
| |-
| |
| |style="border:0px;background-color:#EBEBEB;width:32px;height:32px;color:#000;text-align:center"|$C70
| |
| |style="border:0px;background-color:#0175FE;width:32px;height:32px;color:#fff;text-align:center"|$C71
| |
| |style="border:0px;background-color:#3141FD;width:32px;height:32px;color:#fff;text-align:center"|$C72
| |
| |style="border:0px;background-color:#8616FC;width:32px;height:32px;color:#fff;text-align:center"|$C73
| |
| |style="border:0px;background-color:#E000FE;width:32px;height:32px;color:#fff;text-align:center"|$C74
| |
| |style="border:0px;background-color:#FF00BC;width:32px;height:32px;color:#fff;text-align:center"|$C75
| |
| |style="border:0px;background-color:#FF1B00;width:32px;height:32px;color:#fff;text-align:center"|$C76
| |
| |style="border:0px;background-color:#E04301;width:32px;height:32px;color:#fff;text-align:center"|$C77
| |
| |style="border:0px;background-color:#857B00;width:32px;height:32px;color:#fff;text-align:center"|$C78
| |
| |style="border:0px;background-color:#37A001;width:32px;height:32px;color:#fff;text-align:center"|$C79
| |
| |style="border:0px;background-color:#00C901;width:32px;height:32px;color:#fff;text-align:center"|$C7A
| |
| |style="border:0px;background-color:#00C601;width:32px;height:32px;color:#fff;text-align:center"|$C7B
| |
| |style="border:0px;background-color:#009CBA;width:32px;height:32px;color:#fff;text-align:center"|$C7C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$C7D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C7E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C7F
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$C80
| |
| |style="border:0px;background-color:#008DFE;width:32px;height:32px;color:#fff;text-align:center"|$C81
| |
| |style="border:0px;background-color:#4A59FE;width:32px;height:32px;color:#fff;text-align:center"|$C82
| |
| |style="border:0px;background-color:#9F30FD;width:32px;height:32px;color:#fff;text-align:center"|$C83
| |
| |style="border:0px;background-color:#F70EFE;width:32px;height:32px;color:#fff;text-align:center"|$C84
| |
| |style="border:0px;background-color:#FF0CD0;width:32px;height:32px;color:#fff;text-align:center"|$C85
| |
| |style="border:0px;background-color:#FF3615;width:32px;height:32px;color:#fff;text-align:center"|$C86
| |
| |style="border:0px;background-color:#F95B01;width:32px;height:32px;color:#fff;text-align:center"|$C87
| |
| |style="border:0px;background-color:#9E9701;width:32px;height:32px;color:#000;text-align:center"|$C88
| |
| |style="border:0px;background-color:#4FBC00;width:32px;height:32px;color:#000;text-align:center"|$C89
| |
| |style="border:0px;background-color:#01E401;width:32px;height:32px;color:#000;text-align:center"|$C8A
| |
| |style="border:0px;background-color:#00E01A;width:32px;height:32px;color:#000;text-align:center"|$C8B
| |
| |style="border:0px;background-color:#00B6D6;width:32px;height:32px;color:#000;text-align:center"|$C8C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$C8D
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$C8E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C8F
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$C90
| |
| |style="border:0px;background-color:#0FA9FE;width:32px;height:32px;color:#000;text-align:center"|$C91
| |
| |style="border:0px;background-color:#6574FE;width:32px;height:32px;color:#fff;text-align:center"|$C92
| |
| |style="border:0px;background-color:#B94AFE;width:32px;height:32px;color:#fff;text-align:center"|$C93
| |
| |style="border:0px;background-color:#FE27FE;width:32px;height:32px;color:#fff;text-align:center"|$C94
| |
| |style="border:0px;background-color:#FF29ED;width:32px;height:32px;color:#fff;text-align:center"|$C95
| |
| |style="border:0px;background-color:#FE4F37;width:32px;height:32px;color:#000;text-align:center"|$C96
| |
| |style="border:0px;background-color:#FE7600;width:32px;height:32px;color:#000;text-align:center"|$C97
| |
| |style="border:0px;background-color:#BAAE00;width:32px;height:32px;color:#000;text-align:center"|$C98
| |
| |style="border:0px;background-color:#6CD500;width:32px;height:32px;color:#000;text-align:center"|$C99
| |
| |style="border:0px;background-color:#07FD00;width:32px;height:32px;color:#000;text-align:center"|$C9A
| |
| |style="border:0px;background-color:#00FB2C;width:32px;height:32px;color:#000;text-align:center"|$C9B
| |
| |style="border:0px;background-color:#00D3EE;width:32px;height:32px;color:#000;text-align:center"|$C9C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C9D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C9E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$C9F
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$CA0
| |
| |style="border:0px;background-color:#160000;width:32px;height:32px;color:#fff;text-align:center"|$CA1
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$CA2
| |
| |style="border:0px;background-color:#000700;width:32px;height:32px;color:#fff;text-align:center"|$CA3
| |
| |style="border:0px;background-color:#000E01;width:32px;height:32px;color:#fff;text-align:center"|$CA4
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$CA5
| |
| |style="border:0px;background-color:#01010D;width:32px;height:32px;color:#fff;text-align:center"|$CA6
| |
| |style="border:0px;background-color:#01002A;width:32px;height:32px;color:#fff;text-align:center"|$CA7
| |
| |style="border:0px;background-color:#00014C;width:32px;height:32px;color:#fff;text-align:center"|$CA8
| |
| |style="border:0px;background-color:#00004E;width:32px;height:32px;color:#fff;text-align:center"|$CA9
| |
| |style="border:0px;background-color:#16002B;width:32px;height:32px;color:#fff;text-align:center"|$CAA
| |
| |style="border:0px;background-color:#20000D;width:32px;height:32px;color:#fff;text-align:center"|$CAB
| |
| |style="border:0px;background-color:#1F0000;width:32px;height:32px;color:#fff;text-align:center"|$CAC
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$CAD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$CAE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$CAF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$CB0
| |
| |style="border:0px;background-color:#170000;width:32px;height:32px;color:#fff;text-align:center"|$CB1
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$CB2
| |
| |style="border:0px;background-color:#000700;width:32px;height:32px;color:#fff;text-align:center"|$CB3
| |
| |style="border:0px;background-color:#001000;width:32px;height:32px;color:#fff;text-align:center"|$CB4
| |
| |style="border:0px;background-color:#000F02;width:32px;height:32px;color:#fff;text-align:center"|$CB5
| |
| |style="border:0px;background-color:#00020E;width:32px;height:32px;color:#fff;text-align:center"|$CB6
| |
| |style="border:0px;background-color:#01002E;width:32px;height:32px;color:#fff;text-align:center"|$CB7
| |
| |style="border:0px;background-color:#000052;width:32px;height:32px;color:#fff;text-align:center"|$CB8
| |
| |style="border:0px;background-color:#000050;width:32px;height:32px;color:#fff;text-align:center"|$CB9
| |
| |style="border:0px;background-color:#1B0033;width:32px;height:32px;color:#fff;text-align:center"|$CBA
| |
| |style="border:0px;background-color:#24000C;width:32px;height:32px;color:#fff;text-align:center"|$CBB
| |
| |style="border:0px;background-color:#240000;width:32px;height:32px;color:#fff;text-align:center"|$CBC
| |
| |style="border:0px;background-color:#1B1B19;width:32px;height:32px;color:#fff;text-align:center"|$CBD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$CBE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$CBF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$CC0
| |
| |style="border:0px;background-color:#290001;width:32px;height:32px;color:#fff;text-align:center"|$CC1
| |
| |style="border:0px;background-color:#0D0B00;width:32px;height:32px;color:#fff;text-align:center"|$CC2
| |
| |style="border:0px;background-color:#001900;width:32px;height:32px;color:#fff;text-align:center"|$CC3
| |
| |style="border:0px;background-color:#002201;width:32px;height:32px;color:#fff;text-align:center"|$CC4
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$CC5
| |
| |style="border:0px;background-color:#00141F;width:32px;height:32px;color:#fff;text-align:center"|$CC6
| |
| |style="border:0px;background-color:#000644;width:32px;height:32px;color:#fff;text-align:center"|$CC7
| |
| |style="border:0px;background-color:#000064;width:32px;height:32px;color:#fff;text-align:center"|$CC8
| |
| |style="border:0px;background-color:#0B0065;width:32px;height:32px;color:#fff;text-align:center"|$CC9
| |
| |style="border:0px;background-color:#2C0043;width:32px;height:32px;color:#fff;text-align:center"|$CCA
| |
| |style="border:0px;background-color:#370021;width:32px;height:32px;color:#fff;text-align:center"|$CCB
| |
| |style="border:0px;background-color:#380000;width:32px;height:32px;color:#fff;text-align:center"|$CCC
| |
| |style="border:0px;background-color:#353537;width:32px;height:32px;color:#fff;text-align:center"|$CCD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$CCE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$CCF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$CD0
| |
| |style="border:0px;background-color:#451300;width:32px;height:32px;color:#fff;text-align:center"|$CD1
| |
| |style="border:0px;background-color:#2A2600;width:32px;height:32px;color:#fff;text-align:center"|$CD2
| |
| |style="border:0px;background-color:#0A3500;width:32px;height:32px;color:#fff;text-align:center"|$CD3
| |
| |style="border:0px;background-color:#003D01;width:32px;height:32px;color:#fff;text-align:center"|$CD4
| |
| |style="border:0px;background-color:#003E00;width:32px;height:32px;color:#fff;text-align:center"|$CD5
| |
| |style="border:0px;background-color:#00303C;width:32px;height:32px;color:#fff;text-align:center"|$CD6
| |
| |style="border:0px;background-color:#012360;width:32px;height:32px;color:#fff;text-align:center"|$CD7
| |
| |style="border:0px;background-color:#0D0E84;width:32px;height:32px;color:#fff;text-align:center"|$CD8
| |
| |style="border:0px;background-color:#280087;width:32px;height:32px;color:#fff;text-align:center"|$CD9
| |
| |style="border:0px;background-color:#470064;width:32px;height:32px;color:#fff;text-align:center"|$CDA
| |
| |style="border:0px;background-color:#54003B;width:32px;height:32px;color:#fff;text-align:center"|$CDB
| |
| |style="border:0px;background-color:#550400;width:32px;height:32px;color:#fff;text-align:center"|$CDC
| |
| |style="border:0px;background-color:#505050;width:32px;height:32px;color:#fff;text-align:center"|$CDD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$CDE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$CDF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$CE0
| |
| |style="border:0px;background-color:#602D01;width:32px;height:32px;color:#fff;text-align:center"|$CE1
| |
| |style="border:0px;background-color:#444100;width:32px;height:32px;color:#fff;text-align:center"|$CE2
| |
| |style="border:0px;background-color:#265000;width:32px;height:32px;color:#fff;text-align:center"|$CE3
| |
| |style="border:0px;background-color:#095900;width:32px;height:32px;color:#fff;text-align:center"|$CE4
| |
| |style="border:0px;background-color:#005915;width:32px;height:32px;color:#fff;text-align:center"|$CE5
| |
| |style="border:0px;background-color:#004A55;width:32px;height:32px;color:#fff;text-align:center"|$CE6
| |
| |style="border:0px;background-color:#0A3E7A;width:32px;height:32px;color:#fff;text-align:center"|$CE7
| |
| |style="border:0px;background-color:#2826A1;width:32px;height:32px;color:#fff;text-align:center"|$CE8
| |
| |style="border:0px;background-color:#431B9A;width:32px;height:32px;color:#fff;text-align:center"|$CE9
| |
| |style="border:0px;background-color:#63107A;width:32px;height:32px;color:#fff;text-align:center"|$CEA
| |
| |style="border:0px;background-color:#6E1157;width:32px;height:32px;color:#fff;text-align:center"|$CEB
| |
| |style="border:0px;background-color:#711F14;width:32px;height:32px;color:#fff;text-align:center"|$CEC
| |
| |style="border:0px;background-color:#6A696E;width:32px;height:32px;color:#fff;text-align:center"|$CED
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$CEE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$CEF
| |
| |-
| |
| |style="border:0px;background-color:#1A1C19;width:32px;height:32px;color:#fff;text-align:center"|$CF0
| |
| |style="border:0px;background-color:#7F4806;width:32px;height:32px;color:#fff;text-align:center"|$CF1
| |
| |style="border:0px;background-color:#615E00;width:32px;height:32px;color:#fff;text-align:center"|$CF2
| |
| |style="border:0px;background-color:#436E01;width:32px;height:32px;color:#fff;text-align:center"|$CF3
| |
| |style="border:0px;background-color:#267607;width:32px;height:32px;color:#fff;text-align:center"|$CF4
| |
| |style="border:0px;background-color:#177730;width:32px;height:32px;color:#fff;text-align:center"|$CF5
| |
| |style="border:0px;background-color:#156772;width:32px;height:32px;color:#fff;text-align:center"|$CF6
| |
| |style="border:0px;background-color:#225999;width:32px;height:32px;color:#fff;text-align:center"|$CF7
| |
| |style="border:0px;background-color:#4242BC;width:32px;height:32px;color:#fff;text-align:center"|$CF8
| |
| |style="border:0px;background-color:#5F35BE;width:32px;height:32px;color:#fff;text-align:center"|$CF9
| |
| |style="border:0px;background-color:#802B9B;width:32px;height:32px;color:#fff;text-align:center"|$CFA
| |
| |style="border:0px;background-color:#8A2E75;width:32px;height:32px;color:#fff;text-align:center"|$CFB
| |
| |style="border:0px;background-color:#8D3B30;width:32px;height:32px;color:#fff;text-align:center"|$CFC
| |
| |style="border:0px;background-color:#868683;width:32px;height:32px;color:#000;text-align:center"|$CFD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$CFE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$CFF
| |
| |-
| |
| ! colspan=16 | Saturation level $D
| |
| |-
| |
| |style="border:0px;background-color:#434343;width:32px;height:32px;color:#fff;text-align:center"|$D00
| |
| |style="border:0px;background-color:#8E6632;width:32px;height:32px;color:#fff;text-align:center"|$D01
| |
| |style="border:0px;background-color:#78751E;width:32px;height:32px;color:#fff;text-align:center"|$D02
| |
| |style="border:0px;background-color:#608219;width:32px;height:32px;color:#fff;text-align:center"|$D03
| |
| |style="border:0px;background-color:#498932;width:32px;height:32px;color:#fff;text-align:center"|$D04
| |
| |style="border:0px;background-color:#418751;width:32px;height:32px;color:#fff;text-align:center"|$D05
| |
| |style="border:0px;background-color:#407C83;width:32px;height:32px;color:#fff;text-align:center"|$D06
| |
| |style="border:0px;background-color:#4973A5;width:32px;height:32px;color:#fff;text-align:center"|$D07
| |
| |style="border:0px;background-color:#6061BE;width:32px;height:32px;color:#fff;text-align:center"|$D08
| |
| |style="border:0px;background-color:#7756C0;width:32px;height:32px;color:#fff;text-align:center"|$D09
| |
| |style="border:0px;background-color:#904EA5;width:32px;height:32px;color:#fff;text-align:center"|$D0A
| |
| |style="border:0px;background-color:#9A4F87;width:32px;height:32px;color:#fff;text-align:center"|$D0B
| |
| |style="border:0px;background-color:#9B5B51;width:32px;height:32px;color:#fff;text-align:center"|$D0C
| |
| |style="border:0px;background-color:#939393;width:32px;height:32px;color:#000;text-align:center"|$D0D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D0E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D0F
| |
| |-
| |
| |style="border:0px;background-color:#5E5E5E;width:32px;height:32px;color:#fff;text-align:center"|$D10
| |
| |style="border:0px;background-color:#A8804E;width:32px;height:32px;color:#000;text-align:center"|$D11
| |
| |style="border:0px;background-color:#938E38;width:32px;height:32px;color:#000;text-align:center"|$D12
| |
| |style="border:0px;background-color:#7A9B37;width:32px;height:32px;color:#000;text-align:center"|$D13
| |
| |style="border:0px;background-color:#63A34C;width:32px;height:32px;color:#000;text-align:center"|$D14
| |
| |style="border:0px;background-color:#5CA16B;width:32px;height:32px;color:#000;text-align:center"|$D15
| |
| |style="border:0px;background-color:#5A969F;width:32px;height:32px;color:#000;text-align:center"|$D16
| |
| |style="border:0px;background-color:#648DBA;width:32px;height:32px;color:#000;text-align:center"|$D17
| |
| |style="border:0px;background-color:#7C7DD7;width:32px;height:32px;color:#000;text-align:center"|$D18
| |
| |style="border:0px;background-color:#9172D7;width:32px;height:32px;color:#000;text-align:center"|$D19
| |
| |style="border:0px;background-color:#A969BF;width:32px;height:32px;color:#000;text-align:center"|$D1A
| |
| |style="border:0px;background-color:#B36AA2;width:32px;height:32px;color:#000;text-align:center"|$D1B
| |
| |style="border:0px;background-color:#B4756F;width:32px;height:32px;color:#000;text-align:center"|$D1C
| |
| |style="border:0px;background-color:#ACABB0;width:32px;height:32px;color:#000;text-align:center"|$D1D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D1E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D1F
| |
| |-
| |
| |style="border:0px;background-color:#77767A;width:32px;height:32px;color:#fff;text-align:center"|$D20
| |
| |style="border:0px;background-color:#C09968;width:32px;height:32px;color:#000;text-align:center"|$D21
| |
| |style="border:0px;background-color:#ACA84F;width:32px;height:32px;color:#000;text-align:center"|$D22
| |
| |style="border:0px;background-color:#94B44F;width:32px;height:32px;color:#000;text-align:center"|$D23
| |
| |style="border:0px;background-color:#7CBA67;width:32px;height:32px;color:#000;text-align:center"|$D24
| |
| |style="border:0px;background-color:#75B988;width:32px;height:32px;color:#000;text-align:center"|$D25
| |
| |style="border:0px;background-color:#74AEB9;width:32px;height:32px;color:#000;text-align:center"|$D26
| |
| |style="border:0px;background-color:#7CA5D1;width:32px;height:32px;color:#000;text-align:center"|$D27
| |
| |style="border:0px;background-color:#9594F1;width:32px;height:32px;color:#000;text-align:center"|$D28
| |
| |style="border:0px;background-color:#AA8AEB;width:32px;height:32px;color:#000;text-align:center"|$D29
| |
| |style="border:0px;background-color:#C383D6;width:32px;height:32px;color:#000;text-align:center"|$D2A
| |
| |style="border:0px;background-color:#CA85B8;width:32px;height:32px;color:#000;text-align:center"|$D2B
| |
| |style="border:0px;background-color:#CD8E85;width:32px;height:32px;color:#000;text-align:center"|$D2C
| |
| |style="border:0px;background-color:#C5C5C3;width:32px;height:32px;color:#000;text-align:center"|$D2D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D2E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D2F
| |
| |-
| |
| |style="border:0px;background-color:#939393;width:32px;height:32px;color:#000;text-align:center"|$D30
| |
| |style="border:0px;background-color:#DAB284;width:32px;height:32px;color:#000;text-align:center"|$D31
| |
| |style="border:0px;background-color:#C4C268;width:32px;height:32px;color:#000;text-align:center"|$D32
| |
| |style="border:0px;background-color:#ADCD6D;width:32px;height:32px;color:#000;text-align:center"|$D33
| |
| |style="border:0px;background-color:#9AD384;width:32px;height:32px;color:#000;text-align:center"|$D34
| |
| |style="border:0px;background-color:#8ED2A1;width:32px;height:32px;color:#000;text-align:center"|$D35
| |
| |style="border:0px;background-color:#8EC9D1;width:32px;height:32px;color:#000;text-align:center"|$D36
| |
| |style="border:0px;background-color:#96BFEB;width:32px;height:32px;color:#000;text-align:center"|$D37
| |
| |style="border:0px;background-color:#AFB0FD;width:32px;height:32px;color:#000;text-align:center"|$D38
| |
| |style="border:0px;background-color:#C1A6FD;width:32px;height:32px;color:#000;text-align:center"|$D39
| |
| |style="border:0px;background-color:#DB9EEE;width:32px;height:32px;color:#000;text-align:center"|$D3A
| |
| |style="border:0px;background-color:#E39ECE;width:32px;height:32px;color:#000;text-align:center"|$D3B
| |
| |style="border:0px;background-color:#E7A8A2;width:32px;height:32px;color:#000;text-align:center"|$D3C
| |
| |style="border:0px;background-color:#DFDEE3;width:32px;height:32px;color:#000;text-align:center"|$D3D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D3E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D3F
| |
| |-
| |
| |style="border:0px;background-color:#AEABAA;width:32px;height:32px;color:#000;text-align:center"|$D40
| |
| |style="border:0px;background-color:#F0CB9D;width:32px;height:32px;color:#000;text-align:center"|$D41
| |
| |style="border:0px;background-color:#DDDB86;width:32px;height:32px;color:#000;text-align:center"|$D42
| |
| |style="border:0px;background-color:#C6E587;width:32px;height:32px;color:#000;text-align:center"|$D43
| |
| |style="border:0px;background-color:#B2EB9E;width:32px;height:32px;color:#000;text-align:center"|$D44
| |
| |style="border:0px;background-color:#A9EBBB;width:32px;height:32px;color:#000;text-align:center"|$D45
| |
| |style="border:0px;background-color:#A8E1EA;width:32px;height:32px;color:#000;text-align:center"|$D46
| |
| |style="border:0px;background-color:#B1D7FE;width:32px;height:32px;color:#000;text-align:center"|$D47
| |
| |style="border:0px;background-color:#C8C9FF;width:32px;height:32px;color:#000;text-align:center"|$D48
| |
| |style="border:0px;background-color:#DCBFFF;width:32px;height:32px;color:#000;text-align:center"|$D49
| |
| |style="border:0px;background-color:#F5B7FF;width:32px;height:32px;color:#000;text-align:center"|$D4A
| |
| |style="border:0px;background-color:#FBB8EB;width:32px;height:32px;color:#000;text-align:center"|$D4B
| |
| |style="border:0px;background-color:#FCC3BD;width:32px;height:32px;color:#000;text-align:center"|$D4C
| |
| |style="border:0px;background-color:#F8F8FA;width:32px;height:32px;color:#000;text-align:center"|$D4D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D4E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D4F
| |
| |-
| |
| |style="border:0px;background-color:#C6C6C4;width:32px;height:32px;color:#000;text-align:center"|$D50
| |
| |style="border:0px;background-color:#FDE6BA;width:32px;height:32px;color:#000;text-align:center"|$D51
| |
| |style="border:0px;background-color:#F5F3A6;width:32px;height:32px;color:#000;text-align:center"|$D52
| |
| |style="border:0px;background-color:#DFFDA6;width:32px;height:32px;color:#000;text-align:center"|$D53
| |
| |style="border:0px;background-color:#CDFFB8;width:32px;height:32px;color:#000;text-align:center"|$D54
| |
| |style="border:0px;background-color:#C5FFD6;width:32px;height:32px;color:#000;text-align:center"|$D55
| |
| |style="border:0px;background-color:#C4F9FF;width:32px;height:32px;color:#000;text-align:center"|$D56
| |
| |style="border:0px;background-color:#CAEFFE;width:32px;height:32px;color:#000;text-align:center"|$D57
| |
| |style="border:0px;background-color:#E2E1FF;width:32px;height:32px;color:#000;text-align:center"|$D58
| |
| |style="border:0px;background-color:#F2D8FF;width:32px;height:32px;color:#000;text-align:center"|$D59
| |
| |style="border:0px;background-color:#FFD1FF;width:32px;height:32px;color:#000;text-align:center"|$D5A
| |
| |style="border:0px;background-color:#FED2FF;width:32px;height:32px;color:#000;text-align:center"|$D5B
| |
| |style="border:0px;background-color:#FEDCD3;width:32px;height:32px;color:#000;text-align:center"|$D5C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$D5D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D5E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D5F
| |
| |-
| |
| |style="border:0px;background-color:#DFDFDF;width:32px;height:32px;color:#000;text-align:center"|$D60
| |
| |style="border:0px;background-color:#FDFCD7;width:32px;height:32px;color:#000;text-align:center"|$D61
| |
| |style="border:0px;background-color:#FFFEC5;width:32px;height:32px;color:#000;text-align:center"|$D62
| |
| |style="border:0px;background-color:#F8FEC4;width:32px;height:32px;color:#000;text-align:center"|$D63
| |
| |style="border:0px;background-color:#E6FFD7;width:32px;height:32px;color:#000;text-align:center"|$D64
| |
| |style="border:0px;background-color:#DFFFEF;width:32px;height:32px;color:#000;text-align:center"|$D65
| |
| |style="border:0px;background-color:#DFFEFF;width:32px;height:32px;color:#000;text-align:center"|$D66
| |
| |style="border:0px;background-color:#E7FFFF;width:32px;height:32px;color:#000;text-align:center"|$D67
| |
| |style="border:0px;background-color:#F9FAFE;width:32px;height:32px;color:#000;text-align:center"|$D68
| |
| |style="border:0px;background-color:#FEF1FF;width:32px;height:32px;color:#000;text-align:center"|$D69
| |
| |style="border:0px;background-color:#FEECFF;width:32px;height:32px;color:#000;text-align:center"|$D6A
| |
| |style="border:0px;background-color:#FFECFE;width:32px;height:32px;color:#000;text-align:center"|$D6B
| |
| |style="border:0px;background-color:#FFF3F2;width:32px;height:32px;color:#000;text-align:center"|$D6C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$D6D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D6E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D6F
| |
| |-
| |
| |style="border:0px;background-color:#F8F8F8;width:32px;height:32px;color:#000;text-align:center"|$D70
| |
| |style="border:0px;background-color:#0279FF;width:32px;height:32px;color:#fff;text-align:center"|$D71
| |
| |style="border:0px;background-color:#2F44FE;width:32px;height:32px;color:#fff;text-align:center"|$D72
| |
| |style="border:0px;background-color:#8C17FD;width:32px;height:32px;color:#fff;text-align:center"|$D73
| |
| |style="border:0px;background-color:#EB00FF;width:32px;height:32px;color:#fff;text-align:center"|$D74
| |
| |style="border:0px;background-color:#FF00C6;width:32px;height:32px;color:#fff;text-align:center"|$D75
| |
| |style="border:0px;background-color:#FE1600;width:32px;height:32px;color:#fff;text-align:center"|$D76
| |
| |style="border:0px;background-color:#EF4201;width:32px;height:32px;color:#fff;text-align:center"|$D77
| |
| |style="border:0px;background-color:#8E7900;width:32px;height:32px;color:#fff;text-align:center"|$D78
| |
| |style="border:0px;background-color:#39A501;width:32px;height:32px;color:#fff;text-align:center"|$D79
| |
| |style="border:0px;background-color:#01D802;width:32px;height:32px;color:#fff;text-align:center"|$D7A
| |
| |style="border:0px;background-color:#00D500;width:32px;height:32px;color:#fff;text-align:center"|$D7B
| |
| |style="border:0px;background-color:#00A8C7;width:32px;height:32px;color:#fff;text-align:center"|$D7C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$D7D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D7E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D7F
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$D80
| |
| |style="border:0px;background-color:#0093FF;width:32px;height:32px;color:#fff;text-align:center"|$D81
| |
| |style="border:0px;background-color:#485FFE;width:32px;height:32px;color:#fff;text-align:center"|$D82
| |
| |style="border:0px;background-color:#A730FD;width:32px;height:32px;color:#fff;text-align:center"|$D83
| |
| |style="border:0px;background-color:#FE03FE;width:32px;height:32px;color:#fff;text-align:center"|$D84
| |
| |style="border:0px;background-color:#FE03DF;width:32px;height:32px;color:#fff;text-align:center"|$D85
| |
| |style="border:0px;background-color:#FF3111;width:32px;height:32px;color:#fff;text-align:center"|$D86
| |
| |style="border:0px;background-color:#FE5A00;width:32px;height:32px;color:#000;text-align:center"|$D87
| |
| |style="border:0px;background-color:#A59500;width:32px;height:32px;color:#000;text-align:center"|$D88
| |
| |style="border:0px;background-color:#50BE00;width:32px;height:32px;color:#000;text-align:center"|$D89
| |
| |style="border:0px;background-color:#01F100;width:32px;height:32px;color:#000;text-align:center"|$D8A
| |
| |style="border:0px;background-color:#01ED0E;width:32px;height:32px;color:#000;text-align:center"|$D8B
| |
| |style="border:0px;background-color:#00C1DC;width:32px;height:32px;color:#000;text-align:center"|$D8C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$D8D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D8E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D8F
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$D90
| |
| |style="border:0px;background-color:#07ABFE;width:32px;height:32px;color:#000;text-align:center"|$D91
| |
| |style="border:0px;background-color:#6476FE;width:32px;height:32px;color:#000;text-align:center"|$D92
| |
| |style="border:0px;background-color:#BD4AFE;width:32px;height:32px;color:#000;text-align:center"|$D93
| |
| |style="border:0px;background-color:#FE20FD;width:32px;height:32px;color:#fff;text-align:center"|$D94
| |
| |style="border:0px;background-color:#FF20F2;width:32px;height:32px;color:#fff;text-align:center"|$D95
| |
| |style="border:0px;background-color:#FE4C2E;width:32px;height:32px;color:#fff;text-align:center"|$D96
| |
| |style="border:0px;background-color:#FF7500;width:32px;height:32px;color:#000;text-align:center"|$D97
| |
| |style="border:0px;background-color:#BDB001;width:32px;height:32px;color:#000;text-align:center"|$D98
| |
| |style="border:0px;background-color:#68D900;width:32px;height:32px;color:#000;text-align:center"|$D99
| |
| |style="border:0px;background-color:#00FF01;width:32px;height:32px;color:#000;text-align:center"|$D9A
| |
| |style="border:0px;background-color:#00FF26;width:32px;height:32px;color:#000;text-align:center"|$D9B
| |
| |style="border:0px;background-color:#00D9F7;width:32px;height:32px;color:#000;text-align:center"|$D9C
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D9D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D9E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$D9F
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$DA0
| |
| |style="border:0px;background-color:#0C0000;width:32px;height:32px;color:#fff;text-align:center"|$DA1
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$DA2
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$DA3
| |
| |style="border:0px;background-color:#000700;width:32px;height:32px;color:#fff;text-align:center"|$DA4
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$DA5
| |
| |style="border:0px;background-color:#000004;width:32px;height:32px;color:#fff;text-align:center"|$DA6
| |
| |style="border:0px;background-color:#00001C;width:32px;height:32px;color:#fff;text-align:center"|$DA7
| |
| |style="border:0px;background-color:#000034;width:32px;height:32px;color:#fff;text-align:center"|$DA8
| |
| |style="border:0px;background-color:#000032;width:32px;height:32px;color:#fff;text-align:center"|$DA9
| |
| |style="border:0px;background-color:#0B0021;width:32px;height:32px;color:#fff;text-align:center"|$DAA
| |
| |style="border:0px;background-color:#140105;width:32px;height:32px;color:#fff;text-align:center"|$DAB
| |
| |style="border:0px;background-color:#130101;width:32px;height:32px;color:#fff;text-align:center"|$DAC
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$DAD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$DAE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$DAF
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$DB0
| |
| |style="border:0px;background-color:#0E0000;width:32px;height:32px;color:#fff;text-align:center"|$DB1
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$DB2
| |
| |style="border:0px;background-color:#000200;width:32px;height:32px;color:#fff;text-align:center"|$DB3
| |
| |style="border:0px;background-color:#000700;width:32px;height:32px;color:#fff;text-align:center"|$DB4
| |
| |style="border:0px;background-color:#000700;width:32px;height:32px;color:#fff;text-align:center"|$DB5
| |
| |style="border:0px;background-color:#000004;width:32px;height:32px;color:#fff;text-align:center"|$DB6
| |
| |style="border:0px;background-color:#000120;width:32px;height:32px;color:#fff;text-align:center"|$DB7
| |
| |style="border:0px;background-color:#000038;width:32px;height:32px;color:#fff;text-align:center"|$DB8
| |
| |style="border:0px;background-color:#000037;width:32px;height:32px;color:#fff;text-align:center"|$DB9
| |
| |style="border:0px;background-color:#0F0020;width:32px;height:32px;color:#fff;text-align:center"|$DBA
| |
| |style="border:0px;background-color:#160006;width:32px;height:32px;color:#fff;text-align:center"|$DBB
| |
| |style="border:0px;background-color:#160100;width:32px;height:32px;color:#fff;text-align:center"|$DBC
| |
| |style="border:0px;background-color:#0D0D0D;width:32px;height:32px;color:#fff;text-align:center"|$DBD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$DBE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$DBF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$DC0
| |
| |style="border:0px;background-color:#1F0000;width:32px;height:32px;color:#fff;text-align:center"|$DC1
| |
| |style="border:0px;background-color:#0B0800;width:32px;height:32px;color:#fff;text-align:center"|$DC2
| |
| |style="border:0px;background-color:#011300;width:32px;height:32px;color:#fff;text-align:center"|$DC3
| |
| |style="border:0px;background-color:#001A00;width:32px;height:32px;color:#fff;text-align:center"|$DC4
| |
| |style="border:0px;background-color:#001A00;width:32px;height:32px;color:#fff;text-align:center"|$DC5
| |
| |style="border:0px;background-color:#001017;width:32px;height:32px;color:#fff;text-align:center"|$DC6
| |
| |style="border:0px;background-color:#000634;width:32px;height:32px;color:#fff;text-align:center"|$DC7
| |
| |style="border:0px;background-color:#00014C;width:32px;height:32px;color:#fff;text-align:center"|$DC8
| |
| |style="border:0px;background-color:#070050;width:32px;height:32px;color:#fff;text-align:center"|$DC9
| |
| |style="border:0px;background-color:#210038;width:32px;height:32px;color:#fff;text-align:center"|$DCA
| |
| |style="border:0px;background-color:#2A0017;width:32px;height:32px;color:#fff;text-align:center"|$DCB
| |
| |style="border:0px;background-color:#2A0001;width:32px;height:32px;color:#fff;text-align:center"|$DCC
| |
| |style="border:0px;background-color:#282828;width:32px;height:32px;color:#fff;text-align:center"|$DCD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$DCE
| |
| |style="border:0px;background-color:#000002;width:32px;height:32px;color:#fff;text-align:center"|$DCF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$DD0
| |
| |style="border:0px;background-color:#391400;width:32px;height:32px;color:#fff;text-align:center"|$DD1
| |
| |style="border:0px;background-color:#262200;width:32px;height:32px;color:#fff;text-align:center"|$DD2
| |
| |style="border:0px;background-color:#0E2E00;width:32px;height:32px;color:#fff;text-align:center"|$DD3
| |
| |style="border:0px;background-color:#003500;width:32px;height:32px;color:#fff;text-align:center"|$DD4
| |
| |style="border:0px;background-color:#003400;width:32px;height:32px;color:#fff;text-align:center"|$DD5
| |
| |style="border:0px;background-color:#022A32;width:32px;height:32px;color:#fff;text-align:center"|$DD6
| |
| |style="border:0px;background-color:#00204D;width:32px;height:32px;color:#fff;text-align:center"|$DD7
| |
| |style="border:0px;background-color:#0E1067;width:32px;height:32px;color:#fff;text-align:center"|$DD8
| |
| |style="border:0px;background-color:#240564;width:32px;height:32px;color:#fff;text-align:center"|$DD9
| |
| |style="border:0px;background-color:#3D004F;width:32px;height:32px;color:#fff;text-align:center"|$DDA
| |
| |style="border:0px;background-color:#450133;width:32px;height:32px;color:#fff;text-align:center"|$DDB
| |
| |style="border:0px;background-color:#450A04;width:32px;height:32px;color:#fff;text-align:center"|$DDC
| |
| |style="border:0px;background-color:#434343;width:32px;height:32px;color:#fff;text-align:center"|$DDD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$DDE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$DDF
| |
| |-
| |
| |style="border:0px;background-color:#0B0B0B;width:32px;height:32px;color:#fff;text-align:center"|$DE0
| |
| |style="border:0px;background-color:#552F00;width:32px;height:32px;color:#fff;text-align:center"|$DE1
| |
| |style="border:0px;background-color:#433F00;width:32px;height:32px;color:#fff;text-align:center"|$DE2
| |
| |style="border:0px;background-color:#2A4A01;width:32px;height:32px;color:#fff;text-align:center"|$DE3
| |
| |style="border:0px;background-color:#135002;width:32px;height:32px;color:#fff;text-align:center"|$DE4
| |
| |style="border:0px;background-color:#0A501E;width:32px;height:32px;color:#fff;text-align:center"|$DE5
| |
| |style="border:0px;background-color:#0A454E;width:32px;height:32px;color:#fff;text-align:center"|$DE6
| |
| |style="border:0px;background-color:#123D68;width:32px;height:32px;color:#fff;text-align:center"|$DE7
| |
| |style="border:0px;background-color:#2B2C88;width:32px;height:32px;color:#fff;text-align:center"|$DE8
| |
| |style="border:0px;background-color:#3F2185;width:32px;height:32px;color:#fff;text-align:center"|$DE9
| |
| |style="border:0px;background-color:#58186E;width:32px;height:32px;color:#fff;text-align:center"|$DEA
| |
| |style="border:0px;background-color:#621952;width:32px;height:32px;color:#fff;text-align:center"|$DEB
| |
| |style="border:0px;background-color:#63241B;width:32px;height:32px;color:#fff;text-align:center"|$DEC
| |
| |style="border:0px;background-color:#5E5E60;width:32px;height:32px;color:#fff;text-align:center"|$DED
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$DEE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$DEF
| |
| |-
| |
| |style="border:0px;background-color:#282826;width:32px;height:32px;color:#fff;text-align:center"|$DF0
| |
| |style="border:0px;background-color:#724B19;width:32px;height:32px;color:#fff;text-align:center"|$DF1
| |
| |style="border:0px;background-color:#5C5A02;width:32px;height:32px;color:#fff;text-align:center"|$DF2
| |
| |style="border:0px;background-color:#456601;width:32px;height:32px;color:#fff;text-align:center"|$DF3
| |
| |style="border:0px;background-color:#2E6C19;width:32px;height:32px;color:#fff;text-align:center"|$DF4
| |
| |style="border:0px;background-color:#266C37;width:32px;height:32px;color:#fff;text-align:center"|$DF5
| |
| |style="border:0px;background-color:#26606B;width:32px;height:32px;color:#fff;text-align:center"|$DF6
| |
| |style="border:0px;background-color:#2E5785;width:32px;height:32px;color:#fff;text-align:center"|$DF7
| |
| |style="border:0px;background-color:#4646A0;width:32px;height:32px;color:#fff;text-align:center"|$DF8
| |
| |style="border:0px;background-color:#5C3CA2;width:32px;height:32px;color:#fff;text-align:center"|$DF9
| |
| |style="border:0px;background-color:#73338C;width:32px;height:32px;color:#fff;text-align:center"|$DFA
| |
| |style="border:0px;background-color:#7E3569;width:32px;height:32px;color:#fff;text-align:center"|$DFB
| |
| |style="border:0px;background-color:#7F4038;width:32px;height:32px;color:#fff;text-align:center"|$DFC
| |
| |style="border:0px;background-color:#777978;width:32px;height:32px;color:#fff;text-align:center"|$DFD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$DFE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$DFF
| |
| |-
| |
| ! colspan=16 | Saturation level $E
| |
| |-
| |
| |style="border:0px;background-color:#4F504C;width:32px;height:32px;color:#fff;text-align:center"|$E00
| |
| |style="border:0px;background-color:#836743;width:32px;height:32px;color:#fff;text-align:center"|$E01
| |
| |style="border:0px;background-color:#737134;width:32px;height:32px;color:#fff;text-align:center"|$E02
| |
| |style="border:0px;background-color:#627A33;width:32px;height:32px;color:#fff;text-align:center"|$E03
| |
| |style="border:0px;background-color:#527F44;width:32px;height:32px;color:#fff;text-align:center"|$E04
| |
| |style="border:0px;background-color:#4C7E59;width:32px;height:32px;color:#fff;text-align:center"|$E05
| |
| |style="border:0px;background-color:#4C777D;width:32px;height:32px;color:#fff;text-align:center"|$E06
| |
| |style="border:0px;background-color:#527190;width:32px;height:32px;color:#fff;text-align:center"|$E07
| |
| |style="border:0px;background-color:#6364A4;width:32px;height:32px;color:#fff;text-align:center"|$E08
| |
| |style="border:0px;background-color:#725CA6;width:32px;height:32px;color:#fff;text-align:center"|$E09
| |
| |style="border:0px;background-color:#855891;width:32px;height:32px;color:#fff;text-align:center"|$E0A
| |
| |style="border:0px;background-color:#8A587D;width:32px;height:32px;color:#fff;text-align:center"|$E0B
| |
| |style="border:0px;background-color:#89605A;width:32px;height:32px;color:#fff;text-align:center"|$E0C
| |
| |style="border:0px;background-color:#868686;width:32px;height:32px;color:#000;text-align:center"|$E0D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E0E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E0F
| |
| |-
| |
| |style="border:0px;background-color:#6B6B69;width:32px;height:32px;color:#fff;text-align:center"|$E10
| |
| |style="border:0px;background-color:#9B8160;width:32px;height:32px;color:#000;text-align:center"|$E11
| |
| |style="border:0px;background-color:#8D8B52;width:32px;height:32px;color:#000;text-align:center"|$E12
| |
| |style="border:0px;background-color:#7D9450;width:32px;height:32px;color:#000;text-align:center"|$E13
| |
| |style="border:0px;background-color:#6C975F;width:32px;height:32px;color:#000;text-align:center"|$E14
| |
| |style="border:0px;background-color:#689773;width:32px;height:32px;color:#000;text-align:center"|$E15
| |
| |style="border:0px;background-color:#679096;width:32px;height:32px;color:#000;text-align:center"|$E16
| |
| |style="border:0px;background-color:#6C89A7;width:32px;height:32px;color:#000;text-align:center"|$E17
| |
| |style="border:0px;background-color:#7D7FBA;width:32px;height:32px;color:#000;text-align:center"|$E18
| |
| |style="border:0px;background-color:#8B76BC;width:32px;height:32px;color:#000;text-align:center"|$E19
| |
| |style="border:0px;background-color:#9D71B0;width:32px;height:32px;color:#000;text-align:center"|$E1A
| |
| |style="border:0px;background-color:#A2729A;width:32px;height:32px;color:#000;text-align:center"|$E1B
| |
| |style="border:0px;background-color:#A37A74;width:32px;height:32px;color:#000;text-align:center"|$E1C
| |
| |style="border:0px;background-color:#9E9EA0;width:32px;height:32px;color:#000;text-align:center"|$E1D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E1E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E1F
| |
| |-
| |
| |style="border:0px;background-color:#848484;width:32px;height:32px;color:#000;text-align:center"|$E20
| |
| |style="border:0px;background-color:#B79B7A;width:32px;height:32px;color:#000;text-align:center"|$E21
| |
| |style="border:0px;background-color:#A7A66A;width:32px;height:32px;color:#000;text-align:center"|$E22
| |
| |style="border:0px;background-color:#97AD6C;width:32px;height:32px;color:#000;text-align:center"|$E23
| |
| |style="border:0px;background-color:#87B27A;width:32px;height:32px;color:#000;text-align:center"|$E24
| |
| |style="border:0px;background-color:#82B18D;width:32px;height:32px;color:#000;text-align:center"|$E25
| |
| |style="border:0px;background-color:#82A9B0;width:32px;height:32px;color:#000;text-align:center"|$E26
| |
| |style="border:0px;background-color:#87A4C2;width:32px;height:32px;color:#000;text-align:center"|$E27
| |
| |style="border:0px;background-color:#9799D4;width:32px;height:32px;color:#000;text-align:center"|$E28
| |
| |style="border:0px;background-color:#A791D9;width:32px;height:32px;color:#000;text-align:center"|$E29
| |
| |style="border:0px;background-color:#B88DC3;width:32px;height:32px;color:#000;text-align:center"|$E2A
| |
| |style="border:0px;background-color:#BB8DB2;width:32px;height:32px;color:#000;text-align:center"|$E2B
| |
| |style="border:0px;background-color:#BC938D;width:32px;height:32px;color:#000;text-align:center"|$E2C
| |
| |style="border:0px;background-color:#B9B9B6;width:32px;height:32px;color:#000;text-align:center"|$E2D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E2E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E2F
| |
| |-
| |
| |style="border:0px;background-color:#9D9F9E;width:32px;height:32px;color:#000;text-align:center"|$E30
| |
| |style="border:0px;background-color:#D0B493;width:32px;height:32px;color:#000;text-align:center"|$E31
| |
| |style="border:0px;background-color:#C0BF81;width:32px;height:32px;color:#000;text-align:center"|$E32
| |
| |style="border:0px;background-color:#B1C783;width:32px;height:32px;color:#000;text-align:center"|$E33
| |
| |style="border:0px;background-color:#A0CB93;width:32px;height:32px;color:#000;text-align:center"|$E34
| |
| |style="border:0px;background-color:#9BCAA6;width:32px;height:32px;color:#000;text-align:center"|$E35
| |
| |style="border:0px;background-color:#9BC2C9;width:32px;height:32px;color:#000;text-align:center"|$E36
| |
| |style="border:0px;background-color:#A0BDDB;width:32px;height:32px;color:#000;text-align:center"|$E37
| |
| |style="border:0px;background-color:#B0B2ED;width:32px;height:32px;color:#000;text-align:center"|$E38
| |
| |style="border:0px;background-color:#BFAAED;width:32px;height:32px;color:#000;text-align:center"|$E39
| |
| |style="border:0px;background-color:#D1A5E1;width:32px;height:32px;color:#000;text-align:center"|$E3A
| |
| |style="border:0px;background-color:#D5A7CB;width:32px;height:32px;color:#000;text-align:center"|$E3B
| |
| |style="border:0px;background-color:#D6ADA7;width:32px;height:32px;color:#000;text-align:center"|$E3C
| |
| |style="border:0px;background-color:#D1D1D1;width:32px;height:32px;color:#000;text-align:center"|$E3D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E3E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E3F
| |
| |-
| |
| |style="border:0px;background-color:#B9B9B9;width:32px;height:32px;color:#000;text-align:center"|$E40
| |
| |style="border:0px;background-color:#E8CDAF;width:32px;height:32px;color:#000;text-align:center"|$E41
| |
| |style="border:0px;background-color:#D8D8A0;width:32px;height:32px;color:#000;text-align:center"|$E42
| |
| |style="border:0px;background-color:#CBDE9E;width:32px;height:32px;color:#000;text-align:center"|$E43
| |
| |style="border:0px;background-color:#BDE4AF;width:32px;height:32px;color:#000;text-align:center"|$E44
| |
| |style="border:0px;background-color:#B6E3C2;width:32px;height:32px;color:#000;text-align:center"|$E45
| |
| |style="border:0px;background-color:#B7DCE2;width:32px;height:32px;color:#000;text-align:center"|$E46
| |
| |style="border:0px;background-color:#BDD6F4;width:32px;height:32px;color:#000;text-align:center"|$E47
| |
| |style="border:0px;background-color:#CCCCFF;width:32px;height:32px;color:#000;text-align:center"|$E48
| |
| |style="border:0px;background-color:#D8C5FF;width:32px;height:32px;color:#000;text-align:center"|$E49
| |
| |style="border:0px;background-color:#E9C1F6;width:32px;height:32px;color:#000;text-align:center"|$E4A
| |
| |style="border:0px;background-color:#EEC1E3;width:32px;height:32px;color:#000;text-align:center"|$E4B
| |
| |style="border:0px;background-color:#F0C7C3;width:32px;height:32px;color:#000;text-align:center"|$E4C
| |
| |style="border:0px;background-color:#EBEBEB;width:32px;height:32px;color:#000;text-align:center"|$E4D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E4E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E4F
| |
| |-
| |
| |style="border:0px;background-color:#D3D3D3;width:32px;height:32px;color:#000;text-align:center"|$E50
| |
| |style="border:0px;background-color:#FEE7C7;width:32px;height:32px;color:#000;text-align:center"|$E51
| |
| |style="border:0px;background-color:#F1EFBB;width:32px;height:32px;color:#000;text-align:center"|$E52
| |
| |style="border:0px;background-color:#E4F6BA;width:32px;height:32px;color:#000;text-align:center"|$E53
| |
| |style="border:0px;background-color:#D8FAC8;width:32px;height:32px;color:#000;text-align:center"|$E54
| |
| |style="border:0px;background-color:#D0FCDB;width:32px;height:32px;color:#000;text-align:center"|$E55
| |
| |style="border:0px;background-color:#D0F3F9;width:32px;height:32px;color:#000;text-align:center"|$E56
| |
| |style="border:0px;background-color:#D6EDFD;width:32px;height:32px;color:#000;text-align:center"|$E57
| |
| |style="border:0px;background-color:#E7E4FF;width:32px;height:32px;color:#000;text-align:center"|$E58
| |
| |style="border:0px;background-color:#F1DDFF;width:32px;height:32px;color:#000;text-align:center"|$E59
| |
| |style="border:0px;background-color:#FEDAFE;width:32px;height:32px;color:#000;text-align:center"|$E5A
| |
| |style="border:0px;background-color:#FEDAF7;width:32px;height:32px;color:#000;text-align:center"|$E5B
| |
| |style="border:0px;background-color:#FFE1D7;width:32px;height:32px;color:#000;text-align:center"|$E5C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$E5D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E5E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E5F
| |
| |-
| |
| |style="border:0px;background-color:#EBEBE9;width:32px;height:32px;color:#000;text-align:center"|$E60
| |
| |style="border:0px;background-color:#FEFDE4;width:32px;height:32px;color:#000;text-align:center"|$E61
| |
| |style="border:0px;background-color:#FEFFD7;width:32px;height:32px;color:#000;text-align:center"|$E62
| |
| |style="border:0px;background-color:#FBFED7;width:32px;height:32px;color:#000;text-align:center"|$E63
| |
| |style="border:0px;background-color:#EFFFE5;width:32px;height:32px;color:#000;text-align:center"|$E64
| |
| |style="border:0px;background-color:#E9FFF3;width:32px;height:32px;color:#000;text-align:center"|$E65
| |
| |style="border:0px;background-color:#E9FFFD;width:32px;height:32px;color:#000;text-align:center"|$E66
| |
| |style="border:0px;background-color:#EFFFFF;width:32px;height:32px;color:#000;text-align:center"|$E67
| |
| |style="border:0px;background-color:#FDFDFE;width:32px;height:32px;color:#000;text-align:center"|$E68
| |
| |style="border:0px;background-color:#FDF7FE;width:32px;height:32px;color:#000;text-align:center"|$E69
| |
| |style="border:0px;background-color:#FEF2FF;width:32px;height:32px;color:#000;text-align:center"|$E6A
| |
| |style="border:0px;background-color:#FEF3FD;width:32px;height:32px;color:#000;text-align:center"|$E6B
| |
| |style="border:0px;background-color:#FEF9F4;width:32px;height:32px;color:#000;text-align:center"|$E6C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$E6D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E6E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E6F
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$E70
| |
| |style="border:0px;background-color:#017BFF;width:32px;height:32px;color:#fff;text-align:center"|$E71
| |
| |style="border:0px;background-color:#2C47FE;width:32px;height:32px;color:#fff;text-align:center"|$E72
| |
| |style="border:0px;background-color:#8E17FD;width:32px;height:32px;color:#fff;text-align:center"|$E73
| |
| |style="border:0px;background-color:#F400FF;width:32px;height:32px;color:#fff;text-align:center"|$E74
| |
| |style="border:0px;background-color:#FF00CD;width:32px;height:32px;color:#fff;text-align:center"|$E75
| |
| |style="border:0px;background-color:#FF1402;width:32px;height:32px;color:#fff;text-align:center"|$E76
| |
| |style="border:0px;background-color:#F74001;width:32px;height:32px;color:#fff;text-align:center"|$E77
| |
| |style="border:0px;background-color:#8C7D01;width:32px;height:32px;color:#fff;text-align:center"|$E78
| |
| |style="border:0px;background-color:#34A601;width:32px;height:32px;color:#fff;text-align:center"|$E79
| |
| |style="border:0px;background-color:#01DE01;width:32px;height:32px;color:#000;text-align:center"|$E7A
| |
| |style="border:0px;background-color:#00D902;width:32px;height:32px;color:#fff;text-align:center"|$E7B
| |
| |style="border:0px;background-color:#00ABC9;width:32px;height:32px;color:#fff;text-align:center"|$E7C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$E7D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E7E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E7F
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$E80
| |
| |style="border:0px;background-color:#0097FF;width:32px;height:32px;color:#fff;text-align:center"|$E81
| |
| |style="border:0px;background-color:#4462FE;width:32px;height:32px;color:#fff;text-align:center"|$E82
| |
| |style="border:0px;background-color:#A632FC;width:32px;height:32px;color:#fff;text-align:center"|$E83
| |
| |style="border:0px;background-color:#FF01FD;width:32px;height:32px;color:#fff;text-align:center"|$E84
| |
| |style="border:0px;background-color:#FE00EA;width:32px;height:32px;color:#fff;text-align:center"|$E85
| |
| |style="border:0px;background-color:#FE2D12;width:32px;height:32px;color:#fff;text-align:center"|$E86
| |
| |style="border:0px;background-color:#FE5900;width:32px;height:32px;color:#000;text-align:center"|$E87
| |
| |style="border:0px;background-color:#A19900;width:32px;height:32px;color:#000;text-align:center"|$E88
| |
| |style="border:0px;background-color:#47C600;width:32px;height:32px;color:#000;text-align:center"|$E89
| |
| |style="border:0px;background-color:#01F801;width:32px;height:32px;color:#000;text-align:center"|$E8A
| |
| |style="border:0px;background-color:#01F40C;width:32px;height:32px;color:#000;text-align:center"|$E8B
| |
| |style="border:0px;background-color:#00C3E9;width:32px;height:32px;color:#000;text-align:center"|$E8C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$E8D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E8E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E8F
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$E90
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$E91
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$E92
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$E93
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$E94
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$E95
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$E96
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$E97
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$E98
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$E99
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$E9A
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$E9B
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$E9C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$E9D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E9E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$E9F
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$EA0
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EA1
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EA2
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EA3
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EA4
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EA5
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EA6
| |
| |style="border:0px;background-color:#01000E;width:32px;height:32px;color:#fff;text-align:center"|$EA7
| |
| |style="border:0px;background-color:#00001C;width:32px;height:32px;color:#fff;text-align:center"|$EA8
| |
| |style="border:0px;background-color:#00001F;width:32px;height:32px;color:#fff;text-align:center"|$EA9
| |
| |style="border:0px;background-color:#02000D;width:32px;height:32px;color:#fff;text-align:center"|$EAA
| |
| |style="border:0px;background-color:#060000;width:32px;height:32px;color:#fff;text-align:center"|$EAB
| |
| |style="border:0px;background-color:#060000;width:32px;height:32px;color:#fff;text-align:center"|$EAC
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EAD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EAE
| |
| |style="border:0px;background-color:#000002;width:32px;height:32px;color:#fff;text-align:center"|$EAF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EB0
| |
| |style="border:0px;background-color:#030000;width:32px;height:32px;color:#fff;text-align:center"|$EB1
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EB2
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EB3
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EB4
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$EB5
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EB6
| |
| |style="border:0px;background-color:#010010;width:32px;height:32px;color:#fff;text-align:center"|$EB7
| |
| |style="border:0px;background-color:#000022;width:32px;height:32px;color:#fff;text-align:center"|$EB8
| |
| |style="border:0px;background-color:#000020;width:32px;height:32px;color:#fff;text-align:center"|$EB9
| |
| |style="border:0px;background-color:#040012;width:32px;height:32px;color:#fff;text-align:center"|$EBA
| |
| |style="border:0px;background-color:#090000;width:32px;height:32px;color:#fff;text-align:center"|$EBB
| |
| |style="border:0px;background-color:#0A0000;width:32px;height:32px;color:#fff;text-align:center"|$EBC
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EBD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EBE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EBF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EC0
| |
| |style="border:0px;background-color:#140001;width:32px;height:32px;color:#fff;text-align:center"|$EC1
| |
| |style="border:0px;background-color:#060500;width:32px;height:32px;color:#fff;text-align:center"|$EC2
| |
| |style="border:0px;background-color:#000D01;width:32px;height:32px;color:#fff;text-align:center"|$EC3
| |
| |style="border:0px;background-color:#001100;width:32px;height:32px;color:#fff;text-align:center"|$EC4
| |
| |style="border:0px;background-color:#001200;width:32px;height:32px;color:#fff;text-align:center"|$EC5
| |
| |style="border:0px;background-color:#000A10;width:32px;height:32px;color:#fff;text-align:center"|$EC6
| |
| |style="border:0px;background-color:#000326;width:32px;height:32px;color:#fff;text-align:center"|$EC7
| |
| |style="border:0px;background-color:#000031;width:32px;height:32px;color:#fff;text-align:center"|$EC8
| |
| |style="border:0px;background-color:#050032;width:32px;height:32px;color:#fff;text-align:center"|$EC9
| |
| |style="border:0px;background-color:#160022;width:32px;height:32px;color:#fff;text-align:center"|$ECA
| |
| |style="border:0px;background-color:#1B0010;width:32px;height:32px;color:#fff;text-align:center"|$ECB
| |
| |style="border:0px;background-color:#1C0001;width:32px;height:32px;color:#fff;text-align:center"|$ECC
| |
| |style="border:0px;background-color:#1B1B19;width:32px;height:32px;color:#fff;text-align:center"|$ECD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$ECE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$ECF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$ED0
| |
| |style="border:0px;background-color:#301500;width:32px;height:32px;color:#fff;text-align:center"|$ED1
| |
| |style="border:0px;background-color:#202000;width:32px;height:32px;color:#fff;text-align:center"|$ED2
| |
| |style="border:0px;background-color:#122700;width:32px;height:32px;color:#fff;text-align:center"|$ED3
| |
| |style="border:0px;background-color:#032C00;width:32px;height:32px;color:#fff;text-align:center"|$ED4
| |
| |style="border:0px;background-color:#002C09;width:32px;height:32px;color:#fff;text-align:center"|$ED5
| |
| |style="border:0px;background-color:#01242A;width:32px;height:32px;color:#fff;text-align:center"|$ED6
| |
| |style="border:0px;background-color:#041F3D;width:32px;height:32px;color:#fff;text-align:center"|$ED7
| |
| |style="border:0px;background-color:#14134D;width:32px;height:32px;color:#fff;text-align:center"|$ED8
| |
| |style="border:0px;background-color:#210B53;width:32px;height:32px;color:#fff;text-align:center"|$ED9
| |
| |style="border:0px;background-color:#310741;width:32px;height:32px;color:#fff;text-align:center"|$EDA
| |
| |style="border:0px;background-color:#36082C;width:32px;height:32px;color:#fff;text-align:center"|$EDB
| |
| |style="border:0px;background-color:#370F06;width:32px;height:32px;color:#fff;text-align:center"|$EDC
| |
| |style="border:0px;background-color:#333534;width:32px;height:32px;color:#fff;text-align:center"|$EDD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EDE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EDF
| |
| |-
| |
| |style="border:0px;background-color:#1B1B1B;width:32px;height:32px;color:#fff;text-align:center"|$EE0
| |
| |style="border:0px;background-color:#4C3013;width:32px;height:32px;color:#fff;text-align:center"|$EE1
| |
| |style="border:0px;background-color:#3D3C01;width:32px;height:32px;color:#fff;text-align:center"|$EE2
| |
| |style="border:0px;background-color:#2E4302;width:32px;height:32px;color:#fff;text-align:center"|$EE3
| |
| |style="border:0px;background-color:#1E470F;width:32px;height:32px;color:#fff;text-align:center"|$EE4
| |
| |style="border:0px;background-color:#184723;width:32px;height:32px;color:#fff;text-align:center"|$EE5
| |
| |style="border:0px;background-color:#194047;width:32px;height:32px;color:#fff;text-align:center"|$EE6
| |
| |style="border:0px;background-color:#1D3A58;width:32px;height:32px;color:#fff;text-align:center"|$EE7
| |
| |style="border:0px;background-color:#2F2E6A;width:32px;height:32px;color:#fff;text-align:center"|$EE8
| |
| |style="border:0px;background-color:#3C276A;width:32px;height:32px;color:#fff;text-align:center"|$EE9
| |
| |style="border:0px;background-color:#4D2255;width:32px;height:32px;color:#fff;text-align:center"|$EEA
| |
| |style="border:0px;background-color:#522346;width:32px;height:32px;color:#fff;text-align:center"|$EEB
| |
| |style="border:0px;background-color:#532A26;width:32px;height:32px;color:#fff;text-align:center"|$EEC
| |
| |style="border:0px;background-color:#4F5150;width:32px;height:32px;color:#fff;text-align:center"|$EED
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EEE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EEF
| |
| |-
| |
| |style="border:0px;background-color:#343434;width:32px;height:32px;color:#fff;text-align:center"|$EF0
| |
| |style="border:0px;background-color:#684C2B;width:32px;height:32px;color:#fff;text-align:center"|$EF1
| |
| |style="border:0px;background-color:#58561A;width:32px;height:32px;color:#fff;text-align:center"|$EF2
| |
| |style="border:0px;background-color:#485E1B;width:32px;height:32px;color:#fff;text-align:center"|$EF3
| |
| |style="border:0px;background-color:#3A632B;width:32px;height:32px;color:#fff;text-align:center"|$EF4
| |
| |style="border:0px;background-color:#33623E;width:32px;height:32px;color:#fff;text-align:center"|$EF5
| |
| |style="border:0px;background-color:#335C60;width:32px;height:32px;color:#fff;text-align:center"|$EF6
| |
| |style="border:0px;background-color:#375675;width:32px;height:32px;color:#fff;text-align:center"|$EF7
| |
| |style="border:0px;background-color:#4A4889;width:32px;height:32px;color:#fff;text-align:center"|$EF8
| |
| |style="border:0px;background-color:#574187;width:32px;height:32px;color:#fff;text-align:center"|$EF9
| |
| |style="border:0px;background-color:#683D73;width:32px;height:32px;color:#fff;text-align:center"|$EFA
| |
| |style="border:0px;background-color:#6D3E60;width:32px;height:32px;color:#fff;text-align:center"|$EFB
| |
| |style="border:0px;background-color:#6E453F;width:32px;height:32px;color:#fff;text-align:center"|$EFC
| |
| |style="border:0px;background-color:#6A6B70;width:32px;height:32px;color:#fff;text-align:center"|$EFD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EFE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$EFF
| |
| |-
| |
| ! colspan=16 | Saturation level $F
| |
| |-
| |
| |style="border:0px;background-color:#5E5F5B;width:32px;height:32px;color:#fff;text-align:center"|$F00
| |
| |style="border:0px;background-color:#786857;width:32px;height:32px;color:#fff;text-align:center"|$F01
| |
| |style="border:0px;background-color:#6F6F4F;width:32px;height:32px;color:#fff;text-align:center"|$F02
| |
| |style="border:0px;background-color:#677350;width:32px;height:32px;color:#fff;text-align:center"|$F03
| |
| |style="border:0px;background-color:#5E7559;width:32px;height:32px;color:#fff;text-align:center"|$F04
| |
| |style="border:0px;background-color:#5C7563;width:32px;height:32px;color:#fff;text-align:center"|$F05
| |
| |style="border:0px;background-color:#5C7176;width:32px;height:32px;color:#fff;text-align:center"|$F06
| |
| |style="border:0px;background-color:#5F6F7F;width:32px;height:32px;color:#fff;text-align:center"|$F07
| |
| |style="border:0px;background-color:#696888;width:32px;height:32px;color:#fff;text-align:center"|$F08
| |
| |style="border:0px;background-color:#6E6489;width:32px;height:32px;color:#fff;text-align:center"|$F09
| |
| |style="border:0px;background-color:#79627E;width:32px;height:32px;color:#fff;text-align:center"|$F0A
| |
| |style="border:0px;background-color:#7B6277;width:32px;height:32px;color:#fff;text-align:center"|$F0B
| |
| |style="border:0px;background-color:#7B6661;width:32px;height:32px;color:#fff;text-align:center"|$F0C
| |
| |style="border:0px;background-color:#787878;width:32px;height:32px;color:#fff;text-align:center"|$F0D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F0E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F0F
| |
| |-
| |
| |style="border:0px;background-color:#777777;width:32px;height:32px;color:#fff;text-align:center"|$F10
| |
| |style="border:0px;background-color:#928370;width:32px;height:32px;color:#000;text-align:center"|$F11
| |
| |style="border:0px;background-color:#898967;width:32px;height:32px;color:#000;text-align:center"|$F12
| |
| |style="border:0px;background-color:#818C68;width:32px;height:32px;color:#000;text-align:center"|$F13
| |
| |style="border:0px;background-color:#788F72;width:32px;height:32px;color:#000;text-align:center"|$F14
| |
| |style="border:0px;background-color:#74907A;width:32px;height:32px;color:#000;text-align:center"|$F15
| |
| |style="border:0px;background-color:#768B90;width:32px;height:32px;color:#000;text-align:center"|$F16
| |
| |style="border:0px;background-color:#778898;width:32px;height:32px;color:#000;text-align:center"|$F17
| |
| |style="border:0px;background-color:#8382A4;width:32px;height:32px;color:#000;text-align:center"|$F18
| |
| |style="border:0px;background-color:#887EA1;width:32px;height:32px;color:#000;text-align:center"|$F19
| |
| |style="border:0px;background-color:#927B99;width:32px;height:32px;color:#000;text-align:center"|$F1A
| |
| |style="border:0px;background-color:#947B90;width:32px;height:32px;color:#000;text-align:center"|$F1B
| |
| |style="border:0px;background-color:#958178;width:32px;height:32px;color:#000;text-align:center"|$F1C
| |
| |style="border:0px;background-color:#929292;width:32px;height:32px;color:#000;text-align:center"|$F1D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F1E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F1F
| |
| |-
| |
| |style="border:0px;background-color:#939391;width:32px;height:32px;color:#000;text-align:center"|$F20
| |
| |style="border:0px;background-color:#AD9C8F;width:32px;height:32px;color:#000;text-align:center"|$F21
| |
| |style="border:0px;background-color:#A2A385;width:32px;height:32px;color:#000;text-align:center"|$F22
| |
| |style="border:0px;background-color:#9BA684;width:32px;height:32px;color:#000;text-align:center"|$F23
| |
| |style="border:0px;background-color:#92A98D;width:32px;height:32px;color:#000;text-align:center"|$F24
| |
| |style="border:0px;background-color:#8FA797;width:32px;height:32px;color:#000;text-align:center"|$F25
| |
| |style="border:0px;background-color:#8FA4A7;width:32px;height:32px;color:#000;text-align:center"|$F26
| |
| |style="border:0px;background-color:#92A2B1;width:32px;height:32px;color:#000;text-align:center"|$F27
| |
| |style="border:0px;background-color:#9D9CBB;width:32px;height:32px;color:#000;text-align:center"|$F28
| |
| |style="border:0px;background-color:#A298BA;width:32px;height:32px;color:#000;text-align:center"|$F29
| |
| |style="border:0px;background-color:#AD96B2;width:32px;height:32px;color:#000;text-align:center"|$F2A
| |
| |style="border:0px;background-color:#AE96A9;width:32px;height:32px;color:#000;text-align:center"|$F2B
| |
| |style="border:0px;background-color:#AE9B95;width:32px;height:32px;color:#000;text-align:center"|$F2C
| |
| |style="border:0px;background-color:#AAADAA;width:32px;height:32px;color:#000;text-align:center"|$F2D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F2E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F2F
| |
| |-
| |
| |style="border:0px;background-color:#ACACAE;width:32px;height:32px;color:#000;text-align:center"|$F30
| |
| |style="border:0px;background-color:#C5B5A5;width:32px;height:32px;color:#000;text-align:center"|$F31
| |
| |style="border:0px;background-color:#BBBC9C;width:32px;height:32px;color:#000;text-align:center"|$F32
| |
| |style="border:0px;background-color:#B5C09D;width:32px;height:32px;color:#000;text-align:center"|$F33
| |
| |style="border:0px;background-color:#ABC2A5;width:32px;height:32px;color:#000;text-align:center"|$F34
| |
| |style="border:0px;background-color:#A9C1B1;width:32px;height:32px;color:#000;text-align:center"|$F35
| |
| |style="border:0px;background-color:#A9BEC3;width:32px;height:32px;color:#000;text-align:center"|$F36
| |
| |style="border:0px;background-color:#ABBBCA;width:32px;height:32px;color:#000;text-align:center"|$F37
| |
| |style="border:0px;background-color:#B6B5D4;width:32px;height:32px;color:#000;text-align:center"|$F38
| |
| |style="border:0px;background-color:#BCB1D5;width:32px;height:32px;color:#000;text-align:center"|$F39
| |
| |style="border:0px;background-color:#C6AFCA;width:32px;height:32px;color:#000;text-align:center"|$F3A
| |
| |style="border:0px;background-color:#C7B0C3;width:32px;height:32px;color:#000;text-align:center"|$F3B
| |
| |style="border:0px;background-color:#C7B4AE;width:32px;height:32px;color:#000;text-align:center"|$F3C
| |
| |style="border:0px;background-color:#C6C6C6;width:32px;height:32px;color:#000;text-align:center"|$F3D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F3E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F3F
| |
| |-
| |
| |style="border:0px;background-color:#C7C7C7;width:32px;height:32px;color:#000;text-align:center"|$F40
| |
| |style="border:0px;background-color:#E0D0C0;width:32px;height:32px;color:#000;text-align:center"|$F41
| |
| |style="border:0px;background-color:#D6D6B6;width:32px;height:32px;color:#000;text-align:center"|$F42
| |
| |style="border:0px;background-color:#CFD9B6;width:32px;height:32px;color:#000;text-align:center"|$F43
| |
| |style="border:0px;background-color:#C5DCBF;width:32px;height:32px;color:#000;text-align:center"|$F44
| |
| |style="border:0px;background-color:#C3DBCB;width:32px;height:32px;color:#000;text-align:center"|$F45
| |
| |style="border:0px;background-color:#C3D8DB;width:32px;height:32px;color:#000;text-align:center"|$F46
| |
| |style="border:0px;background-color:#C6D6E5;width:32px;height:32px;color:#000;text-align:center"|$F47
| |
| |style="border:0px;background-color:#D0CFEE;width:32px;height:32px;color:#000;text-align:center"|$F48
| |
| |style="border:0px;background-color:#D6CCEE;width:32px;height:32px;color:#000;text-align:center"|$F49
| |
| |style="border:0px;background-color:#E0C9E3;width:32px;height:32px;color:#000;text-align:center"|$F4A
| |
| |style="border:0px;background-color:#E1CADC;width:32px;height:32px;color:#000;text-align:center"|$F4B
| |
| |style="border:0px;background-color:#E1CEC6;width:32px;height:32px;color:#000;text-align:center"|$F4C
| |
| |style="border:0px;background-color:#DEDEDC;width:32px;height:32px;color:#000;text-align:center"|$F4D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F4E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F4F
| |
| |-
| |
| |style="border:0px;background-color:#DEDEDE;width:32px;height:32px;color:#000;text-align:center"|$F50
| |
| |style="border:0px;background-color:#F7E7D8;width:32px;height:32px;color:#000;text-align:center"|$F51
| |
| |style="border:0px;background-color:#EDEECF;width:32px;height:32px;color:#000;text-align:center"|$F52
| |
| |style="border:0px;background-color:#E6F1CF;width:32px;height:32px;color:#000;text-align:center"|$F53
| |
| |style="border:0px;background-color:#DFF3D8;width:32px;height:32px;color:#000;text-align:center"|$F54
| |
| |style="border:0px;background-color:#DCF3E3;width:32px;height:32px;color:#000;text-align:center"|$F55
| |
| |style="border:0px;background-color:#DCEFF3;width:32px;height:32px;color:#000;text-align:center"|$F56
| |
| |style="border:0px;background-color:#DDEDFA;width:32px;height:32px;color:#000;text-align:center"|$F57
| |
| |style="border:0px;background-color:#EAE8FE;width:32px;height:32px;color:#000;text-align:center"|$F58
| |
| |style="border:0px;background-color:#EEE6FE;width:32px;height:32px;color:#000;text-align:center"|$F59
| |
| |style="border:0px;background-color:#F7E0FB;width:32px;height:32px;color:#000;text-align:center"|$F5A
| |
| |style="border:0px;background-color:#F7E2F3;width:32px;height:32px;color:#000;text-align:center"|$F5B
| |
| |style="border:0px;background-color:#F8E6E4;width:32px;height:32px;color:#000;text-align:center"|$F5C
| |
| |style="border:0px;background-color:#F3F8F8;width:32px;height:32px;color:#000;text-align:center"|$F5D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F5E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F5F
| |
| |-
| |
| |style="border:0px;background-color:#F7F7F7;width:32px;height:32px;color:#000;text-align:center"|$F60
| |
| |style="border:0px;background-color:#FEFEF2;width:32px;height:32px;color:#000;text-align:center"|$F61
| |
| |style="border:0px;background-color:#FFFFEC;width:32px;height:32px;color:#000;text-align:center"|$F62
| |
| |style="border:0px;background-color:#FDFEEC;width:32px;height:32px;color:#000;text-align:center"|$F63
| |
| |style="border:0px;background-color:#F9FFF1;width:32px;height:32px;color:#000;text-align:center"|$F64
| |
| |style="border:0px;background-color:#F3FFF9;width:32px;height:32px;color:#000;text-align:center"|$F65
| |
| |style="border:0px;background-color:#F4FFFF;width:32px;height:32px;color:#000;text-align:center"|$F66
| |
| |style="border:0px;background-color:#F6FEFF;width:32px;height:32px;color:#000;text-align:center"|$F67
| |
| |style="border:0px;background-color:#FEFEFE;width:32px;height:32px;color:#000;text-align:center"|$F68
| |
| |style="border:0px;background-color:#FEFCFF;width:32px;height:32px;color:#000;text-align:center"|$F69
| |
| |style="border:0px;background-color:#FDFAFE;width:32px;height:32px;color:#000;text-align:center"|$F6A
| |
| |style="border:0px;background-color:#FFF9FE;width:32px;height:32px;color:#000;text-align:center"|$F6B
| |
| |style="border:0px;background-color:#FEFDF9;width:32px;height:32px;color:#000;text-align:center"|$F6C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$F6D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F6E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F6F
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$F70
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$F71
| |
| |style="border:0px;background-color:#FFFFFE;width:32px;height:32px;color:#000;text-align:center"|$F72
| |
| |style="border:0px;background-color:#FFFFFC;width:32px;height:32px;color:#000;text-align:center"|$F73
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$F74
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$F75
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$F76
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$F77
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$F78
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$F79
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$F7A
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$F7B
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$F7C
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$F7D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F7E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F7F
| |
| |-
| |
| |style="border:0px;background-color:#FFFFFF;width:32px;height:32px;color:#000;text-align:center"|$F80
| |
| |style="border:0px;background-color:#009BFD;width:32px;height:32px;color:#fff;text-align:center"|$F81
| |
| |style="border:0px;background-color:#4665FE;width:32px;height:32px;color:#fff;text-align:center"|$F82
| |
| |style="border:0px;background-color:#AD32FD;width:32px;height:32px;color:#fff;text-align:center"|$F83
| |
| |style="border:0px;background-color:#FF00FE;width:32px;height:32px;color:#fff;text-align:center"|$F84
| |
| |style="border:0px;background-color:#FE00EF;width:32px;height:32px;color:#fff;text-align:center"|$F85
| |
| |style="border:0px;background-color:#FE2E0B;width:32px;height:32px;color:#fff;text-align:center"|$F86
| |
| |style="border:0px;background-color:#FE5C02;width:32px;height:32px;color:#000;text-align:center"|$F87
| |
| |style="border:0px;background-color:#A69900;width:32px;height:32px;color:#000;text-align:center"|$F88
| |
| |style="border:0px;background-color:#4EC400;width:32px;height:32px;color:#000;text-align:center"|$F89
| |
| |style="border:0px;background-color:#00FD02;width:32px;height:32px;color:#000;text-align:center"|$F8A
| |
| |style="border:0px;background-color:#00F809;width:32px;height:32px;color:#000;text-align:center"|$F8B
| |
| |style="border:0px;background-color:#00C5F0;width:32px;height:32px;color:#000;text-align:center"|$F8C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$F8D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F8E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F8F
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$F90
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$F91
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$F92
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$F93
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$F94
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$F95
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$F96
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$F97
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$F98
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$F99
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$F9A
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$F9B
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$F9C
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$F9D
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F9E
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$F9F
| |
| |-
| |
| |style="border:0px;background-color:#010101;width:32px;height:32px;color:#fff;text-align:center"|$FA0
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FA1
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FA2
| |
| |style="border:0px;background-color:#000001;width:32px;height:32px;color:#fff;text-align:center"|$FA3
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FA4
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FA5
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FA6
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FA7
| |
| |style="border:0px;background-color:#010008;width:32px;height:32px;color:#fff;text-align:center"|$FA8
| |
| |style="border:0px;background-color:#000005;width:32px;height:32px;color:#fff;text-align:center"|$FA9
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FAA
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FAB
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FAC
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FAD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FAE
| |
| |style="border:0px;background-color:#000002;width:32px;height:32px;color:#fff;text-align:center"|$FAF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FB0
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FB1
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FB2
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FB3
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FB4
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FB5
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FB6
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FB7
| |
| |style="border:0px;background-color:#000106;width:32px;height:32px;color:#fff;text-align:center"|$FB8
| |
| |style="border:0px;background-color:#00000A;width:32px;height:32px;color:#fff;text-align:center"|$FB9
| |
| |style="border:0px;background-color:#000001;width:32px;height:32px;color:#fff;text-align:center"|$FBA
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FBB
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FBC
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FBD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FBE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FBF
| |
| |-
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FC0
| |
| |style="border:0px;background-color:#0A0001;width:32px;height:32px;color:#fff;text-align:center"|$FC1
| |
| |style="border:0px;background-color:#020102;width:32px;height:32px;color:#fff;text-align:center"|$FC2
| |
| |style="border:0px;background-color:#000500;width:32px;height:32px;color:#fff;text-align:center"|$FC3
| |
| |style="border:0px;background-color:#010800;width:32px;height:32px;color:#fff;text-align:center"|$FC4
| |
| |style="border:0px;background-color:#010800;width:32px;height:32px;color:#fff;text-align:center"|$FC5
| |
| |style="border:0px;background-color:#000308;width:32px;height:32px;color:#fff;text-align:center"|$FC6
| |
| |style="border:0px;background-color:#000110;width:32px;height:32px;color:#fff;text-align:center"|$FC7
| |
| |style="border:0px;background-color:#000018;width:32px;height:32px;color:#fff;text-align:center"|$FC8
| |
| |style="border:0px;background-color:#02001D;width:32px;height:32px;color:#fff;text-align:center"|$FC9
| |
| |style="border:0px;background-color:#0C0010;width:32px;height:32px;color:#fff;text-align:center"|$FCA
| |
| |style="border:0px;background-color:#0E0006;width:32px;height:32px;color:#fff;text-align:center"|$FCB
| |
| |style="border:0px;background-color:#0E0000;width:32px;height:32px;color:#fff;text-align:center"|$FCC
| |
| |style="border:0px;background-color:#0C0D08;width:32px;height:32px;color:#fff;text-align:center"|$FCD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FCE
| |
| |style="border:0px;background-color:#000002;width:32px;height:32px;color:#fff;text-align:center"|$FCF
| |
| |-
| |
| |style="border:0px;background-color:#0C0C0C;width:32px;height:32px;color:#fff;text-align:center"|$FD0
| |
| |style="border:0px;background-color:#281708;width:32px;height:32px;color:#fff;text-align:center"|$FD1
| |
| |style="border:0px;background-color:#1E1E01;width:32px;height:32px;color:#fff;text-align:center"|$FD2
| |
| |style="border:0px;background-color:#162002;width:32px;height:32px;color:#fff;text-align:center"|$FD3
| |
| |style="border:0px;background-color:#0E2508;width:32px;height:32px;color:#fff;text-align:center"|$FD4
| |
| |style="border:0px;background-color:#0C2510;width:32px;height:32px;color:#fff;text-align:center"|$FD5
| |
| |style="border:0px;background-color:#0C2126;width:32px;height:32px;color:#fff;text-align:center"|$FD6
| |
| |style="border:0px;background-color:#0E1E2D;width:32px;height:32px;color:#fff;text-align:center"|$FD7
| |
| |style="border:0px;background-color:#171837;width:32px;height:32px;color:#fff;text-align:center"|$FD8
| |
| |style="border:0px;background-color:#1E1433;width:32px;height:32px;color:#fff;text-align:center"|$FD9
| |
| |style="border:0px;background-color:#26102D;width:32px;height:32px;color:#fff;text-align:center"|$FDA
| |
| |style="border:0px;background-color:#291025;width:32px;height:32px;color:#fff;text-align:center"|$FDB
| |
| |style="border:0px;background-color:#29170D;width:32px;height:32px;color:#fff;text-align:center"|$FDC
| |
| |style="border:0px;background-color:#272727;width:32px;height:32px;color:#fff;text-align:center"|$FDD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FDE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FDF
| |
| |-
| |
| |style="border:0px;background-color:#272727;width:32px;height:32px;color:#fff;text-align:center"|$FE0
| |
| |style="border:0px;background-color:#423222;width:32px;height:32px;color:#fff;text-align:center"|$FE1
| |
| |style="border:0px;background-color:#393A1A;width:32px;height:32px;color:#fff;text-align:center"|$FE2
| |
| |style="border:0px;background-color:#313D1A;width:32px;height:32px;color:#fff;text-align:center"|$FE3
| |
| |style="border:0px;background-color:#283F22;width:32px;height:32px;color:#fff;text-align:center"|$FE4
| |
| |style="border:0px;background-color:#263F2A;width:32px;height:32px;color:#fff;text-align:center"|$FE5
| |
| |style="border:0px;background-color:#263B40;width:32px;height:32px;color:#fff;text-align:center"|$FE6
| |
| |style="border:0px;background-color:#293949;width:32px;height:32px;color:#fff;text-align:center"|$FE7
| |
| |style="border:0px;background-color:#323352;width:32px;height:32px;color:#fff;text-align:center"|$FE8
| |
| |style="border:0px;background-color:#382F51;width:32px;height:32px;color:#fff;text-align:center"|$FE9
| |
| |style="border:0px;background-color:#422B4C;width:32px;height:32px;color:#fff;text-align:center"|$FEA
| |
| |style="border:0px;background-color:#452B3F;width:32px;height:32px;color:#fff;text-align:center"|$FEB
| |
| |style="border:0px;background-color:#44312B;width:32px;height:32px;color:#fff;text-align:center"|$FEC
| |
| |style="border:0px;background-color:#434343;width:32px;height:32px;color:#fff;text-align:center"|$FED
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FEE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FEF
| |
| |-
| |
| |style="border:0px;background-color:#434343;width:32px;height:32px;color:#fff;text-align:center"|$FF0
| |
| |style="border:0px;background-color:#5C4D3A;width:32px;height:32px;color:#fff;text-align:center"|$FF1
| |
| |style="border:0px;background-color:#545337;width:32px;height:32px;color:#fff;text-align:center"|$FF2
| |
| |style="border:0px;background-color:#4C5834;width:32px;height:32px;color:#fff;text-align:center"|$FF3
| |
| |style="border:0px;background-color:#435A3D;width:32px;height:32px;color:#fff;text-align:center"|$FF4
| |
| |style="border:0px;background-color:#405944;width:32px;height:32px;color:#fff;text-align:center"|$FF5
| |
| |style="border:0px;background-color:#415658;width:32px;height:32px;color:#fff;text-align:center"|$FF6
| |
| |style="border:0px;background-color:#425262;width:32px;height:32px;color:#fff;text-align:center"|$FF7
| |
| |style="border:0px;background-color:#4E4D6D;width:32px;height:32px;color:#fff;text-align:center"|$FF8
| |
| |style="border:0px;background-color:#53496B;width:32px;height:32px;color:#fff;text-align:center"|$FF9
| |
| |style="border:0px;background-color:#5C4562;width:32px;height:32px;color:#fff;text-align:center"|$FFA
| |
| |style="border:0px;background-color:#5F465D;width:32px;height:32px;color:#fff;text-align:center"|$FFB
| |
| |style="border:0px;background-color:#5E4B45;width:32px;height:32px;color:#fff;text-align:center"|$FFC
| |
| |style="border:0px;background-color:#5E5E5E;width:32px;height:32px;color:#fff;text-align:center"|$FFD
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FFE
| |
| |style="border:0px;background-color:#000000;width:32px;height:32px;color:#fff;text-align:center"|$FFF
| |
| |}
| |