STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228143
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2561 · P5122

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/98586491?noj=FRM98586491-19DC" width="1" height="1"></div>

WordSmith - create as many words as you can in this puzzle game.swf

This is the info page for
Flash #93605

(Click the ID number above for more basic data on this flash file.)


Text
W

W

WORDWORD

21000

2

3

5

8

10

2

3

5

8

10

NORMAL

Can be placed adjacent
to existing tiles.

DOUBLE TILE

Tile that disappears after
two uses to make words.

OVERLAP TILE

Can be placed adjacent
to or over existing tiles.

RANDOM TILE

Loops through the alphabet
and makes any real word.

MINI BOMB

Explodes to get rid of
a small area of letters

LARGE BOMB

Explodes to get rid of
a large area of letters

100,000,000

WORDS ALREADY USED

(for current level)

A GAME BY

VOICE ACTING BY

POWERED BY

DANIEL YAROSLAVSKI

JOSHUA TOMAR

MUSIC (MENU) BY

RYAN ESTERAZ

MUSIC (IN-GAME) BY

DAVIDE CECCHI

1,235,235

0

MENU

ActionScript [AS3]

Section 1
//BaseScrollPane (fl.containers.BaseScrollPane) package fl.containers { import fl.core.*; import fl.controls.*; import flash.display.*; import flash.events.*; import fl.events.*; import flash.geom.*; public class BaseScrollPane extends UIComponent { protected var defaultLineScrollSize:Number;// = 4 protected var _maxHorizontalScrollPosition:Number;// = 0 protected var vScrollBar:Boolean; protected var disabledOverlay:Shape; protected var hScrollBar:Boolean; protected var availableWidth:Number; protected var _verticalPageScrollSize:Number;// = 0 protected var vOffset:Number;// = 0 protected var _verticalScrollBar:ScrollBar; protected var useFixedHorizontalScrolling:Boolean;// = false protected var contentWidth:Number;// = 0 protected var contentHeight:Number;// = 0 protected var _horizontalPageScrollSize:Number;// = 0 protected var background:DisplayObject; protected var _useBitmpScrolling:Boolean;// = false protected var contentPadding:Number;// = 0 protected var availableHeight:Number; protected var _horizontalScrollBar:ScrollBar; protected var contentScrollRect:Rectangle; protected var _horizontalScrollPolicy:String; protected var _verticalScrollPolicy:String; protected static const SCROLL_BAR_STYLES:Object = {upArrowDisabledSkin:"upArrowDisabledSkin", upArrowDownSkin:"upArrowDownSkin", upArrowOverSkin:"upArrowOverSkin", upArrowUpSkin:"upArrowUpSkin", downArrowDisabledSkin:"downArrowDisabledSkin", downArrowDownSkin:"downArrowDownSkin", downArrowOverSkin:"downArrowOverSkin", downArrowUpSkin:"downArrowUpSkin", thumbDisabledSkin:"thumbDisabledSkin", thumbDownSkin:"thumbDownSkin", thumbOverSkin:"thumbOverSkin", thumbUpSkin:"thumbUpSkin", thumbIcon:"thumbIcon", trackDisabledSkin:"trackDisabledSkin", trackDownSkin:"trackDownSkin", trackOverSkin:"trackOverSkin", trackUpSkin:"trackUpSkin", repeatDelay:"repeatDelay", repeatInterval:"repeatInterval"}; private static var defaultStyles:Object = {repeatDelay:500, repeatInterval:35, skin:"ScrollPane_upSkin", contentPadding:0, disabledAlpha:0.5}; public function BaseScrollPane(){ contentWidth = 0; contentHeight = 0; contentPadding = 0; vOffset = 0; _maxHorizontalScrollPosition = 0; _horizontalPageScrollSize = 0; _verticalPageScrollSize = 0; defaultLineScrollSize = 4; useFixedHorizontalScrolling = false; _useBitmpScrolling = false; super(); } protected function handleWheel(_arg1:MouseEvent):void{ if (((((!(enabled)) || (!(_verticalScrollBar.visible)))) || ((contentHeight <= availableHeight)))){ return; }; _verticalScrollBar.scrollPosition = (_verticalScrollBar.scrollPosition - (_arg1.delta * verticalLineScrollSize)); setVerticalScrollPosition(_verticalScrollBar.scrollPosition); dispatchEvent(new ScrollEvent(ScrollBarDirection.VERTICAL, _arg1.delta, horizontalScrollPosition)); } public function get verticalScrollPosition():Number{ return (_verticalScrollBar.scrollPosition); } protected function drawDisabledOverlay():void{ if (enabled){ if (contains(disabledOverlay)){ removeChild(disabledOverlay); }; } else { disabledOverlay.x = (disabledOverlay.y = contentPadding); disabledOverlay.width = availableWidth; disabledOverlay.height = availableHeight; disabledOverlay.alpha = (getStyleValue("disabledAlpha") as Number); addChild(disabledOverlay); }; } public function set verticalScrollPosition(_arg1:Number):void{ drawNow(); _verticalScrollBar.scrollPosition = _arg1; setVerticalScrollPosition(_verticalScrollBar.scrollPosition, false); } protected function setContentSize(_arg1:Number, _arg2:Number):void{ if ((((((contentWidth == _arg1)) || (useFixedHorizontalScrolling))) && ((contentHeight == _arg2)))){ return; }; contentWidth = _arg1; contentHeight = _arg2; invalidate(InvalidationType.SIZE); } public function get horizontalScrollPosition():Number{ return (_horizontalScrollBar.scrollPosition); } public function get horizontalScrollBar():ScrollBar{ return (_horizontalScrollBar); } override public function set enabled(_arg1:Boolean):void{ if (enabled == _arg1){ return; }; _verticalScrollBar.enabled = _arg1; _horizontalScrollBar.enabled = _arg1; super.enabled = _arg1; } public function get verticalLineScrollSize():Number{ return (_verticalScrollBar.lineScrollSize); } public function get horizontalScrollPolicy():String{ return (_horizontalScrollPolicy); } protected function calculateAvailableSize():void{ var _local1:Number; var _local2:Number; var _local3:Number; var _local4:Number; var _local5:Number; _local1 = ScrollBar.WIDTH; _local2 = (contentPadding = Number(getStyleValue("contentPadding"))); _local3 = ((height - (2 * _local2)) - vOffset); vScrollBar = (((_verticalScrollPolicy == ScrollPolicy.ON)) || ((((_verticalScrollPolicy == ScrollPolicy.AUTO)) && ((contentHeight > _local3))))); _local4 = ((width - (vScrollBar) ? _local1 : 0) - (2 * _local2)); _local5 = (useFixedHorizontalScrolling) ? _maxHorizontalScrollPosition : (contentWidth - _local4); hScrollBar = (((_horizontalScrollPolicy == ScrollPolicy.ON)) || ((((_horizontalScrollPolicy == ScrollPolicy.AUTO)) && ((_local5 > 0))))); if (hScrollBar){ _local3 = (_local3 - _local1); }; if (((((((hScrollBar) && (!(vScrollBar)))) && ((_verticalScrollPolicy == ScrollPolicy.AUTO)))) && ((contentHeight > _local3)))){ vScrollBar = true; _local4 = (_local4 - _local1); }; availableHeight = (_local3 + vOffset); availableWidth = _local4; } public function get maxVerticalScrollPosition():Number{ drawNow(); return (Math.max(0, (contentHeight - availableHeight))); } public function set horizontalScrollPosition(_arg1:Number):void{ drawNow(); _horizontalScrollBar.scrollPosition = _arg1; setHorizontalScrollPosition(_horizontalScrollBar.scrollPosition, false); } public function get horizontalLineScrollSize():Number{ return (_horizontalScrollBar.lineScrollSize); } public function set verticalPageScrollSize(_arg1:Number):void{ _verticalPageScrollSize = _arg1; invalidate(InvalidationType.SIZE); } public function get verticalScrollPolicy():String{ return (_verticalScrollPolicy); } protected function setHorizontalScrollPosition(_arg1:Number, _arg2:Boolean=false):void{ } public function get useBitmapScrolling():Boolean{ return (_useBitmpScrolling); } protected function handleScroll(_arg1:ScrollEvent):void{ if (_arg1.target == _verticalScrollBar){ setVerticalScrollPosition(_arg1.position); } else { setHorizontalScrollPosition(_arg1.position); }; } public function set verticalLineScrollSize(_arg1:Number):void{ _verticalScrollBar.lineScrollSize = _arg1; } public function get verticalScrollBar():ScrollBar{ return (_verticalScrollBar); } protected function setVerticalScrollPosition(_arg1:Number, _arg2:Boolean=false):void{ } public function set horizontalPageScrollSize(_arg1:Number):void{ _horizontalPageScrollSize = _arg1; invalidate(InvalidationType.SIZE); } override protected function draw():void{ if (isInvalid(InvalidationType.STYLES)){ setStyles(); drawBackground(); if (contentPadding != getStyleValue("contentPadding")){ invalidate(InvalidationType.SIZE, false); }; }; if (isInvalid(InvalidationType.SIZE, InvalidationType.STATE)){ drawLayout(); }; updateChildren(); super.draw(); } public function set horizontalScrollPolicy(_arg1:String):void{ _horizontalScrollPolicy = _arg1; invalidate(InvalidationType.SIZE); } override protected function configUI():void{ var _local1:Graphics; super.configUI(); contentScrollRect = new Rectangle(0, 0, 85, 85); _verticalScrollBar = new ScrollBar(); _verticalScrollBar.addEventListener(ScrollEvent.SCROLL, handleScroll, false, 0, true); _verticalScrollBar.visible = false; _verticalScrollBar.lineScrollSize = defaultLineScrollSize; addChild(_verticalScrollBar); copyStylesToChild(_verticalScrollBar, SCROLL_BAR_STYLES); _horizontalScrollBar = new ScrollBar(); _horizontalScrollBar.direction = ScrollBarDirection.HORIZONTAL; _horizontalScrollBar.addEventListener(ScrollEvent.SCROLL, handleScroll, false, 0, true); _horizontalScrollBar.visible = false; _horizontalScrollBar.lineScrollSize = defaultLineScrollSize; addChild(_horizontalScrollBar); copyStylesToChild(_horizontalScrollBar, SCROLL_BAR_STYLES); disabledOverlay = new Shape(); _local1 = disabledOverlay.graphics; _local1.beginFill(0xFFFFFF); _local1.drawRect(0, 0, width, height); _local1.endFill(); addEventListener(MouseEvent.MOUSE_WHEEL, handleWheel, false, 0, true); } protected function calculateContentWidth():void{ } public function get verticalPageScrollSize():Number{ if (isNaN(availableHeight)){ drawNow(); }; return (((((_verticalPageScrollSize == 0)) && (!(isNaN(availableHeight))))) ? availableHeight : _verticalPageScrollSize); } protected function drawLayout():void{ calculateAvailableSize(); calculateContentWidth(); background.width = width; background.height = height; if (vScrollBar){ _verticalScrollBar.visible = true; _verticalScrollBar.x = ((width - ScrollBar.WIDTH) - contentPadding); _verticalScrollBar.y = contentPadding; _verticalScrollBar.height = availableHeight; } else { _verticalScrollBar.visible = false; }; _verticalScrollBar.setScrollProperties(availableHeight, 0, (contentHeight - availableHeight), verticalPageScrollSize); setVerticalScrollPosition(_verticalScrollBar.scrollPosition, false); if (hScrollBar){ _horizontalScrollBar.visible = true; _horizontalScrollBar.x = contentPadding; _horizontalScrollBar.y = ((height - ScrollBar.WIDTH) - contentPadding); _horizontalScrollBar.width = availableWidth; } else { _horizontalScrollBar.visible = false; }; _horizontalScrollBar.setScrollProperties(availableWidth, 0, (useFixedHorizontalScrolling) ? _maxHorizontalScrollPosition : (contentWidth - availableWidth), horizontalPageScrollSize); setHorizontalScrollPosition(_horizontalScrollBar.scrollPosition, false); drawDisabledOverlay(); } protected function drawBackground():void{ var _local1:DisplayObject; _local1 = background; background = getDisplayObjectInstance(getStyleValue("skin")); background.width = width; background.height = height; addChildAt(background, 0); if (((!((_local1 == null))) && (!((_local1 == background))))){ removeChild(_local1); }; } public function set horizontalLineScrollSize(_arg1:Number):void{ _horizontalScrollBar.lineScrollSize = _arg1; } public function get horizontalPageScrollSize():Number{ if (isNaN(availableWidth)){ drawNow(); }; return (((((_horizontalPageScrollSize == 0)) && (!(isNaN(availableWidth))))) ? availableWidth : _horizontalPageScrollSize); } public function get maxHorizontalScrollPosition():Number{ drawNow(); return (Math.max(0, (contentWidth - availableWidth))); } protected function setStyles():void{ copyStylesToChild(_verticalScrollBar, SCROLL_BAR_STYLES); copyStylesToChild(_horizontalScrollBar, SCROLL_BAR_STYLES); } protected function updateChildren():void{ _verticalScrollBar.enabled = (_horizontalScrollBar.enabled = enabled); _verticalScrollBar.drawNow(); _horizontalScrollBar.drawNow(); } public function set verticalScrollPolicy(_arg1:String):void{ _verticalScrollPolicy = _arg1; invalidate(InvalidationType.SIZE); } public function set useBitmapScrolling(_arg1:Boolean):void{ _useBitmpScrolling = _arg1; invalidate(InvalidationType.STATE); } public static function getStyleDefinition():Object{ return (mergeStyles(defaultStyles, ScrollBar.getStyleDefinition())); } } }//package fl.containers
Section 2
//ScrollPane (fl.containers.ScrollPane) package fl.containers { import fl.core.*; import fl.controls.*; import flash.display.*; import flash.events.*; import fl.managers.*; import fl.events.*; import flash.net.*; import flash.system.*; import flash.ui.*; public class ScrollPane extends BaseScrollPane implements IFocusManagerComponent { protected var scrollDragHPos:Number; protected var loader:Loader; protected var yOffset:Number; protected var currentContent:Object; protected var xOffset:Number; protected var _source:Object;// = "" protected var scrollDragVPos:Number; protected var _scrollDrag:Boolean;// = false protected var contentClip:Sprite; private static var defaultStyles:Object = {upSkin:"ScrollPane_upSkin", disabledSkin:"ScrollPane_disabledSkin", focusRectSkin:null, focusRectPadding:null, contentPadding:0}; public function ScrollPane(){ _source = ""; _scrollDrag = false; super(); } public function get source():Object{ return (_source); } public function set source(_arg1:Object):void{ var _local2:*; clearContent(); if (isLivePreview){ return; }; _source = _arg1; if ((((_source == "")) || ((_source == null)))){ return; }; currentContent = getDisplayObjectInstance(_arg1); if (currentContent != null){ _local2 = contentClip.addChild((currentContent as DisplayObject)); dispatchEvent(new Event(Event.INIT)); update(); } else { load(new URLRequest(_source.toString())); }; } public function get bytesLoaded():Number{ return (((((loader == null)) || ((loader.contentLoaderInfo == null)))) ? 0 : loader.contentLoaderInfo.bytesLoaded); } protected function doDrag(_arg1:MouseEvent):void{ var _local2:*; var _local3:*; _local2 = (scrollDragVPos - (mouseY - yOffset)); _verticalScrollBar.setScrollPosition(_local2); setVerticalScrollPosition(_verticalScrollBar.scrollPosition, true); _local3 = (scrollDragHPos - (mouseX - xOffset)); _horizontalScrollBar.setScrollPosition(_local3); setHorizontalScrollPosition(_horizontalScrollBar.scrollPosition, true); } override protected function keyDownHandler(_arg1:KeyboardEvent):void{ var _local2:int; _local2 = calculateAvailableHeight(); switch (_arg1.keyCode){ case Keyboard.DOWN: verticalScrollPosition++; break; case Keyboard.UP: verticalScrollPosition--; break; case Keyboard.RIGHT: horizontalScrollPosition++; break; case Keyboard.LEFT: horizontalScrollPosition--; break; case Keyboard.END: verticalScrollPosition = maxVerticalScrollPosition; break; case Keyboard.HOME: verticalScrollPosition = 0; break; case Keyboard.PAGE_UP: verticalScrollPosition = (verticalScrollPosition - _local2); break; case Keyboard.PAGE_DOWN: verticalScrollPosition = (verticalScrollPosition + _local2); break; }; } protected function doStartDrag(_arg1:MouseEvent):void{ if (!enabled){ return; }; xOffset = mouseX; yOffset = mouseY; scrollDragHPos = horizontalScrollPosition; scrollDragVPos = verticalScrollPosition; stage.addEventListener(MouseEvent.MOUSE_MOVE, doDrag, false, 0, true); } public function get content():DisplayObject{ var _local1:Object; _local1 = currentContent; if ((_local1 is URLRequest)){ _local1 = loader.content; }; return ((_local1 as DisplayObject)); } public function get percentLoaded():Number{ if (loader != null){ return (Math.round(((bytesLoaded / bytesTotal) * 100))); }; return (0); } protected function endDrag(_arg1:MouseEvent):void{ stage.removeEventListener(MouseEvent.MOUSE_MOVE, doDrag); } public function update():void{ var _local1:DisplayObject; _local1 = contentClip.getChildAt(0); setContentSize(_local1.width, _local1.height); } override protected function setHorizontalScrollPosition(_arg1:Number, _arg2:Boolean=false):void{ var _local3:*; _local3 = contentClip.scrollRect; _local3.x = _arg1; contentClip.scrollRect = _local3; } public function refreshPane():void{ if ((_source is URLRequest)){ _source = _source.url; }; source = _source; } protected function passEvent(_arg1:Event):void{ dispatchEvent(_arg1); } protected function calculateAvailableHeight():Number{ var _local1:Number; _local1 = Number(getStyleValue("contentPadding")); return (((height - (_local1 * 2)) - ((((_horizontalScrollPolicy == ScrollPolicy.ON)) || ((((_horizontalScrollPolicy == ScrollPolicy.AUTO)) && ((_maxHorizontalScrollPosition > 0)))))) ? 15 : 0)); } public function load(_arg1:URLRequest, _arg2:LoaderContext=null):void{ if (_arg2 == null){ _arg2 = new LoaderContext(false, ApplicationDomain.currentDomain); }; clearContent(); initLoader(); currentContent = (_source = _arg1); loader.load(_arg1, _arg2); } override protected function handleScroll(_arg1:ScrollEvent):void{ passEvent(_arg1); super.handleScroll(_arg1); } override protected function setVerticalScrollPosition(_arg1:Number, _arg2:Boolean=false):void{ var _local3:*; _local3 = contentClip.scrollRect; _local3.y = _arg1; contentClip.scrollRect = _local3; } protected function initLoader():void{ loader = new Loader(); loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, passEvent, false, 0, true); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onContentLoad, false, 0, true); loader.contentLoaderInfo.addEventListener(Event.INIT, passEvent, false, 0, true); contentClip.addChild(loader); } override protected function draw():void{ if (isInvalid(InvalidationType.STYLES)){ drawBackground(); }; if (isInvalid(InvalidationType.STATE)){ setScrollDrag(); }; super.draw(); } override protected function configUI():void{ super.configUI(); contentClip = new Sprite(); addChild(contentClip); contentClip.scrollRect = contentScrollRect; _horizontalScrollPolicy = ScrollPolicy.AUTO; _verticalScrollPolicy = ScrollPolicy.AUTO; } public function set scrollDrag(_arg1:Boolean):void{ _scrollDrag = _arg1; invalidate(InvalidationType.STATE); } protected function clearContent():void{ if (contentClip.numChildren == 0){ return; }; contentClip.removeChildAt(0); currentContent = null; if (loader != null){ try { loader.close(); } catch(e) { }; try { loader.unload(); } catch(e) { }; loader = null; }; } override protected function drawLayout():void{ super.drawLayout(); contentScrollRect = contentClip.scrollRect; contentScrollRect.width = availableWidth; contentScrollRect.height = availableHeight; contentClip.cacheAsBitmap = useBitmapScrolling; contentClip.scrollRect = contentScrollRect; contentClip.x = (contentClip.y = contentPadding); } override protected function drawBackground():void{ var _local1:DisplayObject; _local1 = background; background = getDisplayObjectInstance(getStyleValue((enabled) ? "upSkin" : "disabledSkin")); background.width = width; background.height = height; addChildAt(background, 0); if (((!((_local1 == null))) && (!((_local1 == background))))){ removeChild(_local1); }; } public function get bytesTotal():Number{ return (((((loader == null)) || ((loader.contentLoaderInfo == null)))) ? 0 : loader.contentLoaderInfo.bytesTotal); } protected function onContentLoad(_arg1:Event):void{ var _local2:*; update(); _local2 = calculateAvailableHeight(); calculateAvailableSize(); horizontalScrollBar.setScrollProperties(availableWidth, 0, (useFixedHorizontalScrolling) ? _maxHorizontalScrollPosition : (contentWidth - availableWidth), availableWidth); verticalScrollBar.setScrollProperties(_local2, 0, (contentHeight - _local2), _local2); passEvent(_arg1); } public function get scrollDrag():Boolean{ return (_scrollDrag); } protected function setScrollDrag():void{ if (_scrollDrag){ contentClip.addEventListener(MouseEvent.MOUSE_DOWN, doStartDrag, false, 0, true); stage.addEventListener(MouseEvent.MOUSE_UP, endDrag, false, 0, true); } else { contentClip.removeEventListener(MouseEvent.MOUSE_DOWN, doStartDrag); stage.removeEventListener(MouseEvent.MOUSE_UP, endDrag); removeEventListener(MouseEvent.MOUSE_MOVE, doDrag); }; contentClip.buttonMode = _scrollDrag; } public static function getStyleDefinition():Object{ return (mergeStyles(defaultStyles, BaseScrollPane.getStyleDefinition())); } } }//package fl.containers
Section 3
//CellRenderer (fl.controls.listClasses.CellRenderer) package fl.controls.listClasses { import fl.controls.*; import flash.events.*; public class CellRenderer extends LabelButton implements ICellRenderer { protected var _data:Object; protected var _listData:ListData; private static var defaultStyles:Object = {upSkin:"CellRenderer_upSkin", downSkin:"CellRenderer_downSkin", overSkin:"CellRenderer_overSkin", disabledSkin:"CellRenderer_disabledSkin", selectedDisabledSkin:"CellRenderer_selectedDisabledSkin", selectedUpSkin:"CellRenderer_selectedUpSkin", selectedDownSkin:"CellRenderer_selectedDownSkin", selectedOverSkin:"CellRenderer_selectedOverSkin", textFormat:null, disabledTextFormat:null, embedFonts:null, textPadding:5}; public function CellRenderer():void{ toggle = true; focusEnabled = false; } override protected function toggleSelected(_arg1:MouseEvent):void{ } override public function get selected():Boolean{ return (super.selected); } public function set listData(_arg1:ListData):void{ _listData = _arg1; label = _listData.label; setStyle("icon", _listData.icon); } override public function set selected(_arg1:Boolean):void{ super.selected = _arg1; } public function set data(_arg1:Object):void{ _data = _arg1; } public function get listData():ListData{ return (_listData); } override public function setSize(_arg1:Number, _arg2:Number):void{ super.setSize(_arg1, _arg2); } override protected function drawLayout():void{ var _local1:Number; var _local2:Number; var _local3:Number; _local1 = Number(getStyleValue("textPadding")); _local2 = 0; if (icon != null){ icon.x = _local1; icon.y = Math.round(((height - icon.height) >> 1)); _local2 = (icon.width + _local1); }; if (label.length > 0){ textField.visible = true; _local3 = Math.max(0, ((width - _local2) - (_local1 * 2))); textField.width = _local3; textField.height = (textField.textHeight + 4); textField.x = (_local2 + _local1); textField.y = Math.round(((height - textField.height) >> 1)); } else { textField.visible = false; }; background.width = width; background.height = height; } public function get data():Object{ return (_data); } public static function getStyleDefinition():Object{ return (defaultStyles); } } }//package fl.controls.listClasses
Section 4
//ICellRenderer (fl.controls.listClasses.ICellRenderer) package fl.controls.listClasses { public interface ICellRenderer { function setSize(_arg1:Number, _arg2:Number):void; function get listData():ListData; function get data():Object; function setMouseState(_arg1:String):void; function set x(_arg1:Number):void; function set y(_arg1:Number):void; function set data(_arg1:Object):void; function set selected(_arg1:Boolean):void; function set listData(_arg1:ListData):void; function get selected():Boolean; } }//package fl.controls.listClasses
Section 5
//ListData (fl.controls.listClasses.ListData) package fl.controls.listClasses { import fl.core.*; public class ListData { protected var _index:uint; protected var _owner:UIComponent; protected var _label:String; protected var _icon:Object;// = null protected var _row:uint; protected var _column:uint; public function ListData(_arg1:String, _arg2:Object, _arg3:UIComponent, _arg4:uint, _arg5:uint, _arg6:uint=0){ _icon = null; super(); _label = _arg1; _icon = _arg2; _owner = _arg3; _index = _arg4; _row = _arg5; _column = _arg6; } public function get owner():UIComponent{ return (_owner); } public function get label():String{ return (_label); } public function get row():uint{ return (_row); } public function get index():uint{ return (_index); } public function get icon():Object{ return (_icon); } public function get column():uint{ return (_column); } } }//package fl.controls.listClasses
Section 6
//BaseButton (fl.controls.BaseButton) package fl.controls { import fl.core.*; import flash.display.*; import flash.events.*; import fl.events.*; import flash.utils.*; public class BaseButton extends UIComponent { protected var _selected:Boolean;// = false private var unlockedMouseState:String; protected var pressTimer:Timer; protected var mouseState:String; protected var background:DisplayObject; private var _mouseStateLocked:Boolean;// = false protected var _autoRepeat:Boolean;// = false private static var defaultStyles:Object = {upSkin:"Button_upSkin", downSkin:"Button_downSkin", overSkin:"Button_overSkin", disabledSkin:"Button_disabledSkin", selectedDisabledSkin:"Button_selectedDisabledSkin", selectedUpSkin:"Button_selectedUpSkin", selectedDownSkin:"Button_selectedDownSkin", selectedOverSkin:"Button_selectedOverSkin", focusRectSkin:null, focusRectPadding:null, repeatDelay:500, repeatInterval:35}; public function BaseButton(){ _selected = false; _autoRepeat = false; _mouseStateLocked = false; super(); buttonMode = true; mouseChildren = false; useHandCursor = false; setupMouseEvents(); setMouseState("up"); pressTimer = new Timer(1, 0); pressTimer.addEventListener(TimerEvent.TIMER, buttonDown, false, 0, true); } protected function endPress():void{ pressTimer.reset(); } public function set mouseStateLocked(_arg1:Boolean):void{ _mouseStateLocked = _arg1; if (_arg1 == false){ setMouseState(unlockedMouseState); } else { unlockedMouseState = mouseState; }; } public function get autoRepeat():Boolean{ return (_autoRepeat); } public function set autoRepeat(_arg1:Boolean):void{ _autoRepeat = _arg1; } override public function set enabled(_arg1:Boolean):void{ super.enabled = _arg1; mouseEnabled = _arg1; } public function get selected():Boolean{ return (_selected); } protected function mouseEventHandler(_arg1:MouseEvent):void{ if (_arg1.type == MouseEvent.MOUSE_DOWN){ setMouseState("down"); startPress(); } else { if ((((_arg1.type == MouseEvent.ROLL_OVER)) || ((_arg1.type == MouseEvent.MOUSE_UP)))){ setMouseState("over"); endPress(); } else { if (_arg1.type == MouseEvent.ROLL_OUT){ setMouseState("up"); endPress(); }; }; }; } public function setMouseState(_arg1:String):void{ if (_mouseStateLocked){ unlockedMouseState = _arg1; return; }; if (mouseState == _arg1){ return; }; mouseState = _arg1; invalidate(InvalidationType.STATE); } protected function startPress():void{ if (_autoRepeat){ pressTimer.delay = Number(getStyleValue("repeatDelay")); pressTimer.start(); }; dispatchEvent(new ComponentEvent(ComponentEvent.BUTTON_DOWN, true)); } protected function buttonDown(_arg1:TimerEvent):void{ if (!_autoRepeat){ endPress(); return; }; if (pressTimer.currentCount == 1){ pressTimer.delay = Number(getStyleValue("repeatInterval")); }; dispatchEvent(new ComponentEvent(ComponentEvent.BUTTON_DOWN, true)); } public function set selected(_arg1:Boolean):void{ if (_selected == _arg1){ return; }; _selected = _arg1; invalidate(InvalidationType.STATE); } override public function get enabled():Boolean{ return (super.enabled); } override protected function draw():void{ if (isInvalid(InvalidationType.STYLES, InvalidationType.STATE)){ drawBackground(); invalidate(InvalidationType.SIZE, false); }; if (isInvalid(InvalidationType.SIZE)){ drawLayout(); }; super.draw(); } protected function setupMouseEvents():void{ addEventListener(MouseEvent.ROLL_OVER, mouseEventHandler, false, 0, true); addEventListener(MouseEvent.MOUSE_DOWN, mouseEventHandler, false, 0, true); addEventListener(MouseEvent.MOUSE_UP, mouseEventHandler, false, 0, true); addEventListener(MouseEvent.ROLL_OUT, mouseEventHandler, false, 0, true); } protected function drawLayout():void{ background.width = width; background.height = height; } protected function drawBackground():void{ var _local1:String; var _local2:DisplayObject; _local1 = (enabled) ? mouseState : "disabled"; if (selected){ _local1 = (("selected" + _local1.substr(0, 1).toUpperCase()) + _local1.substr(1)); }; _local1 = (_local1 + "Skin"); _local2 = background; background = getDisplayObjectInstance(getStyleValue(_local1)); addChildAt(background, 0); if (((!((_local2 == null))) && (!((_local2 == background))))){ removeChild(_local2); }; } public static function getStyleDefinition():Object{ return (defaultStyles); } } }//package fl.controls
Section 7
//Button (fl.controls.Button) package fl.controls { import fl.core.*; import flash.display.*; import fl.managers.*; public class Button extends LabelButton implements IFocusManagerComponent { protected var emphasizedBorder:DisplayObject; protected var _emphasized:Boolean;// = false private static var defaultStyles:Object = {emphasizedSkin:"Button_emphasizedSkin", emphasizedPadding:2}; public static var createAccessibilityImplementation:Function; public function Button(){ _emphasized = false; super(); } override public function drawFocus(_arg1:Boolean):void{ var _local2:Number; var _local3:*; super.drawFocus(_arg1); if (_arg1){ _local2 = Number(getStyleValue("emphasizedPadding")); if ((((_local2 < 0)) || (!(_emphasized)))){ _local2 = 0; }; _local3 = getStyleValue("focusRectPadding"); _local3 = ((_local3)==null) ? 2 : _local3; _local3 = (_local3 + _local2); uiFocusRect.x = -(_local3); uiFocusRect.y = -(_local3); uiFocusRect.width = (width + (_local3 * 2)); uiFocusRect.height = (height + (_local3 * 2)); }; } public function set emphasized(_arg1:Boolean):void{ _emphasized = _arg1; invalidate(InvalidationType.STYLES); } override protected function draw():void{ if (((isInvalid(InvalidationType.STYLES)) || (isInvalid(InvalidationType.SIZE)))){ drawEmphasized(); }; super.draw(); if (emphasizedBorder != null){ setChildIndex(emphasizedBorder, (numChildren - 1)); }; } public function get emphasized():Boolean{ return (_emphasized); } override protected function initializeAccessibility():void{ if (Button.createAccessibilityImplementation != null){ Button.createAccessibilityImplementation(this); }; } protected function drawEmphasized():void{ var _local1:Object; var _local2:Number; if (emphasizedBorder != null){ removeChild(emphasizedBorder); }; emphasizedBorder = null; if (!_emphasized){ return; }; _local1 = getStyleValue("emphasizedSkin"); if (_local1 != null){ emphasizedBorder = getDisplayObjectInstance(_local1); }; if (emphasizedBorder != null){ addChildAt(emphasizedBorder, 0); _local2 = Number(getStyleValue("emphasizedPadding")); emphasizedBorder.x = (emphasizedBorder.y = -(_local2)); emphasizedBorder.width = (width + (_local2 * 2)); emphasizedBorder.height = (height + (_local2 * 2)); }; } public static function getStyleDefinition():Object{ return (UIComponent.mergeStyles(LabelButton.getStyleDefinition(), defaultStyles)); } } }//package fl.controls
Section 8
//ButtonLabelPlacement (fl.controls.ButtonLabelPlacement) package fl.controls { public class ButtonLabelPlacement { public static const TOP:String = "top"; public static const LEFT:String = "left"; public static const BOTTOM:String = "bottom"; public static const RIGHT:String = "right"; } }//package fl.controls
Section 9
//LabelButton (fl.controls.LabelButton) package fl.controls { import fl.core.*; import flash.display.*; import flash.events.*; import fl.managers.*; import fl.events.*; import flash.text.*; import flash.ui.*; public class LabelButton extends BaseButton implements IFocusManagerComponent { protected var _labelPlacement:String;// = "right" protected var _toggle:Boolean;// = false protected var icon:DisplayObject; protected var oldMouseState:String; protected var mode:String;// = "center" public var textField:TextField; protected var _label:String;// = "Label" private static var defaultStyles:Object = {icon:null, upIcon:null, downIcon:null, overIcon:null, disabledIcon:null, selectedDisabledIcon:null, selectedUpIcon:null, selectedDownIcon:null, selectedOverIcon:null, textFormat:null, disabledTextFormat:null, textPadding:5, embedFonts:false}; public static var createAccessibilityImplementation:Function; public function LabelButton(){ _labelPlacement = ButtonLabelPlacement.RIGHT; _toggle = false; _label = "Label"; mode = "center"; super(); } protected function toggleSelected(_arg1:MouseEvent):void{ selected = !(selected); dispatchEvent(new Event(Event.CHANGE, true)); } public function get labelPlacement():String{ return (_labelPlacement); } override protected function keyDownHandler(_arg1:KeyboardEvent):void{ if (!enabled){ return; }; if (_arg1.keyCode == Keyboard.SPACE){ if (oldMouseState == null){ oldMouseState = mouseState; }; setMouseState("down"); startPress(); }; } protected function setEmbedFont(){ var _local1:Object; _local1 = getStyleValue("embedFonts"); if (_local1 != null){ textField.embedFonts = _local1; }; } override protected function keyUpHandler(_arg1:KeyboardEvent):void{ if (!enabled){ return; }; if (_arg1.keyCode == Keyboard.SPACE){ setMouseState(oldMouseState); oldMouseState = null; endPress(); dispatchEvent(new MouseEvent(MouseEvent.CLICK)); }; } override public function get selected():Boolean{ return ((_toggle) ? _selected : false); } public function set labelPlacement(_arg1:String):void{ _labelPlacement = _arg1; invalidate(InvalidationType.SIZE); } public function set toggle(_arg1:Boolean):void{ if (((!(_arg1)) && (super.selected))){ selected = false; }; _toggle = _arg1; if (_toggle){ addEventListener(MouseEvent.CLICK, toggleSelected, false, 0, true); } else { removeEventListener(MouseEvent.CLICK, toggleSelected); }; invalidate(InvalidationType.STATE); } public function get label():String{ return (_label); } override public function set selected(_arg1:Boolean):void{ _selected = _arg1; if (_toggle){ invalidate(InvalidationType.STATE); }; } override protected function draw():void{ if (textField.text != _label){ label = _label; }; if (isInvalid(InvalidationType.STYLES, InvalidationType.STATE)){ drawBackground(); drawIcon(); drawTextFormat(); invalidate(InvalidationType.SIZE, false); }; if (isInvalid(InvalidationType.SIZE)){ drawLayout(); }; if (isInvalid(InvalidationType.SIZE, InvalidationType.STYLES)){ if (((isFocused) && (focusManager.showFocusIndicator))){ drawFocus(true); }; }; validate(); } public function get toggle():Boolean{ return (_toggle); } override protected function configUI():void{ super.configUI(); textField = new TextField(); textField.type = TextFieldType.DYNAMIC; textField.selectable = false; addChild(textField); } override protected function drawLayout():void{ var _local1:Number; var _local2:String; var _local3:Number; var _local4:Number; var _local5:Number; var _local6:Number; var _local7:Number; var _local8:Number; _local1 = Number(getStyleValue("textPadding")); _local2 = ((((icon == null)) && ((mode == "center")))) ? ButtonLabelPlacement.TOP : _labelPlacement; textField.height = (textField.textHeight + 4); _local3 = (textField.textWidth + 4); _local4 = (textField.textHeight + 4); _local5 = ((icon)==null) ? 0 : (icon.width + _local1); _local6 = ((icon)==null) ? 0 : (icon.height + _local1); textField.visible = (label.length > 0); if (icon != null){ icon.x = Math.round(((width - icon.width) / 2)); icon.y = Math.round(((height - icon.height) / 2)); }; if (textField.visible == false){ textField.width = 0; textField.height = 0; } else { if ((((_local2 == ButtonLabelPlacement.BOTTOM)) || ((_local2 == ButtonLabelPlacement.TOP)))){ _local7 = Math.max(0, Math.min(_local3, (width - (2 * _local1)))); if ((height - 2) > _local4){ _local8 = _local4; } else { _local8 = (height - 2); }; _local3 = _local7; textField.width = _local3; _local4 = _local8; textField.height = _local4; textField.x = Math.round(((width - _local3) / 2)); textField.y = Math.round(((((height - textField.height) - _local6) / 2) + ((_local2)==ButtonLabelPlacement.BOTTOM) ? _local6 : 0)); if (icon != null){ icon.y = Math.round(((_local2)==ButtonLabelPlacement.BOTTOM) ? (textField.y - _local6) : ((textField.y + textField.height) + _local1)); }; } else { _local7 = Math.max(0, Math.min(_local3, ((width - _local5) - (2 * _local1)))); _local3 = _local7; textField.width = _local3; textField.x = Math.round(((((width - _local3) - _local5) / 2) + ((_local2)!=ButtonLabelPlacement.LEFT) ? _local5 : 0)); textField.y = Math.round(((height - textField.height) / 2)); if (icon != null){ icon.x = Math.round(((_local2)!=ButtonLabelPlacement.LEFT) ? (textField.x - _local5) : ((textField.x + _local3) + _local1)); }; }; }; super.drawLayout(); } override protected function initializeAccessibility():void{ if (LabelButton.createAccessibilityImplementation != null){ LabelButton.createAccessibilityImplementation(this); }; } protected function drawIcon():void{ var _local1:DisplayObject; var _local2:String; var _local3:Object; _local1 = icon; _local2 = (enabled) ? mouseState : "disabled"; if (selected){ _local2 = (("selected" + _local2.substr(0, 1).toUpperCase()) + _local2.substr(1)); }; _local2 = (_local2 + "Icon"); _local3 = getStyleValue(_local2); if (_local3 == null){ _local3 = getStyleValue("icon"); }; if (_local3 != null){ icon = getDisplayObjectInstance(_local3); }; if (icon != null){ addChildAt(icon, 1); }; if (((!((_local1 == null))) && (!((_local1 == icon))))){ removeChild(_local1); }; } public function set label(_arg1:String):void{ _label = _arg1; if (textField.text != _label){ textField.text = _label; dispatchEvent(new ComponentEvent(ComponentEvent.LABEL_CHANGE)); }; invalidate(InvalidationType.SIZE); invalidate(InvalidationType.STYLES); } protected function drawTextFormat():void{ var _local1:Object; var _local2:TextFormat; var _local3:TextFormat; _local1 = UIComponent.getStyleDefinition(); _local2 = (enabled) ? (_local1.defaultTextFormat as TextFormat) : (_local1.defaultDisabledTextFormat as TextFormat); textField.setTextFormat(_local2); _local3 = (getStyleValue((enabled) ? "textFormat" : "disabledTextFormat") as TextFormat); if (_local3 != null){ textField.setTextFormat(_local3); } else { _local3 = _local2; }; textField.defaultTextFormat = _local3; setEmbedFont(); } public static function getStyleDefinition():Object{ return (mergeStyles(defaultStyles, BaseButton.getStyleDefinition())); } } }//package fl.controls
Section 10
//List (fl.controls.List) package fl.controls { import fl.controls.listClasses.*; import fl.core.*; import flash.display.*; import flash.events.*; import fl.managers.*; import flash.utils.*; import flash.ui.*; import flash.geom.*; public class List extends SelectableList implements IFocusManagerComponent { protected var _labelField:String;// = "label" protected var _rowHeight:Number;// = 20 protected var _cellRenderer:Object; protected var _iconField:String;// = "icon" protected var _labelFunction:Function; protected var _iconFunction:Function; private static var defaultStyles:Object = {focusRectSkin:null, focusRectPadding:null}; public static var createAccessibilityImplementation:Function; public function List(){ _rowHeight = 20; _labelField = "label"; _iconField = "icon"; super(); } public function get iconField():String{ return (_iconField); } protected function doKeySelection(_arg1:int, _arg2:Boolean, _arg3:Boolean):void{ var _local4:Boolean; var _local5:int; var _local6:Array; var _local7:int; var _local8:int; _local4 = false; if (_arg2){ _local6 = []; _local7 = lastCaretIndex; _local8 = _arg1; if (_local7 == -1){ _local7 = ((caretIndex)!=-1) ? caretIndex : _arg1; }; if (_local7 > _local8){ _local8 = _local7; _local7 = _arg1; }; _local5 = _local7; while (_local5 <= _local8) { _local6.push(_local5); _local5++; }; selectedIndices = _local6; caretIndex = _arg1; _local4 = true; } else { selectedIndex = _arg1; caretIndex = (lastCaretIndex = _arg1); _local4 = true; }; if (_local4){ dispatchEvent(new Event(Event.CHANGE)); }; invalidate(InvalidationType.DATA); } override protected function drawList():void{ var _local1:Rectangle; var _local2:uint; var _local3:uint; var _local4:uint; var _local5:Object; var _local6:ICellRenderer; var _local7:Dictionary; var _local8:Dictionary; var _local9:Boolean; var _local10:String; var _local11:Object; var _local12:Sprite; var _local13:String; listHolder.x = (listHolder.y = contentPadding); _local1 = listHolder.scrollRect; _local1.x = _horizontalScrollPosition; _local1.y = (Math.floor(_verticalScrollPosition) % rowHeight); listHolder.scrollRect = _local1; listHolder.cacheAsBitmap = useBitmapScrolling; _local2 = Math.floor((_verticalScrollPosition / rowHeight)); _local3 = Math.min(length, ((_local2 + rowCount) + 1)); _local7 = (renderedItems = new Dictionary(true)); _local4 = _local2; while (_local4 < _local3) { _local7[_dataProvider.getItemAt(_local4)] = true; _local4++; }; _local8 = new Dictionary(true); while (activeCellRenderers.length > 0) { _local6 = (activeCellRenderers.pop() as ICellRenderer); _local5 = _local6.data; if ((((_local7[_local5] == null)) || ((invalidItems[_local5] == true)))){ availableCellRenderers.push(_local6); } else { _local8[_local5] = _local6; invalidItems[_local5] = true; }; list.removeChild((_local6 as DisplayObject)); }; invalidItems = new Dictionary(true); _local4 = _local2; while (_local4 < _local3) { _local9 = false; _local5 = _dataProvider.getItemAt(_local4); if (_local8[_local5] != null){ _local9 = true; _local6 = _local8[_local5]; delete _local8[_local5]; } else { if (availableCellRenderers.length > 0){ _local6 = (availableCellRenderers.pop() as ICellRenderer); } else { _local6 = (getDisplayObjectInstance(getStyleValue("cellRenderer")) as ICellRenderer); _local12 = (_local6 as Sprite); if (_local12 != null){ _local12.addEventListener(MouseEvent.CLICK, handleCellRendererClick, false, 0, true); _local12.addEventListener(MouseEvent.ROLL_OVER, handleCellRendererMouseEvent, false, 0, true); _local12.addEventListener(MouseEvent.ROLL_OUT, handleCellRendererMouseEvent, false, 0, true); _local12.addEventListener(Event.CHANGE, handleCellRendererChange, false, 0, true); _local12.doubleClickEnabled = true; _local12.addEventListener(MouseEvent.DOUBLE_CLICK, handleCellRendererDoubleClick, false, 0, true); if (_local12["setStyle"] != null){ for (_local13 in rendererStyles) { var _local16 = _local12; _local16["setStyle"](_local13, rendererStyles[_local13]); }; }; }; }; }; list.addChild((_local6 as Sprite)); activeCellRenderers.push(_local6); _local6.y = (rowHeight * (_local4 - _local2)); _local6.setSize((availableWidth + _maxHorizontalScrollPosition), rowHeight); _local10 = itemToLabel(_local5); _local11 = null; if (_iconFunction != null){ _local11 = _iconFunction(_local5); } else { if (_iconField != null){ _local11 = _local5[_iconField]; }; }; if (!_local9){ _local6.data = _local5; }; _local6.listData = new ListData(_local10, _local11, this, _local4, _local4, 0); _local6.selected = !((_selectedIndices.indexOf(_local4) == -1)); if ((_local6 is UIComponent)){ (_local6 as UIComponent).drawNow(); }; _local4++; }; } public function get iconFunction():Function{ return (_iconFunction); } public function set iconField(_arg1:String):void{ if (_arg1 == _iconField){ return; }; _iconField = _arg1; invalidate(InvalidationType.DATA); } override protected function keyDownHandler(_arg1:KeyboardEvent):void{ var _local2:int; if (!selectable){ return; }; switch (_arg1.keyCode){ case Keyboard.UP: case Keyboard.DOWN: case Keyboard.END: case Keyboard.HOME: case Keyboard.PAGE_UP: case Keyboard.PAGE_DOWN: moveSelectionVertically(_arg1.keyCode, ((_arg1.shiftKey) && (_allowMultipleSelection)), ((_arg1.ctrlKey) && (_allowMultipleSelection))); break; case Keyboard.LEFT: case Keyboard.RIGHT: moveSelectionHorizontally(_arg1.keyCode, ((_arg1.shiftKey) && (_allowMultipleSelection)), ((_arg1.ctrlKey) && (_allowMultipleSelection))); break; case Keyboard.SPACE: if (caretIndex == -1){ caretIndex = 0; }; doKeySelection(caretIndex, _arg1.shiftKey, _arg1.ctrlKey); scrollToSelected(); break; default: _local2 = getNextIndexAtLetter(String.fromCharCode(_arg1.keyCode), selectedIndex); if (_local2 > -1){ selectedIndex = _local2; scrollToSelected(); }; break; }; _arg1.stopPropagation(); } override public function itemToLabel(_arg1:Object):String{ if (_labelFunction != null){ return (String(_labelFunction(_arg1))); }; return (((_arg1[_labelField])!=null) ? String(_arg1[_labelField]) : ""); } public function get labelField():String{ return (_labelField); } override protected function moveSelectionVertically(_arg1:uint, _arg2:Boolean, _arg3:Boolean):void{ var _local4:int; var _local5:int; var _local6:int; _local4 = Math.max(Math.floor((calculateAvailableHeight() / rowHeight)), 1); _local5 = -1; _local6 = 0; switch (_arg1){ case Keyboard.UP: if (caretIndex > 0){ _local5 = (caretIndex - 1); }; break; case Keyboard.DOWN: if (caretIndex < (length - 1)){ _local5 = (caretIndex + 1); }; break; case Keyboard.PAGE_UP: if (caretIndex > 0){ _local5 = Math.max((caretIndex - _local4), 0); }; break; case Keyboard.PAGE_DOWN: if (caretIndex < (length - 1)){ _local5 = Math.min((caretIndex + _local4), (length - 1)); }; break; case Keyboard.HOME: if (caretIndex > 0){ _local5 = 0; }; break; case Keyboard.END: if (caretIndex < (length - 1)){ _local5 = (length - 1); }; break; }; if (_local5 >= 0){ doKeySelection(_local5, _arg2, _arg3); scrollToSelected(); }; } public function set labelField(_arg1:String):void{ if (_arg1 == _labelField){ return; }; _labelField = _arg1; invalidate(InvalidationType.DATA); } public function set rowCount(_arg1:uint):void{ var _local2:Number; var _local3:Number; _local2 = Number(getStyleValue("contentPadding")); _local3 = ((((_horizontalScrollPolicy == ScrollPolicy.ON)) || ((((_horizontalScrollPolicy == ScrollPolicy.AUTO)) && ((_maxHorizontalScrollPosition > 0)))))) ? 15 : 0; height = (((rowHeight * _arg1) + (2 * _local2)) + _local3); } override protected function setHorizontalScrollPosition(_arg1:Number, _arg2:Boolean=false):void{ list.x = -(_arg1); super.setHorizontalScrollPosition(_arg1, true); } public function set iconFunction(_arg1:Function):void{ if (_iconFunction == _arg1){ return; }; _iconFunction = _arg1; invalidate(InvalidationType.DATA); } public function get labelFunction():Function{ return (_labelFunction); } override protected function moveSelectionHorizontally(_arg1:uint, _arg2:Boolean, _arg3:Boolean):void{ } override protected function setVerticalScrollPosition(_arg1:Number, _arg2:Boolean=false):void{ invalidate(InvalidationType.SCROLL); super.setVerticalScrollPosition(_arg1, true); } protected function calculateAvailableHeight():Number{ var _local1:Number; _local1 = Number(getStyleValue("contentPadding")); return (((height - (_local1 * 2)) - ((((_horizontalScrollPolicy == ScrollPolicy.ON)) || ((((_horizontalScrollPolicy == ScrollPolicy.AUTO)) && ((_maxHorizontalScrollPosition > 0)))))) ? 15 : 0)); } override protected function draw():void{ var _local1:Boolean; _local1 = !((contentHeight == (rowHeight * length))); contentHeight = (rowHeight * length); if (isInvalid(InvalidationType.STYLES)){ setStyles(); drawBackground(); if (contentPadding != getStyleValue("contentPadding")){ invalidate(InvalidationType.SIZE, false); }; if (_cellRenderer != getStyleValue("cellRenderer")){ _invalidateList(); _cellRenderer = getStyleValue("cellRenderer"); }; }; if (((isInvalid(InvalidationType.SIZE, InvalidationType.STATE)) || (_local1))){ drawLayout(); }; if (isInvalid(InvalidationType.RENDERER_STYLES)){ updateRendererStyles(); }; if (isInvalid(InvalidationType.STYLES, InvalidationType.SIZE, InvalidationType.DATA, InvalidationType.SCROLL, InvalidationType.SELECTED)){ drawList(); }; updateChildren(); validate(); } override protected function configUI():void{ useFixedHorizontalScrolling = true; _horizontalScrollPolicy = ScrollPolicy.AUTO; _verticalScrollPolicy = ScrollPolicy.AUTO; super.configUI(); } override public function get rowCount():uint{ return (Math.ceil((calculateAvailableHeight() / rowHeight))); } override protected function initializeAccessibility():void{ if (List.createAccessibilityImplementation != null){ List.createAccessibilityImplementation(this); }; } override public function scrollToIndex(_arg1:int):void{ var _local2:uint; var _local3:uint; drawNow(); _local2 = (Math.floor(((_verticalScrollPosition + availableHeight) / rowHeight)) - 1); _local3 = Math.ceil((_verticalScrollPosition / rowHeight)); if (_arg1 < _local3){ verticalScrollPosition = (_arg1 * rowHeight); } else { if (_arg1 > _local2){ verticalScrollPosition = (((_arg1 + 1) * rowHeight) - availableHeight); }; }; } public function get rowHeight():Number{ return (_rowHeight); } public function set labelFunction(_arg1:Function):void{ if (_labelFunction == _arg1){ return; }; _labelFunction = _arg1; invalidate(InvalidationType.DATA); } public function set rowHeight(_arg1:Number):void{ _rowHeight = _arg1; invalidate(InvalidationType.SIZE); } public static function getStyleDefinition():Object{ return (mergeStyles(defaultStyles, SelectableList.getStyleDefinition())); } } }//package fl.controls
Section 11
//ScrollBar (fl.controls.ScrollBar) package fl.controls { import fl.core.*; import flash.events.*; import fl.events.*; public class ScrollBar extends UIComponent { private var _direction:String;// = "vertical" protected var inDrag:Boolean;// = false protected var upArrow:BaseButton; private var _pageScrollSize:Number;// = 0 protected var downArrow:BaseButton; private var _pageSize:Number;// = 10 private var thumbScrollOffset:Number; private var _maxScrollPosition:Number;// = 0 private var _scrollPosition:Number;// = 0 protected var track:BaseButton; private var _minScrollPosition:Number;// = 0 private var _lineScrollSize:Number;// = 1 protected var thumb:LabelButton; protected static const THUMB_STYLES:Object = {disabledSkin:"thumbDisabledSkin", downSkin:"thumbDownSkin", overSkin:"thumbOverSkin", upSkin:"thumbUpSkin", icon:"thumbIcon", textPadding:0}; public static const WIDTH:Number = 15; protected static const DOWN_ARROW_STYLES:Object = {disabledSkin:"downArrowDisabledSkin", downSkin:"downArrowDownSkin", overSkin:"downArrowOverSkin", upSkin:"downArrowUpSkin", repeatDelay:"repeatDelay", repeatInterval:"repeatInterval"}; protected static const UP_ARROW_STYLES:Object = {disabledSkin:"upArrowDisabledSkin", downSkin:"upArrowDownSkin", overSkin:"upArrowOverSkin", upSkin:"upArrowUpSkin", repeatDelay:"repeatDelay", repeatInterval:"repeatInterval"}; protected static const TRACK_STYLES:Object = {disabledSkin:"trackDisabledSkin", downSkin:"trackDownSkin", overSkin:"trackOverSkin", upSkin:"trackUpSkin", repeatDelay:"repeatDelay", repeatInterval:"repeatInterval"}; private static var defaultStyles:Object = {downArrowDisabledSkin:"ScrollArrowDown_disabledSkin", downArrowDownSkin:"ScrollArrowDown_downSkin", downArrowOverSkin:"ScrollArrowDown_overSkin", downArrowUpSkin:"ScrollArrowDown_upSkin", thumbDisabledSkin:"ScrollThumb_upSkin", thumbDownSkin:"ScrollThumb_downSkin", thumbOverSkin:"ScrollThumb_overSkin", thumbUpSkin:"ScrollThumb_upSkin", trackDisabledSkin:"ScrollTrack_skin", trackDownSkin:"ScrollTrack_skin", trackOverSkin:"ScrollTrack_skin", trackUpSkin:"ScrollTrack_skin", upArrowDisabledSkin:"ScrollArrowUp_disabledSkin", upArrowDownSkin:"ScrollArrowUp_downSkin", upArrowOverSkin:"ScrollArrowUp_overSkin", upArrowUpSkin:"ScrollArrowUp_upSkin", thumbIcon:"ScrollBar_thumbIcon", repeatDelay:500, repeatInterval:35}; public function ScrollBar(){ _pageSize = 10; _pageScrollSize = 0; _lineScrollSize = 1; _minScrollPosition = 0; _maxScrollPosition = 0; _scrollPosition = 0; _direction = ScrollBarDirection.VERTICAL; inDrag = false; super(); setStyles(); focusEnabled = false; } public function get minScrollPosition():Number{ return (_minScrollPosition); } public function set minScrollPosition(_arg1:Number):void{ setScrollProperties(_pageSize, _arg1, _maxScrollPosition); } public function setScrollPosition(_arg1:Number, _arg2:Boolean=true):void{ var _local3:Number; _local3 = scrollPosition; _scrollPosition = Math.max(_minScrollPosition, Math.min(_maxScrollPosition, _arg1)); if (_local3 == _scrollPosition){ return; }; if (_arg2){ dispatchEvent(new ScrollEvent(_direction, (scrollPosition - _local3), scrollPosition)); }; updateThumb(); } public function set scrollPosition(_arg1:Number):void{ setScrollPosition(_arg1, true); } public function get pageScrollSize():Number{ return (((_pageScrollSize)==0) ? _pageSize : _pageScrollSize); } public function set pageSize(_arg1:Number):void{ if (_arg1 > 0){ _pageSize = _arg1; }; } public function setScrollProperties(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number=0):void{ this.pageSize = _arg1; _minScrollPosition = _arg2; _maxScrollPosition = _arg3; if (_arg4 >= 0){ _pageScrollSize = _arg4; }; enabled = (_maxScrollPosition > _minScrollPosition); setScrollPosition(_scrollPosition, false); updateThumb(); } override public function set enabled(_arg1:Boolean):void{ super.enabled = _arg1; downArrow.enabled = (track.enabled = (thumb.enabled = (upArrow.enabled = ((enabled) && ((_maxScrollPosition > _minScrollPosition)))))); updateThumb(); } protected function updateThumb():void{ var _local1:Number; _local1 = ((_maxScrollPosition - _minScrollPosition) + _pageSize); if ((((((track.height <= 12)) || ((_maxScrollPosition <= _minScrollPosition)))) || ((((_local1 == 0)) || (isNaN(_local1)))))){ thumb.height = 12; thumb.visible = false; } else { thumb.height = Math.max(13, ((_pageSize / _local1) * track.height)); thumb.y = (track.y + ((track.height - thumb.height) * ((_scrollPosition - _minScrollPosition) / (_maxScrollPosition - _minScrollPosition)))); thumb.visible = enabled; }; } protected function thumbPressHandler(_arg1:MouseEvent):void{ inDrag = true; thumbScrollOffset = (mouseY - thumb.y); thumb.mouseStateLocked = true; mouseChildren = false; stage.addEventListener(MouseEvent.MOUSE_MOVE, handleThumbDrag, false, 0, true); stage.addEventListener(MouseEvent.MOUSE_UP, thumbReleaseHandler, false, 0, true); } protected function thumbReleaseHandler(_arg1:MouseEvent):void{ inDrag = false; mouseChildren = true; thumb.mouseStateLocked = false; stage.removeEventListener(MouseEvent.MOUSE_MOVE, handleThumbDrag); stage.removeEventListener(MouseEvent.MOUSE_UP, thumbReleaseHandler); } public function set pageScrollSize(_arg1:Number):void{ if (_arg1 >= 0){ _pageScrollSize = _arg1; }; } protected function handleThumbDrag(_arg1:MouseEvent):void{ var _local2:Number; _local2 = Math.max(0, Math.min((track.height - thumb.height), ((mouseY - track.y) - thumbScrollOffset))); setScrollPosition((((_local2 / (track.height - thumb.height)) * (_maxScrollPosition - _minScrollPosition)) + _minScrollPosition)); } public function set direction(_arg1:String):void{ var _local2:Boolean; if (_direction == _arg1){ return; }; _direction = _arg1; if (isLivePreview){ return; }; setScaleY(1); _local2 = (_direction == ScrollBarDirection.HORIZONTAL); if (((_local2) && (componentInspectorSetting))){ if (rotation == 90){ return; }; setScaleX(-1); rotation = -90; }; if (!componentInspectorSetting){ if (((_local2) && ((rotation == 0)))){ rotation = -90; setScaleX(-1); } else { if (((!(_local2)) && ((rotation == -90)))){ rotation = 0; setScaleX(1); }; }; }; invalidate(InvalidationType.SIZE); } public function set lineScrollSize(_arg1:Number):void{ if (_arg1 > 0){ _lineScrollSize = _arg1; }; } override public function get height():Number{ return (((_direction)==ScrollBarDirection.HORIZONTAL) ? super.width : super.height); } protected function scrollPressHandler(_arg1:ComponentEvent):void{ var _local2:Number; var _local3:Number; _arg1.stopImmediatePropagation(); if (_arg1.currentTarget == upArrow){ setScrollPosition((_scrollPosition - _lineScrollSize)); } else { if (_arg1.currentTarget == downArrow){ setScrollPosition((_scrollPosition + _lineScrollSize)); } else { _local2 = (((track.mouseY / track.height) * (_maxScrollPosition - _minScrollPosition)) + _minScrollPosition); _local3 = ((pageScrollSize)==0) ? pageSize : pageScrollSize; if (_scrollPosition < _local2){ setScrollPosition(Math.min(_local2, (_scrollPosition + _local3))); } else { if (_scrollPosition > _local2){ setScrollPosition(Math.max(_local2, (_scrollPosition - _local3))); }; }; }; }; } public function get pageSize():Number{ return (_pageSize); } public function set maxScrollPosition(_arg1:Number):void{ setScrollProperties(_pageSize, _minScrollPosition, _arg1); } public function get scrollPosition():Number{ return (_scrollPosition); } override public function get enabled():Boolean{ return (super.enabled); } override protected function draw():void{ var _local1:Number; if (isInvalid(InvalidationType.SIZE)){ _local1 = super.height; downArrow.move(0, Math.max(upArrow.height, (_local1 - downArrow.height))); track.setSize(WIDTH, Math.max(0, (_local1 - (downArrow.height + upArrow.height)))); updateThumb(); }; if (isInvalid(InvalidationType.STYLES, InvalidationType.STATE)){ setStyles(); }; downArrow.drawNow(); upArrow.drawNow(); track.drawNow(); thumb.drawNow(); validate(); } override protected function configUI():void{ super.configUI(); track = new BaseButton(); track.move(0, 14); track.useHandCursor = false; track.autoRepeat = true; track.focusEnabled = false; addChild(track); thumb = new LabelButton(); thumb.label = ""; thumb.setSize(WIDTH, 15); thumb.move(0, 15); thumb.focusEnabled = false; addChild(thumb); downArrow = new BaseButton(); downArrow.setSize(WIDTH, 14); downArrow.autoRepeat = true; downArrow.focusEnabled = false; addChild(downArrow); upArrow = new BaseButton(); upArrow.setSize(WIDTH, 14); upArrow.move(0, 0); upArrow.autoRepeat = true; upArrow.focusEnabled = false; addChild(upArrow); upArrow.addEventListener(ComponentEvent.BUTTON_DOWN, scrollPressHandler, false, 0, true); downArrow.addEventListener(ComponentEvent.BUTTON_DOWN, scrollPressHandler, false, 0, true); track.addEventListener(ComponentEvent.BUTTON_DOWN, scrollPressHandler, false, 0, true); thumb.addEventListener(MouseEvent.MOUSE_DOWN, thumbPressHandler, false, 0, true); enabled = false; } public function get direction():String{ return (_direction); } public function get lineScrollSize():Number{ return (_lineScrollSize); } override public function setSize(_arg1:Number, _arg2:Number):void{ if (_direction == ScrollBarDirection.HORIZONTAL){ super.setSize(_arg2, _arg1); } else { super.setSize(_arg1, _arg2); }; } public function get maxScrollPosition():Number{ return (_maxScrollPosition); } override public function get width():Number{ return (((_direction)==ScrollBarDirection.HORIZONTAL) ? super.height : super.width); } protected function setStyles():void{ copyStylesToChild(downArrow, DOWN_ARROW_STYLES); copyStylesToChild(thumb, THUMB_STYLES); copyStylesToChild(track, TRACK_STYLES); copyStylesToChild(upArrow, UP_ARROW_STYLES); } public static function getStyleDefinition():Object{ return (defaultStyles); } } }//package fl.controls
Section 12
//ScrollBarDirection (fl.controls.ScrollBarDirection) package fl.controls { public class ScrollBarDirection { public static const HORIZONTAL:String = "horizontal"; public static const VERTICAL:String = "vertical"; } }//package fl.controls
Section 13
//ScrollPolicy (fl.controls.ScrollPolicy) package fl.controls { public class ScrollPolicy { public static const OFF:String = "off"; public static const ON:String = "on"; public static const AUTO:String = "auto"; } }//package fl.controls
Section 14
//SelectableList (fl.controls.SelectableList) package fl.controls { import fl.controls.listClasses.*; import fl.core.*; import flash.display.*; import flash.events.*; import fl.data.*; import fl.managers.*; import fl.events.*; import flash.utils.*; import flash.ui.*; import fl.containers.*; public class SelectableList extends BaseScrollPane implements IFocusManagerComponent { protected var invalidItems:Dictionary; protected var renderedItems:Dictionary; protected var listHolder:Sprite; protected var _allowMultipleSelection:Boolean;// = false protected var lastCaretIndex:int;// = -1 protected var _selectedIndices:Array; protected var availableCellRenderers:Array; protected var list:Sprite; protected var caretIndex:int;// = -1 protected var updatedRendererStyles:Object; protected var preChangeItems:Array; protected var activeCellRenderers:Array; protected var rendererStyles:Object; protected var _verticalScrollPosition:Number; protected var _dataProvider:DataProvider; protected var _horizontalScrollPosition:Number; private var collectionItemImport:SimpleCollectionItem; protected var _selectable:Boolean;// = true private static var defaultStyles:Object = {skin:"List_skin", cellRenderer:CellRenderer, contentPadding:null, disabledAlpha:null}; public static var createAccessibilityImplementation:Function; public function SelectableList(){ _allowMultipleSelection = false; _selectable = true; caretIndex = -1; lastCaretIndex = -1; super(); activeCellRenderers = []; availableCellRenderers = []; invalidItems = new Dictionary(true); renderedItems = new Dictionary(true); _selectedIndices = []; if (dataProvider == null){ dataProvider = new DataProvider(); }; verticalScrollPolicy = ScrollPolicy.AUTO; rendererStyles = {}; updatedRendererStyles = {}; } protected function drawList():void{ } public function set allowMultipleSelection(_arg1:Boolean):void{ if (_arg1 == _allowMultipleSelection){ return; }; _allowMultipleSelection = _arg1; if (((!(_arg1)) && ((_selectedIndices.length > 1)))){ _selectedIndices = [_selectedIndices.pop()]; invalidate(InvalidationType.DATA); }; } public function sortItemsOn(_arg1:String, _arg2:Object=null){ return (_dataProvider.sortOn(_arg1, _arg2)); } public function removeItemAt(_arg1:uint):Object{ return (_dataProvider.removeItemAt(_arg1)); } public function get selectedItem():Object{ return (((_selectedIndices.length)==0) ? null : _dataProvider.getItemAt(selectedIndex)); } override protected function keyDownHandler(_arg1:KeyboardEvent):void{ if (!selectable){ return; }; switch (_arg1.keyCode){ case Keyboard.UP: case Keyboard.DOWN: case Keyboard.END: case Keyboard.HOME: case Keyboard.PAGE_UP: case Keyboard.PAGE_DOWN: moveSelectionVertically(_arg1.keyCode, ((_arg1.shiftKey) && (_allowMultipleSelection)), ((_arg1.ctrlKey) && (_allowMultipleSelection))); _arg1.stopPropagation(); break; case Keyboard.LEFT: case Keyboard.RIGHT: moveSelectionHorizontally(_arg1.keyCode, ((_arg1.shiftKey) && (_allowMultipleSelection)), ((_arg1.ctrlKey) && (_allowMultipleSelection))); _arg1.stopPropagation(); break; }; } public function get selectable():Boolean{ return (_selectable); } public function itemToCellRenderer(_arg1:Object):ICellRenderer{ var _local2:*; var _local3:ICellRenderer; if (_arg1 != null){ for (_local2 in activeCellRenderers) { _local3 = (activeCellRenderers[_local2] as ICellRenderer); if (_local3.data == _arg1){ return (_local3); }; }; }; return (null); } public function getNextIndexAtLetter(_arg1:String, _arg2:int=-1):int{ var _local3:int; var _local4:Number; var _local5:Number; var _local6:Object; var _local7:String; if (length == 0){ return (-1); }; _arg1 = _arg1.toUpperCase(); _local3 = (length - 1); _local4 = 0; while (_local4 < _local3) { _local5 = ((_arg2 + 1) + _local4); if (_local5 > (length - 1)){ _local5 = (_local5 - length); }; _local6 = getItemAt(_local5); if (_local6 == null){ break; }; _local7 = itemToLabel(_local6); if (_local7 == null){ } else { if (_local7.charAt(0).toUpperCase() == _arg1){ return (_local5); }; }; _local4++; }; return (-1); } public function invalidateList():void{ _invalidateList(); invalidate(InvalidationType.DATA); } override public function set enabled(_arg1:Boolean):void{ super.enabled = _arg1; list.mouseChildren = _enabled; } public function get selectedIndices():Array{ return (_selectedIndices.concat()); } public function set selectable(_arg1:Boolean):void{ if (_arg1 == _selectable){ return; }; if (!_arg1){ selectedIndices = []; }; _selectable = _arg1; } public function itemToLabel(_arg1:Object):String{ return (_arg1["label"]); } public function addItemAt(_arg1:Object, _arg2:uint):void{ _dataProvider.addItemAt(_arg1, _arg2); invalidateList(); } public function replaceItemAt(_arg1:Object, _arg2:uint):Object{ return (_dataProvider.replaceItemAt(_arg1, _arg2)); } protected function handleDataChange(_arg1:DataChangeEvent):void{ var _local2:int; var _local3:int; var _local4:String; var _local5:uint; _local2 = _arg1.startIndex; _local3 = _arg1.endIndex; _local4 = _arg1.changeType; if (_local4 == DataChangeType.INVALIDATE_ALL){ clearSelection(); invalidateList(); } else { if (_local4 == DataChangeType.INVALIDATE){ _local5 = 0; while (_local5 < _arg1.items.length) { invalidateItem(_arg1.items[_local5]); _local5++; }; } else { if (_local4 == DataChangeType.ADD){ _local5 = 0; while (_local5 < _selectedIndices.length) { if (_selectedIndices[_local5] >= _local2){ _selectedIndices[_local5] = (_selectedIndices[_local5] + (_local2 - _local3)); }; _local5++; }; } else { if (_local4 == DataChangeType.REMOVE){ _local5 = 0; while (_local5 < _selectedIndices.length) { if (_selectedIndices[_local5] >= _local2){ if (_selectedIndices[_local5] <= _local3){ delete _selectedIndices[_local5]; } else { _selectedIndices[_local5] = (_selectedIndices[_local5] - ((_local2 - _local3) + 1)); }; }; _local5++; }; } else { if (_local4 == DataChangeType.REMOVE_ALL){ clearSelection(); } else { if (_local4 == DataChangeType.REPLACE){ } else { selectedItems = preChangeItems; preChangeItems = null; }; }; }; }; }; }; invalidate(InvalidationType.DATA); } protected function _invalidateList():void{ availableCellRenderers = []; while (activeCellRenderers.length > 0) { list.removeChild((activeCellRenderers.pop() as DisplayObject)); }; } protected function updateRendererStyles():void{ var _local1:Array; var _local2:uint; var _local3:uint; var _local4:String; _local1 = availableCellRenderers.concat(activeCellRenderers); _local2 = _local1.length; _local3 = 0; while (_local3 < _local2) { if (_local1[_local3].setStyle == null){ } else { for (_local4 in updatedRendererStyles) { _local1[_local3].setStyle(_local4, updatedRendererStyles[_local4]); }; _local1[_local3].drawNow(); }; _local3++; }; updatedRendererStyles = {}; } public function set selectedItem(_arg1:Object):void{ var _local2:int; _local2 = _dataProvider.getItemIndex(_arg1); selectedIndex = _local2; } public function sortItems(... _args){ return (_dataProvider.sort.apply(_dataProvider, _args)); } public function removeAll():void{ _dataProvider.removeAll(); } protected function handleCellRendererChange(_arg1:Event):void{ var _local2:ICellRenderer; var _local3:uint; _local2 = (_arg1.currentTarget as ICellRenderer); _local3 = _local2.listData.index; _dataProvider.invalidateItemAt(_local3); } protected function moveSelectionVertically(_arg1:uint, _arg2:Boolean, _arg3:Boolean):void{ } override protected function setHorizontalScrollPosition(_arg1:Number, _arg2:Boolean=false):void{ var _local3:Number; if (_arg1 == _horizontalScrollPosition){ return; }; _local3 = (_arg1 - _horizontalScrollPosition); _horizontalScrollPosition = _arg1; if (_arg2){ dispatchEvent(new ScrollEvent(ScrollBarDirection.HORIZONTAL, _local3, _arg1)); }; } public function scrollToSelected():void{ scrollToIndex(selectedIndex); } public function invalidateItem(_arg1:Object):void{ if (renderedItems[_arg1] == null){ return; }; invalidItems[_arg1] = true; invalidate(InvalidationType.DATA); } protected function handleCellRendererClick(_arg1:MouseEvent):void{ var _local2:ICellRenderer; var _local3:uint; var _local4:int; var _local5:int; var _local6:uint; if (!_enabled){ return; }; _local2 = (_arg1.currentTarget as ICellRenderer); _local3 = _local2.listData.index; if (((!(dispatchEvent(new ListEvent(ListEvent.ITEM_CLICK, false, true, _local2.listData.column, _local2.listData.row, _local3, _local2.data)))) || (!(_selectable)))){ return; }; _local4 = selectedIndices.indexOf(_local3); if (!_allowMultipleSelection){ if (_local4 != -1){ return; }; _local2.selected = true; _selectedIndices = [_local3]; lastCaretIndex = (caretIndex = _local3); } else { if (_arg1.shiftKey){ _local6 = ((_selectedIndices.length)>0) ? _selectedIndices[0] : _local3; _selectedIndices = []; if (_local6 > _local3){ _local5 = _local6; while (_local5 >= _local3) { _selectedIndices.push(_local5); _local5--; }; } else { _local5 = _local6; while (_local5 <= _local3) { _selectedIndices.push(_local5); _local5++; }; }; caretIndex = _local3; } else { if (_arg1.ctrlKey){ if (_local4 != -1){ _local2.selected = false; _selectedIndices.splice(_local4, 1); } else { _local2.selected = true; _selectedIndices.push(_local3); }; caretIndex = _local3; } else { _selectedIndices = [_local3]; lastCaretIndex = (caretIndex = _local3); }; }; }; dispatchEvent(new Event(Event.CHANGE)); invalidate(InvalidationType.DATA); } public function get length():uint{ return (_dataProvider.length); } public function get allowMultipleSelection():Boolean{ return (_allowMultipleSelection); } protected function onPreChange(_arg1:DataChangeEvent):void{ switch (_arg1.changeType){ case DataChangeType.REMOVE: case DataChangeType.ADD: case DataChangeType.INVALIDATE: case DataChangeType.REMOVE_ALL: case DataChangeType.REPLACE: case DataChangeType.INVALIDATE_ALL: break; default: preChangeItems = selectedItems; break; }; } public function getRendererStyle(_arg1:String, _arg2:int=-1):Object{ return (rendererStyles[_arg1]); } override protected function setVerticalScrollPosition(_arg1:Number, _arg2:Boolean=false):void{ var _local3:Number; if (_arg1 == _verticalScrollPosition){ return; }; _local3 = (_arg1 - _verticalScrollPosition); _verticalScrollPosition = _arg1; if (_arg2){ dispatchEvent(new ScrollEvent(ScrollBarDirection.VERTICAL, _local3, _arg1)); }; } protected function moveSelectionHorizontally(_arg1:uint, _arg2:Boolean, _arg3:Boolean):void{ } public function set selectedIndices(_arg1:Array):void{ if (!_selectable){ return; }; _selectedIndices = ((_arg1)==null) ? [] : _arg1.concat(); invalidate(InvalidationType.SELECTED); } public function get selectedIndex():int{ return (((_selectedIndices.length)==0) ? -1 : _selectedIndices[(_selectedIndices.length - 1)]); } override protected function draw():void{ super.draw(); } override protected function configUI():void{ super.configUI(); listHolder = new Sprite(); addChild(listHolder); listHolder.scrollRect = contentScrollRect; list = new Sprite(); listHolder.addChild(list); } public function addItem(_arg1:Object):void{ _dataProvider.addItem(_arg1); invalidateList(); } protected function handleCellRendererMouseEvent(_arg1:MouseEvent):void{ var _local2:ICellRenderer; var _local3:String; _local2 = (_arg1.target as ICellRenderer); _local3 = ((_arg1.type)==MouseEvent.ROLL_OVER) ? ListEvent.ITEM_ROLL_OVER : ListEvent.ITEM_ROLL_OUT; dispatchEvent(new ListEvent(_local3, false, false, _local2.listData.column, _local2.listData.row, _local2.listData.index, _local2.data)); } public function clearRendererStyle(_arg1:String, _arg2:int=-1):void{ delete rendererStyles[_arg1]; updatedRendererStyles[_arg1] = null; invalidate(InvalidationType.RENDERER_STYLES); } protected function handleCellRendererDoubleClick(_arg1:MouseEvent):void{ var _local2:ICellRenderer; var _local3:uint; if (!_enabled){ return; }; _local2 = (_arg1.currentTarget as ICellRenderer); _local3 = _local2.listData.index; dispatchEvent(new ListEvent(ListEvent.ITEM_DOUBLE_CLICK, false, true, _local2.listData.column, _local2.listData.row, _local3, _local2.data)); } public function get rowCount():uint{ return (0); } public function isItemSelected(_arg1:Object):Boolean{ return ((selectedItems.indexOf(_arg1) > -1)); } public function set dataProvider(_arg1:DataProvider):void{ if (_dataProvider != null){ _dataProvider.removeEventListener(DataChangeEvent.DATA_CHANGE, handleDataChange); _dataProvider.removeEventListener(DataChangeEvent.PRE_DATA_CHANGE, onPreChange); }; _dataProvider = _arg1; _dataProvider.addEventListener(DataChangeEvent.DATA_CHANGE, handleDataChange, false, 0, true); _dataProvider.addEventListener(DataChangeEvent.PRE_DATA_CHANGE, onPreChange, false, 0, true); clearSelection(); invalidateList(); } override protected function drawLayout():void{ super.drawLayout(); contentScrollRect = listHolder.scrollRect; contentScrollRect.width = availableWidth; contentScrollRect.height = availableHeight; listHolder.scrollRect = contentScrollRect; } public function getItemAt(_arg1:uint):Object{ return (_dataProvider.getItemAt(_arg1)); } override protected function initializeAccessibility():void{ if (SelectableList.createAccessibilityImplementation != null){ SelectableList.createAccessibilityImplementation(this); }; } public function scrollToIndex(_arg1:int):void{ } public function removeItem(_arg1:Object):Object{ return (_dataProvider.removeItem(_arg1)); } public function get dataProvider():DataProvider{ return (_dataProvider); } public function set maxHorizontalScrollPosition(_arg1:Number):void{ _maxHorizontalScrollPosition = _arg1; invalidate(InvalidationType.SIZE); } public function setRendererStyle(_arg1:String, _arg2:Object, _arg3:uint=0):void{ if (rendererStyles[_arg1] == _arg2){ return; }; updatedRendererStyles[_arg1] = _arg2; rendererStyles[_arg1] = _arg2; invalidate(InvalidationType.RENDERER_STYLES); } public function invalidateItemAt(_arg1:uint):void{ var _local2:Object; _local2 = _dataProvider.getItemAt(_arg1); if (_local2 != null){ invalidateItem(_local2); }; } public function set selectedItems(_arg1:Array):void{ var _local2:Array; var _local3:uint; var _local4:int; if (_arg1 == null){ selectedIndices = null; return; }; _local2 = []; _local3 = 0; while (_local3 < _arg1.length) { _local4 = _dataProvider.getItemIndex(_arg1[_local3]); if (_local4 != -1){ _local2.push(_local4); }; _local3++; }; selectedIndices = _local2; } public function clearSelection():void{ selectedIndex = -1; } override public function get maxHorizontalScrollPosition():Number{ return (_maxHorizontalScrollPosition); } public function get selectedItems():Array{ var _local1:Array; var _local2:uint; _local1 = []; _local2 = 0; while (_local2 < _selectedIndices.length) { _local1.push(_dataProvider.getItemAt(_selectedIndices[_local2])); _local2++; }; return (_local1); } public function set selectedIndex(_arg1:int):void{ selectedIndices = ((_arg1)==-1) ? null : [_arg1]; } public static function getStyleDefinition():Object{ return (mergeStyles(defaultStyles, BaseScrollPane.getStyleDefinition())); } } }//package fl.controls
Section 15
//TextArea (fl.controls.TextArea) package fl.controls { import fl.core.*; import flash.display.*; import flash.events.*; import fl.managers.*; import fl.events.*; import flash.text.*; import flash.system.*; import flash.ui.*; public class TextArea extends UIComponent implements IFocusManagerComponent { protected var _html:Boolean;// = false protected var _verticalScrollBar:UIScrollBar; protected var _savedHTML:String; protected var background:DisplayObject; protected var _horizontalScrollBar:UIScrollBar; protected var _horizontalScrollPolicy:String;// = "auto" protected var _editable:Boolean;// = true protected var textHasChanged:Boolean;// = false public var textField:TextField; protected var _wordWrap:Boolean;// = true protected var _verticalScrollPolicy:String;// = "auto" protected static const SCROLL_BAR_STYLES:Object = {downArrowDisabledSkin:"downArrowDisabledSkin", downArrowDownSkin:"downArrowDownSkin", downArrowOverSkin:"downArrowOverSkin", downArrowUpSkin:"downArrowUpSkin", upArrowDisabledSkin:"upArrowDisabledSkin", upArrowDownSkin:"upArrowDownSkin", upArrowOverSkin:"upArrowOverSkin", upArrowUpSkin:"upArrowUpSkin", thumbDisabledSkin:"thumbDisabledSkin", thumbDownSkin:"thumbDownSkin", thumbOverSkin:"thumbOverSkin", thumbUpSkin:"thumbUpSkin", thumbIcon:"thumbIcon", trackDisabledSkin:"trackDisabledSkin", trackDownSkin:"trackDownSkin", trackOverSkin:"trackOverSkin", trackUpSkin:"trackUpSkin", repeatDelay:"repeatDelay", repeatInterval:"repeatInterval"}; private static var defaultStyles:Object = {upSkin:"TextArea_upSkin", disabledSkin:"TextArea_disabledSkin", focusRectSkin:null, focusRectPadding:null, textFormat:null, disabledTextFormat:null, textPadding:3, embedFonts:false}; public static var createAccessibilityImplementation:Function; public function TextArea(){ _editable = true; _wordWrap = true; _horizontalScrollPolicy = ScrollPolicy.AUTO; _verticalScrollPolicy = ScrollPolicy.AUTO; _html = false; textHasChanged = false; super(); } override public function drawFocus(_arg1:Boolean):void{ if (focusTarget != null){ focusTarget.drawFocus(_arg1); return; }; super.drawFocus(_arg1); } public function set imeMode(_arg1:String):void{ _imeMode = _arg1; } protected function handleWheel(_arg1:MouseEvent):void{ if (((!(enabled)) || (!(_verticalScrollBar.visible)))){ return; }; _verticalScrollBar.scrollPosition = (_verticalScrollBar.scrollPosition - (_arg1.delta * _verticalScrollBar.lineScrollSize)); dispatchEvent(new ScrollEvent(ScrollBarDirection.VERTICAL, (_arg1.delta * _verticalScrollBar.lineScrollSize), _verticalScrollBar.scrollPosition)); } public function get verticalScrollPosition():Number{ return (textField.scrollV); } override protected function isOurFocus(_arg1:DisplayObject):Boolean{ return ((((_arg1 == textField)) || (super.isOurFocus(_arg1)))); } public function set verticalScrollPosition(_arg1:Number):void{ drawNow(); textField.scrollV = _arg1; } protected function handleKeyDown(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == Keyboard.ENTER){ dispatchEvent(new ComponentEvent(ComponentEvent.ENTER, true)); }; } public function set text(_arg1:String):void{ if (((componentInspectorSetting) && ((_arg1 == "")))){ return; }; textField.text = _arg1; _html = false; invalidate(InvalidationType.DATA); invalidate(InvalidationType.STYLES); textHasChanged = true; } protected function updateTextFieldType():void{ textField.type = (((enabled) && (_editable))) ? TextFieldType.INPUT : TextFieldType.DYNAMIC; textField.selectable = enabled; textField.wordWrap = _wordWrap; textField.multiline = true; } public function get selectionEndIndex():int{ return (textField.selectionEndIndex); } public function get editable():Boolean{ return (_editable); } override protected function focusInHandler(_arg1:FocusEvent):void{ var _local2:IFocusManager; setIMEMode(true); if (_arg1.target == this){ stage.focus = textField; }; _local2 = focusManager; if (_local2){ if (editable){ _local2.showFocusIndicator = true; }; _local2.defaultButtonEnabled = false; }; super.focusInHandler(_arg1); if (editable){ setIMEMode(true); }; } public function get wordWrap():Boolean{ return (_wordWrap); } public function get selectionBeginIndex():int{ return (textField.selectionBeginIndex); } public function get horizontalScrollBar():UIScrollBar{ return (_horizontalScrollBar); } public function set alwaysShowSelection(_arg1:Boolean):void{ textField.alwaysShowSelection = _arg1; } override public function set enabled(_arg1:Boolean):void{ super.enabled = _arg1; mouseChildren = enabled; invalidate(InvalidationType.STATE); } protected function setEmbedFont(){ var _local1:Object; _local1 = getStyleValue("embedFonts"); if (_local1 != null){ textField.embedFonts = _local1; }; } public function get horizontalScrollPosition():Number{ return (textField.scrollH); } public function set condenseWhite(_arg1:Boolean):void{ textField.condenseWhite = _arg1; invalidate(InvalidationType.DATA); } public function get horizontalScrollPolicy():String{ return (_horizontalScrollPolicy); } public function set displayAsPassword(_arg1:Boolean):void{ textField.displayAsPassword = _arg1; } public function get maxVerticalScrollPosition():int{ return (textField.maxScrollV); } public function set horizontalScrollPosition(_arg1:Number):void{ drawNow(); textField.scrollH = _arg1; } public function get textHeight():Number{ drawNow(); return (textField.textHeight); } public function get textWidth():Number{ drawNow(); return (textField.textWidth); } public function get restrict():String{ return (textField.restrict); } public function set editable(_arg1:Boolean):void{ _editable = _arg1; invalidate(InvalidationType.STATE); } protected function updateScrollBars(){ _horizontalScrollBar.update(); _verticalScrollBar.update(); _verticalScrollBar.enabled = enabled; _horizontalScrollBar.enabled = enabled; _horizontalScrollBar.drawNow(); _verticalScrollBar.drawNow(); } public function get maxChars():int{ return (textField.maxChars); } public function get length():Number{ return (textField.text.length); } public function set wordWrap(_arg1:Boolean):void{ _wordWrap = _arg1; invalidate(InvalidationType.STATE); } public function get verticalScrollPolicy():String{ return (_verticalScrollPolicy); } public function getLineMetrics(_arg1:int):TextLineMetrics{ return (textField.getLineMetrics(_arg1)); } public function get imeMode():String{ return (IME.conversionMode); } protected function handleScroll(_arg1:ScrollEvent):void{ dispatchEvent(_arg1); } override protected function focusOutHandler(_arg1:FocusEvent):void{ var _local2:IFocusManager; _local2 = focusManager; if (_local2){ _local2.defaultButtonEnabled = true; }; setSelection(0, 0); super.focusOutHandler(_arg1); if (editable){ setIMEMode(false); }; } protected function delayedLayoutUpdate(_arg1:Event):void{ if (textHasChanged){ textHasChanged = false; drawLayout(); return; }; removeEventListener(Event.ENTER_FRAME, delayedLayoutUpdate); } public function set htmlText(_arg1:String):void{ if (((componentInspectorSetting) && ((_arg1 == "")))){ return; }; if (_arg1 == ""){ text = ""; return; }; _html = true; _savedHTML = _arg1; textField.htmlText = _arg1; invalidate(InvalidationType.DATA); invalidate(InvalidationType.STYLES); textHasChanged = true; } public function get text():String{ return (textField.text); } public function get verticalScrollBar():UIScrollBar{ return (_verticalScrollBar); } override public function get enabled():Boolean{ return (super.enabled); } public function get condenseWhite():Boolean{ return (textField.condenseWhite); } public function set horizontalScrollPolicy(_arg1:String):void{ _horizontalScrollPolicy = _arg1; invalidate(InvalidationType.SIZE); } public function get displayAsPassword():Boolean{ return (textField.displayAsPassword); } override protected function draw():void{ if (isInvalid(InvalidationType.STATE)){ updateTextFieldType(); }; if (isInvalid(InvalidationType.STYLES)){ setStyles(); setEmbedFont(); }; if (isInvalid(InvalidationType.STYLES, InvalidationType.STATE)){ drawTextFormat(); drawBackground(); invalidate(InvalidationType.SIZE, false); }; if (isInvalid(InvalidationType.SIZE, InvalidationType.DATA)){ drawLayout(); }; super.draw(); } protected function handleTextInput(_arg1:TextEvent):void{ _arg1.stopPropagation(); dispatchEvent(new TextEvent(TextEvent.TEXT_INPUT, true, false, _arg1.text)); } override protected function configUI():void{ super.configUI(); tabChildren = true; textField = new TextField(); addChild(textField); updateTextFieldType(); _verticalScrollBar = new UIScrollBar(); _verticalScrollBar.name = "V"; _verticalScrollBar.visible = false; _verticalScrollBar.focusEnabled = false; copyStylesToChild(_verticalScrollBar, SCROLL_BAR_STYLES); _verticalScrollBar.addEventListener(ScrollEvent.SCROLL, handleScroll, false, 0, true); addChild(_verticalScrollBar); _horizontalScrollBar = new UIScrollBar(); _horizontalScrollBar.name = "H"; _horizontalScrollBar.visible = false; _horizontalScrollBar.focusEnabled = false; _horizontalScrollBar.direction = ScrollBarDirection.HORIZONTAL; copyStylesToChild(_horizontalScrollBar, SCROLL_BAR_STYLES); _horizontalScrollBar.addEventListener(ScrollEvent.SCROLL, handleScroll, false, 0, true); addChild(_horizontalScrollBar); textField.addEventListener(TextEvent.TEXT_INPUT, handleTextInput, false, 0, true); textField.addEventListener(Event.CHANGE, handleChange, false, 0, true); textField.addEventListener(KeyboardEvent.KEY_DOWN, handleKeyDown, false, 0, true); _horizontalScrollBar.scrollTarget = textField; _verticalScrollBar.scrollTarget = textField; addEventListener(MouseEvent.MOUSE_WHEEL, handleWheel, false, 0, true); } protected function setTextSize(_arg1:Number, _arg2:Number, _arg3:Number):void{ var _local4:Number; var _local5:Number; _local4 = (_arg1 - (_arg3 * 2)); _local5 = (_arg2 - (_arg3 * 2)); if (_local4 != textField.width){ textField.width = _local4; }; if (_local5 != textField.height){ textField.height = _local5; }; } public function appendText(_arg1:String):void{ textField.appendText(_arg1); invalidate(InvalidationType.DATA); } protected function needVScroll():Boolean{ if (_verticalScrollPolicy == ScrollPolicy.OFF){ return (false); }; if (_verticalScrollPolicy == ScrollPolicy.ON){ return (true); }; return ((textField.maxScrollV > 1)); } public function setSelection(_arg1:int, _arg2:int):void{ textField.setSelection(_arg1, _arg2); } public function get alwaysShowSelection():Boolean{ return (textField.alwaysShowSelection); } public function get htmlText():String{ return (textField.htmlText); } public function set restrict(_arg1:String):void{ if (((componentInspectorSetting) && ((_arg1 == "")))){ _arg1 = null; }; textField.restrict = _arg1; } protected function drawBackground():void{ var _local1:DisplayObject; var _local2:String; _local1 = background; _local2 = (enabled) ? "upSkin" : "disabledSkin"; background = getDisplayObjectInstance(getStyleValue(_local2)); if (background != null){ addChildAt(background, 0); }; if (((((!((_local1 == null))) && (!((_local1 == background))))) && (contains(_local1)))){ removeChild(_local1); }; } public function set maxChars(_arg1:int):void{ textField.maxChars = _arg1; } public function get maxHorizontalScrollPosition():int{ return (textField.maxScrollH); } protected function drawLayout():void{ var _local1:Number; var _local2:Number; var _local3:Boolean; var _local4:Number; var _local5:Boolean; _local1 = Number(getStyleValue("textPadding")); textField.x = (textField.y = _local1); background.width = width; background.height = height; _local2 = height; _local3 = needVScroll(); _local4 = (width - (_local3) ? _verticalScrollBar.width : 0); _local5 = needHScroll(); if (_local5){ _local2 = (_local2 - _horizontalScrollBar.height); }; setTextSize(_local4, _local2, _local1); if (((((_local5) && (!(_local3)))) && (needVScroll()))){ _local3 = true; _local4 = (_local4 - _verticalScrollBar.width); setTextSize(_local4, _local2, _local1); }; if (_local3){ _verticalScrollBar.visible = true; _verticalScrollBar.x = (width - _verticalScrollBar.width); _verticalScrollBar.height = _local2; _verticalScrollBar.visible = true; _verticalScrollBar.enabled = enabled; } else { _verticalScrollBar.visible = false; }; if (_local5){ _horizontalScrollBar.visible = true; _horizontalScrollBar.y = (height - _horizontalScrollBar.height); _horizontalScrollBar.width = _local4; _horizontalScrollBar.visible = true; _horizontalScrollBar.enabled = enabled; } else { _horizontalScrollBar.visible = false; }; updateScrollBars(); addEventListener(Event.ENTER_FRAME, delayedLayoutUpdate, false, 0, true); } protected function setStyles():void{ copyStylesToChild(_verticalScrollBar, SCROLL_BAR_STYLES); copyStylesToChild(_horizontalScrollBar, SCROLL_BAR_STYLES); } protected function needHScroll():Boolean{ if (_horizontalScrollPolicy == ScrollPolicy.OFF){ return (false); }; if (_horizontalScrollPolicy == ScrollPolicy.ON){ return (true); }; return ((textField.maxScrollH > 0)); } protected function drawTextFormat():void{ var _local1:Object; var _local2:TextFormat; var _local3:TextFormat; _local1 = UIComponent.getStyleDefinition(); _local2 = (enabled) ? (_local1.defaultTextFormat as TextFormat) : (_local1.defaultDisabledTextFormat as TextFormat); textField.setTextFormat(_local2); _local3 = (getStyleValue((enabled) ? "textFormat" : "disabledTextFormat") as TextFormat); if (_local3 != null){ textField.setTextFormat(_local3); } else { _local3 = _local2; }; textField.defaultTextFormat = _local3; setEmbedFont(); if (_html){ textField.htmlText = _savedHTML; }; } public function set verticalScrollPolicy(_arg1:String):void{ _verticalScrollPolicy = _arg1; invalidate(InvalidationType.SIZE); } protected function handleChange(_arg1:Event):void{ _arg1.stopPropagation(); dispatchEvent(new Event(Event.CHANGE, true)); invalidate(InvalidationType.DATA); } public static function getStyleDefinition():Object{ return (UIComponent.mergeStyles(defaultStyles, ScrollBar.getStyleDefinition())); } } }//package fl.controls
Section 16
//UIScrollBar (fl.controls.UIScrollBar) package fl.controls { import fl.core.*; import flash.events.*; import fl.events.*; import flash.text.*; public class UIScrollBar extends ScrollBar { protected var inScroll:Boolean;// = false protected var _scrollTarget:TextField; protected var inEdit:Boolean;// = false private static var defaultStyles:Object = {}; public function UIScrollBar(){ inEdit = false; inScroll = false; super(); } protected function handleTargetScroll(_arg1:Event):void{ if (inDrag){ return; }; if (!enabled){ return; }; inEdit = true; updateScrollTargetProperties(); scrollPosition = ((direction)==ScrollBarDirection.HORIZONTAL) ? _scrollTarget.scrollH : _scrollTarget.scrollV; inEdit = false; } override public function set minScrollPosition(_arg1:Number):void{ super.minScrollPosition = ((_arg1)<0) ? 0 : _arg1; } override public function setScrollPosition(_arg1:Number, _arg2:Boolean=true):void{ super.setScrollPosition(_arg1, _arg2); if (!_scrollTarget){ inScroll = false; return; }; updateTargetScroll(); } override public function setScrollProperties(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number=0):void{ var _local5:Number; var _local6:Number; _local5 = _arg3; _local6 = ((_arg2)<0) ? 0 : _arg2; if (_scrollTarget != null){ if (direction == ScrollBarDirection.HORIZONTAL){ _local5 = ((_arg3)>_scrollTarget.maxScrollH) ? _scrollTarget.maxScrollH : _local5; } else { _local5 = ((_arg3)>_scrollTarget.maxScrollV) ? _scrollTarget.maxScrollV : _local5; }; }; super.setScrollProperties(_arg1, _local6, _local5, _arg4); } public function get scrollTargetName():String{ return (_scrollTarget.name); } public function get scrollTarget():TextField{ return (_scrollTarget); } protected function updateScrollTargetProperties():void{ var _local1:Boolean; var _local2:Number; if (_scrollTarget == null){ setScrollProperties(pageSize, minScrollPosition, maxScrollPosition, pageScrollSize); scrollPosition = 0; } else { _local1 = (direction == ScrollBarDirection.HORIZONTAL); _local2 = (_local1) ? _scrollTarget.width : 10; setScrollProperties(_local2, (_local1) ? 0 : 1, (_local1) ? _scrollTarget.maxScrollH : _scrollTarget.maxScrollV, pageScrollSize); scrollPosition = (_local1) ? _scrollTarget.scrollH : _scrollTarget.scrollV; }; } public function update():void{ inEdit = true; updateScrollTargetProperties(); inEdit = false; } public function set scrollTargetName(_arg1:String):void{ var target = _arg1; try { scrollTarget = (parent.getChildByName(target) as TextField); } catch(error:Error) { throw (new Error("ScrollTarget not found, or is not a TextField")); }; } override public function set direction(_arg1:String):void{ if (isLivePreview){ return; }; super.direction = _arg1; updateScrollTargetProperties(); } protected function handleTargetChange(_arg1:Event):void{ inEdit = true; setScrollPosition(((direction)==ScrollBarDirection.HORIZONTAL) ? _scrollTarget.scrollH : _scrollTarget.scrollV, true); updateScrollTargetProperties(); inEdit = false; } override public function set maxScrollPosition(_arg1:Number):void{ var _local2:Number; _local2 = _arg1; if (_scrollTarget != null){ if (direction == ScrollBarDirection.HORIZONTAL){ _local2 = ((_local2)>_scrollTarget.maxScrollH) ? _scrollTarget.maxScrollH : _local2; } else { _local2 = ((_local2)>_scrollTarget.maxScrollV) ? _scrollTarget.maxScrollV : _local2; }; }; super.maxScrollPosition = _local2; } protected function updateTargetScroll(_arg1:ScrollEvent=null):void{ if (inEdit){ return; }; if (direction == ScrollBarDirection.HORIZONTAL){ _scrollTarget.scrollH = scrollPosition; } else { _scrollTarget.scrollV = scrollPosition; }; } override protected function draw():void{ if (isInvalid(InvalidationType.DATA)){ updateScrollTargetProperties(); }; super.draw(); } public function set scrollTarget(_arg1:TextField):void{ if (_scrollTarget != null){ _scrollTarget.removeEventListener(Event.CHANGE, handleTargetChange, false); _scrollTarget.removeEventListener(TextEvent.TEXT_INPUT, handleTargetChange, false); _scrollTarget.removeEventListener(Event.SCROLL, handleTargetScroll, false); removeEventListener(ScrollEvent.SCROLL, updateTargetScroll, false); }; _scrollTarget = _arg1; if (_scrollTarget != null){ _scrollTarget.addEventListener(Event.CHANGE, handleTargetChange, false, 0, true); _scrollTarget.addEventListener(TextEvent.TEXT_INPUT, handleTargetChange, false, 0, true); _scrollTarget.addEventListener(Event.SCROLL, handleTargetScroll, false, 0, true); addEventListener(ScrollEvent.SCROLL, updateTargetScroll, false, 0, true); }; invalidate(InvalidationType.DATA); } override public function get direction():String{ return (super.direction); } public static function getStyleDefinition():Object{ return (UIComponent.mergeStyles(defaultStyles, ScrollBar.getStyleDefinition())); } } }//package fl.controls
Section 17
//ComponentShim (fl.core.ComponentShim) package fl.core { import flash.display.*; public dynamic class ComponentShim extends MovieClip { } }//package fl.core
Section 18
//InvalidationType (fl.core.InvalidationType) package fl.core { public class InvalidationType { public static const SIZE:String = "size"; public static const ALL:String = "all"; public static const DATA:String = "data"; public static const SCROLL:String = "scroll"; public static const STATE:String = "state"; public static const STYLES:String = "styles"; public static const SELECTED:String = "selected"; public static const RENDERER_STYLES:String = "rendererStyles"; } }//package fl.core
Section 19
//UIComponent (fl.core.UIComponent) package fl.core { import flash.display.*; import flash.events.*; import fl.managers.*; import fl.events.*; import flash.text.*; import flash.system.*; import flash.utils.*; public class UIComponent extends Sprite { protected var _enabled:Boolean;// = true private var _mouseFocusEnabled:Boolean;// = true protected var startHeight:Number; protected var _height:Number; protected var _oldIMEMode:String;// = null protected var startWidth:Number; public var focusTarget:IFocusManagerComponent; protected var errorCaught:Boolean;// = false protected var uiFocusRect:DisplayObject; protected var _width:Number; public var version:String;// = "3.0.0.15" protected var isFocused:Boolean;// = false protected var callLaterMethods:Dictionary; private var _focusEnabled:Boolean;// = true private var tempText:TextField; protected var invalidateFlag:Boolean;// = false protected var _inspector:Boolean;// = false protected var sharedStyles:Object; protected var invalidHash:Object; protected var isLivePreview:Boolean;// = false protected var _imeMode:String;// = null protected var instanceStyles:Object; protected var _x:Number; protected var _y:Number; public static var inCallLaterPhase:Boolean = false; private static var defaultStyles:Object = {focusRectSkin:"focusRectSkin", focusRectPadding:2, textFormat:new TextFormat("_sans", 11, 0, false, false, false, "", "", TextFormatAlign.LEFT, 0, 0, 0, 0), disabledTextFormat:new TextFormat("_sans", 11, 0x999999, false, false, false, "", "", TextFormatAlign.LEFT, 0, 0, 0, 0), defaultTextFormat:new TextFormat("_sans", 11, 0, false, false, false, "", "", TextFormatAlign.LEFT, 0, 0, 0, 0), defaultDisabledTextFormat:new TextFormat("_sans", 11, 0x999999, false, false, false, "", "", TextFormatAlign.LEFT, 0, 0, 0, 0)}; public static var createAccessibilityImplementation:Function; private static var focusManagers:Dictionary = new Dictionary(false); public function UIComponent(){ version = "3.0.0.15"; isLivePreview = false; invalidateFlag = false; _enabled = true; isFocused = false; _focusEnabled = true; _mouseFocusEnabled = true; _imeMode = null; _oldIMEMode = null; errorCaught = false; _inspector = false; super(); instanceStyles = {}; sharedStyles = {}; invalidHash = {}; callLaterMethods = new Dictionary(); StyleManager.registerInstance(this); configUI(); invalidate(InvalidationType.ALL); tabEnabled = (this is IFocusManagerComponent); focusRect = false; if (tabEnabled){ addEventListener(FocusEvent.FOCUS_IN, focusInHandler); addEventListener(FocusEvent.FOCUS_OUT, focusOutHandler); addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler); addEventListener(KeyboardEvent.KEY_UP, keyUpHandler); }; initializeFocusManager(); addEventListener(Event.ENTER_FRAME, hookAccessibility, false, 0, true); } public function drawFocus(_arg1:Boolean):void{ var _local2:Number; isFocused = _arg1; if (((!((uiFocusRect == null))) && (contains(uiFocusRect)))){ removeChild(uiFocusRect); uiFocusRect = null; }; if (_arg1){ uiFocusRect = (getDisplayObjectInstance(getStyleValue("focusRectSkin")) as Sprite); if (uiFocusRect == null){ return; }; _local2 = Number(getStyleValue("focusRectPadding")); uiFocusRect.x = -(_local2); uiFocusRect.y = -(_local2); uiFocusRect.width = (width + (_local2 * 2)); uiFocusRect.height = (height + (_local2 * 2)); addChildAt(uiFocusRect, 0); }; } private function callLaterDispatcher(_arg1:Event):void{ var _local2:Dictionary; var _local3:Object; if (_arg1.type == Event.ADDED_TO_STAGE){ removeEventListener(Event.ADDED_TO_STAGE, callLaterDispatcher); stage.addEventListener(Event.RENDER, callLaterDispatcher, false, 0, true); stage.invalidate(); return; }; _arg1.target.removeEventListener(Event.RENDER, callLaterDispatcher); if (stage == null){ addEventListener(Event.ADDED_TO_STAGE, callLaterDispatcher, false, 0, true); return; }; inCallLaterPhase = true; _local2 = callLaterMethods; for (_local3 in _local2) { _local3(); delete _local2[_local3]; }; inCallLaterPhase = false; } private function addedHandler(_arg1:Event):void{ removeEventListener("addedToStage", addedHandler); initializeFocusManager(); } protected function getStyleValue(_arg1:String):Object{ return (((instanceStyles[_arg1])==null) ? sharedStyles[_arg1] : instanceStyles[_arg1]); } protected function isOurFocus(_arg1:DisplayObject):Boolean{ return ((_arg1 == this)); } override public function get scaleX():Number{ return ((width / startWidth)); } override public function get scaleY():Number{ return ((height / startHeight)); } override public function set height(_arg1:Number):void{ if (_height == _arg1){ return; }; setSize(width, _arg1); } protected function keyDownHandler(_arg1:KeyboardEvent):void{ } protected function focusInHandler(_arg1:FocusEvent):void{ var _local2:IFocusManager; if (isOurFocus((_arg1.target as DisplayObject))){ _local2 = focusManager; if (((_local2) && (_local2.showFocusIndicator))){ drawFocus(true); isFocused = true; }; }; } public function setStyle(_arg1:String, _arg2:Object):void{ if ((((instanceStyles[_arg1] === _arg2)) && (!((_arg2 is TextFormat))))){ return; }; instanceStyles[_arg1] = _arg2; invalidate(InvalidationType.STYLES); } override public function get visible():Boolean{ return (super.visible); } public function get componentInspectorSetting():Boolean{ return (_inspector); } override public function get x():Number{ return ((isNaN(_x)) ? super.x : _x); } override public function get y():Number{ return ((isNaN(_y)) ? super.y : _y); } protected function setIMEMode(_arg1:Boolean){ var enabled = _arg1; if (_imeMode != null){ if (enabled){ IME.enabled = true; _oldIMEMode = IME.conversionMode; try { if (((!(errorCaught)) && (!((IME.conversionMode == IMEConversionMode.UNKNOWN))))){ IME.conversionMode = _imeMode; }; errorCaught = false; } catch(e:Error) { errorCaught = true; throw (new Error(("IME mode not supported: " + _imeMode))); }; } else { if (((!((IME.conversionMode == IMEConversionMode.UNKNOWN))) && (!((_oldIMEMode == IMEConversionMode.UNKNOWN))))){ IME.conversionMode = _oldIMEMode; }; IME.enabled = false; }; }; } public function set enabled(_arg1:Boolean):void{ if (_arg1 == _enabled){ return; }; _enabled = _arg1; invalidate(InvalidationType.STATE); } public function setSharedStyle(_arg1:String, _arg2:Object):void{ if ((((sharedStyles[_arg1] === _arg2)) && (!((_arg2 is TextFormat))))){ return; }; sharedStyles[_arg1] = _arg2; if (instanceStyles[_arg1] == null){ invalidate(InvalidationType.STYLES); }; } protected function keyUpHandler(_arg1:KeyboardEvent):void{ } public function set focusEnabled(_arg1:Boolean):void{ _focusEnabled = _arg1; } override public function set scaleX(_arg1:Number):void{ setSize((startWidth * _arg1), height); } public function get mouseFocusEnabled():Boolean{ return (_mouseFocusEnabled); } override public function set scaleY(_arg1:Number):void{ setSize(width, (startHeight * _arg1)); } protected function getDisplayObjectInstance(_arg1:Object):DisplayObject{ var classDef:Object; var skin = _arg1; classDef = null; if ((skin is Class)){ return ((new (skin) as DisplayObject)); }; if ((skin is DisplayObject)){ (skin as DisplayObject).x = 0; (skin as DisplayObject).y = 0; return ((skin as DisplayObject)); }; try { classDef = getDefinitionByName(skin.toString()); } catch(e:Error) { try { classDef = (loaderInfo.applicationDomain.getDefinition(skin.toString()) as Object); } catch(e:Error) { }; }; if (classDef == null){ return (null); }; return ((new (classDef) as DisplayObject)); } protected function copyStylesToChild(_arg1:UIComponent, _arg2:Object):void{ var _local3:String; for (_local3 in _arg2) { _arg1.setStyle(_local3, getStyleValue(_arg2[_local3])); }; } protected function beforeComponentParameters():void{ } protected function callLater(_arg1:Function):void{ if (inCallLaterPhase){ return; }; callLaterMethods[_arg1] = true; if (stage != null){ stage.addEventListener(Event.RENDER, callLaterDispatcher, false, 0, true); stage.invalidate(); } else { addEventListener(Event.ADDED_TO_STAGE, callLaterDispatcher, false, 0, true); }; } protected function createFocusManager():void{ if (focusManagers[stage] == null){ focusManagers[stage] = new FocusManager(stage); }; } override public function set visible(_arg1:Boolean):void{ var _local2:String; if (super.visible == _arg1){ return; }; super.visible = _arg1; _local2 = (_arg1) ? ComponentEvent.SHOW : ComponentEvent.HIDE; dispatchEvent(new ComponentEvent(_local2, true)); } protected function hookAccessibility(_arg1:Event):void{ removeEventListener(Event.ENTER_FRAME, hookAccessibility); initializeAccessibility(); } public function set componentInspectorSetting(_arg1:Boolean):void{ _inspector = _arg1; if (_inspector){ beforeComponentParameters(); } else { afterComponentParameters(); }; } override public function set x(_arg1:Number):void{ move(_arg1, _y); } public function drawNow():void{ draw(); } override public function set y(_arg1:Number):void{ move(_x, _arg1); } protected function checkLivePreview():Boolean{ var className:String; if (parent == null){ return (false); }; try { className = getQualifiedClassName(parent); } catch(e:Error) { }; return ((className == "fl.livepreview::LivePreviewParent")); } protected function focusOutHandler(_arg1:FocusEvent):void{ if (isOurFocus((_arg1.target as DisplayObject))){ drawFocus(false); isFocused = false; }; } public function set mouseFocusEnabled(_arg1:Boolean):void{ _mouseFocusEnabled = _arg1; } public function getFocus():InteractiveObject{ if (stage){ return (stage.focus); }; return (null); } protected function validate():void{ invalidHash = {}; } override public function get height():Number{ return (_height); } public function invalidate(_arg1:String="all", _arg2:Boolean=true):void{ invalidHash[_arg1] = true; if (_arg2){ this.callLater(draw); }; } public function get enabled():Boolean{ return (_enabled); } protected function getScaleX():Number{ return (super.scaleX); } protected function getScaleY():Number{ return (super.scaleY); } public function get focusEnabled():Boolean{ return (_focusEnabled); } protected function afterComponentParameters():void{ } protected function draw():void{ if (isInvalid(InvalidationType.SIZE, InvalidationType.STYLES)){ if (((isFocused) && (focusManager.showFocusIndicator))){ drawFocus(true); }; }; validate(); } protected function configUI():void{ var _local1:Number; var _local2:Number; var _local3:Number; isLivePreview = checkLivePreview(); _local1 = rotation; rotation = 0; _local2 = super.width; _local3 = super.height; var _local4 = 1; super.scaleY = _local4; super.scaleX = _local4; setSize(_local2, _local3); move(super.x, super.y); rotation = _local1; startWidth = _local2; startHeight = _local3; if (numChildren > 0){ removeChildAt(0); }; } protected function setScaleX(_arg1:Number):void{ super.scaleX = _arg1; } protected function setScaleY(_arg1:Number):void{ super.scaleY = _arg1; } private function initializeFocusManager():void{ if (stage == null){ addEventListener(Event.ADDED_TO_STAGE, addedHandler, false, 0, true); } else { createFocusManager(); }; } public function set focusManager(_arg1:IFocusManager):void{ UIComponent.focusManagers[this] = _arg1; } public function clearStyle(_arg1:String):void{ setStyle(_arg1, null); } protected function isInvalid(_arg1:String, ... _args):Boolean{ if (((invalidHash[_arg1]) || (invalidHash[InvalidationType.ALL]))){ return (true); }; while (_args.length > 0) { if (invalidHash[_args.pop()]){ return (true); }; }; return (false); } public function setSize(_arg1:Number, _arg2:Number):void{ _width = _arg1; _height = _arg2; invalidate(InvalidationType.SIZE); dispatchEvent(new ComponentEvent(ComponentEvent.RESIZE, false)); } override public function set width(_arg1:Number):void{ if (_width == _arg1){ return; }; setSize(_arg1, height); } public function setFocus():void{ if (stage){ stage.focus = this; }; } protected function initializeAccessibility():void{ if (UIComponent.createAccessibilityImplementation != null){ UIComponent.createAccessibilityImplementation(this); }; } public function get focusManager():IFocusManager{ var _local1:DisplayObject; _local1 = this; while (_local1) { if (UIComponent.focusManagers[_local1] != null){ return (IFocusManager(UIComponent.focusManagers[_local1])); }; _local1 = _local1.parent; }; return (null); } override public function get width():Number{ return (_width); } public function move(_arg1:Number, _arg2:Number):void{ _x = _arg1; _y = _arg2; super.x = Math.round(_arg1); super.y = Math.round(_arg2); dispatchEvent(new ComponentEvent(ComponentEvent.MOVE)); } public function validateNow():void{ invalidate(InvalidationType.ALL, false); draw(); } public function getStyle(_arg1:String):Object{ return (instanceStyles[_arg1]); } public static function getStyleDefinition():Object{ return (defaultStyles); } public static function mergeStyles(... _args):Object{ var _local2:Object; var _local3:uint; var _local4:uint; var _local5:Object; var _local6:String; _local2 = {}; _local3 = _args.length; _local4 = 0; while (_local4 < _local3) { _local5 = _args[_local4]; for (_local6 in _local5) { if (_local2[_local6] != null){ } else { _local2[_local6] = _args[_local4][_local6]; }; }; _local4++; }; return (_local2); } } }//package fl.core
Section 20
//DataProvider (fl.data.DataProvider) package fl.data { import flash.events.*; import fl.events.*; public class DataProvider extends EventDispatcher { protected var data:Array; public function DataProvider(_arg1:Object=null){ if (_arg1 == null){ data = []; } else { data = getDataFromObject(_arg1); }; } protected function dispatchPreChangeEvent(_arg1:String, _arg2:Array, _arg3:int, _arg4:int):void{ dispatchEvent(new DataChangeEvent(DataChangeEvent.PRE_DATA_CHANGE, _arg1, _arg2, _arg3, _arg4)); } public function invalidateItemAt(_arg1:int):void{ checkIndex(_arg1, (data.length - 1)); dispatchChangeEvent(DataChangeType.INVALIDATE, [data[_arg1]], _arg1, _arg1); } public function getItemIndex(_arg1:Object):int{ return (data.indexOf(_arg1)); } protected function getDataFromObject(_arg1:Object):Array{ var _local2:Array; var _local3:Array; var _local4:uint; var _local5:Object; var _local6:XML; var _local7:XMLList; var _local8:XML; var _local9:XMLList; var _local10:XML; var _local11:XMLList; var _local12:XML; if ((_arg1 is Array)){ _local3 = (_arg1 as Array); if (_local3.length > 0){ if ((((_local3[0] is String)) || ((_local3[0] is Number)))){ _local2 = []; _local4 = 0; while (_local4 < _local3.length) { _local5 = {label:String(_local3[_local4]), data:_local3[_local4]}; _local2.push(_local5); _local4++; }; return (_local2); }; }; return (_arg1.concat()); //unresolved jump }; if ((_arg1 is DataProvider)){ return (_arg1.toArray()); }; if ((_arg1 is XML)){ _local6 = (_arg1 as XML); _local2 = []; _local7 = _local6.*; for each (_local8 in _local7) { _arg1 = {}; _local9 = _local8.attributes(); for each (_local10 in _local9) { _arg1[_local10.localName()] = _local10.toString(); }; _local11 = _local8.*; for each (_local12 in _local11) { if (_local12.hasSimpleContent()){ _arg1[_local12.localName()] = _local12.toString(); }; }; _local2.push(_arg1); }; return (_local2); //unresolved jump }; throw (new TypeError((("Error: Type Coercion failed: cannot convert " + _arg1) + " to Array or DataProvider."))); } public function removeItemAt(_arg1:uint):Object{ var _local2:Array; checkIndex(_arg1, (data.length - 1)); dispatchPreChangeEvent(DataChangeType.REMOVE, data.slice(_arg1, (_arg1 + 1)), _arg1, _arg1); _local2 = data.splice(_arg1, 1); dispatchChangeEvent(DataChangeType.REMOVE, _local2, _arg1, _arg1); return (_local2[0]); } public function addItem(_arg1:Object):void{ dispatchPreChangeEvent(DataChangeType.ADD, [_arg1], (data.length - 1), (data.length - 1)); data.push(_arg1); dispatchChangeEvent(DataChangeType.ADD, [_arg1], (data.length - 1), (data.length - 1)); } public function sortOn(_arg1:Object, _arg2:Object=null){ var _local3:Array; dispatchPreChangeEvent(DataChangeType.SORT, data.concat(), 0, (data.length - 1)); _local3 = data.sortOn(_arg1, _arg2); dispatchChangeEvent(DataChangeType.SORT, data.concat(), 0, (data.length - 1)); return (_local3); } public function sort(... _args){ var _local2:Array; dispatchPreChangeEvent(DataChangeType.SORT, data.concat(), 0, (data.length - 1)); _local2 = data.sort.apply(data, _args); dispatchChangeEvent(DataChangeType.SORT, data.concat(), 0, (data.length - 1)); return (_local2); } public function addItems(_arg1:Object):void{ addItemsAt(_arg1, data.length); } public function concat(_arg1:Object):void{ addItems(_arg1); } public function clone():DataProvider{ return (new DataProvider(data)); } public function toArray():Array{ return (data.concat()); } public function get length():uint{ return (data.length); } public function addItemAt(_arg1:Object, _arg2:uint):void{ checkIndex(_arg2, data.length); dispatchPreChangeEvent(DataChangeType.ADD, [_arg1], _arg2, _arg2); data.splice(_arg2, 0, _arg1); dispatchChangeEvent(DataChangeType.ADD, [_arg1], _arg2, _arg2); } public function getItemAt(_arg1:uint):Object{ checkIndex(_arg1, (data.length - 1)); return (data[_arg1]); } override public function toString():String{ return ((("DataProvider [" + data.join(" , ")) + "]")); } public function invalidateItem(_arg1:Object):void{ var _local2:uint; _local2 = getItemIndex(_arg1); if (_local2 == -1){ return; }; invalidateItemAt(_local2); } protected function dispatchChangeEvent(_arg1:String, _arg2:Array, _arg3:int, _arg4:int):void{ dispatchEvent(new DataChangeEvent(DataChangeEvent.DATA_CHANGE, _arg1, _arg2, _arg3, _arg4)); } protected function checkIndex(_arg1:int, _arg2:int):void{ if ((((_arg1 > _arg2)) || ((_arg1 < 0)))){ throw (new RangeError((((("DataProvider index (" + _arg1) + ") is not in acceptable range (0 - ") + _arg2) + ")"))); }; } public function addItemsAt(_arg1:Object, _arg2:uint):void{ var _local3:Array; checkIndex(_arg2, data.length); _local3 = getDataFromObject(_arg1); dispatchPreChangeEvent(DataChangeType.ADD, _local3, _arg2, ((_arg2 + _local3.length) - 1)); data.splice.apply(data, [_arg2, 0].concat(_local3)); dispatchChangeEvent(DataChangeType.ADD, _local3, _arg2, ((_arg2 + _local3.length) - 1)); } public function replaceItem(_arg1:Object, _arg2:Object):Object{ var _local3:int; _local3 = getItemIndex(_arg2); if (_local3 != -1){ return (replaceItemAt(_arg1, _local3)); }; return (null); } public function removeItem(_arg1:Object):Object{ var _local2:int; _local2 = getItemIndex(_arg1); if (_local2 != -1){ return (removeItemAt(_local2)); }; return (null); } public function merge(_arg1:Object):void{ var _local2:Array; var _local3:uint; var _local4:uint; var _local5:uint; var _local6:Object; _local2 = getDataFromObject(_arg1); _local3 = _local2.length; _local4 = data.length; dispatchPreChangeEvent(DataChangeType.ADD, data.slice(_local4, data.length), _local4, (this.data.length - 1)); _local5 = 0; while (_local5 < _local3) { _local6 = _local2[_local5]; if (getItemIndex(_local6) == -1){ data.push(_local6); }; _local5++; }; if (data.length > _local4){ dispatchChangeEvent(DataChangeType.ADD, data.slice(_local4, data.length), _local4, (this.data.length - 1)); } else { dispatchChangeEvent(DataChangeType.ADD, [], -1, -1); }; } public function replaceItemAt(_arg1:Object, _arg2:uint):Object{ var _local3:Array; checkIndex(_arg2, (data.length - 1)); _local3 = [data[_arg2]]; dispatchPreChangeEvent(DataChangeType.REPLACE, _local3, _arg2, _arg2); data[_arg2] = _arg1; dispatchChangeEvent(DataChangeType.REPLACE, _local3, _arg2, _arg2); return (_local3[0]); } public function invalidate():void{ dispatchEvent(new DataChangeEvent(DataChangeEvent.DATA_CHANGE, DataChangeType.INVALIDATE_ALL, data.concat(), 0, data.length)); } public function removeAll():void{ var _local1:Array; _local1 = data.concat(); dispatchPreChangeEvent(DataChangeType.REMOVE_ALL, _local1, 0, _local1.length); data = []; dispatchChangeEvent(DataChangeType.REMOVE_ALL, _local1, 0, _local1.length); } } }//package fl.data
Section 21
//SimpleCollectionItem (fl.data.SimpleCollectionItem) package fl.data { public dynamic class SimpleCollectionItem { public var label:String; public var data:String; public function toString():String{ return ((((("[SimpleCollectionItem: " + label) + ",") + data) + "]")); } } }//package fl.data
Section 22
//ComponentEvent (fl.events.ComponentEvent) package fl.events { import flash.events.*; public class ComponentEvent extends Event { public static const HIDE:String = "hide"; public static const BUTTON_DOWN:String = "buttonDown"; public static const MOVE:String = "move"; public static const RESIZE:String = "resize"; public static const ENTER:String = "enter"; public static const LABEL_CHANGE:String = "labelChange"; public static const SHOW:String = "show"; public function ComponentEvent(_arg1:String, _arg2:Boolean=false, _arg3:Boolean=false){ super(_arg1, _arg2, _arg3); } override public function toString():String{ return (formatToString("ComponentEvent", "type", "bubbles", "cancelable")); } override public function clone():Event{ return (new ComponentEvent(type, bubbles, cancelable)); } } }//package fl.events
Section 23
//DataChangeEvent (fl.events.DataChangeEvent) package fl.events { import flash.events.*; public class DataChangeEvent extends Event { protected var _items:Array; protected var _endIndex:uint; protected var _changeType:String; protected var _startIndex:uint; public static const PRE_DATA_CHANGE:String = "preDataChange"; public static const DATA_CHANGE:String = "dataChange"; public function DataChangeEvent(_arg1:String, _arg2:String, _arg3:Array, _arg4:int=-1, _arg5:int=-1):void{ super(_arg1); _changeType = _arg2; _startIndex = _arg4; _items = _arg3; _endIndex = ((_arg5)==-1) ? _startIndex : _arg5; } public function get changeType():String{ return (_changeType); } public function get startIndex():uint{ return (_startIndex); } public function get items():Array{ return (_items); } override public function clone():Event{ return (new DataChangeEvent(type, _changeType, _items, _startIndex, _endIndex)); } override public function toString():String{ return (formatToString("DataChangeEvent", "type", "changeType", "startIndex", "endIndex", "bubbles", "cancelable")); } public function get endIndex():uint{ return (_endIndex); } } }//package fl.events
Section 24
//DataChangeType (fl.events.DataChangeType) package fl.events { public class DataChangeType { public static const ADD:String = "add"; public static const REMOVE:String = "remove"; public static const REMOVE_ALL:String = "removeAll"; public static const CHANGE:String = "change"; public static const REPLACE:String = "replace"; public static const INVALIDATE:String = "invalidate"; public static const INVALIDATE_ALL:String = "invalidateAll"; public static const SORT:String = "sort"; } }//package fl.events
Section 25
//ListEvent (fl.events.ListEvent) package fl.events { import flash.events.*; public class ListEvent extends Event { protected var _index:int; protected var _item:Object; protected var _columnIndex:int; protected var _rowIndex:int; public static const ITEM_DOUBLE_CLICK:String = "itemDoubleClick"; public static const ITEM_ROLL_OUT:String = "itemRollOut"; public static const ITEM_ROLL_OVER:String = "itemRollOver"; public static const ITEM_CLICK:String = "itemClick"; public function ListEvent(_arg1:String, _arg2:Boolean=false, _arg3:Boolean=false, _arg4:int=-1, _arg5:int=-1, _arg6:int=-1, _arg7:Object=null){ super(_arg1, _arg2, _arg3); _rowIndex = _arg5; _columnIndex = _arg4; _index = _arg6; _item = _arg7; } public function get rowIndex():Object{ return (_rowIndex); } public function get index():int{ return (_index); } public function get item():Object{ return (_item); } public function get columnIndex():int{ return (_columnIndex); } override public function clone():Event{ return (new ListEvent(type, bubbles, cancelable, _columnIndex, _rowIndex)); } override public function toString():String{ return (formatToString("ListEvent", "type", "bubbles", "cancelable", "columnIndex", "rowIndex", "index", "item")); } } }//package fl.events
Section 26
//ScrollEvent (fl.events.ScrollEvent) package fl.events { import flash.events.*; public class ScrollEvent extends Event { private var _position:Number; private var _direction:String; private var _delta:Number; public static const SCROLL:String = "scroll"; public function ScrollEvent(_arg1:String, _arg2:Number, _arg3:Number){ super(ScrollEvent.SCROLL, false, false); _direction = _arg1; _delta = _arg2; _position = _arg3; } override public function clone():Event{ return (new ScrollEvent(_direction, _delta, _position)); } public function get position():Number{ return (_position); } override public function toString():String{ return (formatToString("ScrollEvent", "type", "bubbles", "cancelable", "direction", "delta", "position")); } public function get delta():Number{ return (_delta); } public function get direction():String{ return (_direction); } } }//package fl.events
Section 27
//FocusManager (fl.managers.FocusManager) package fl.managers { import fl.core.*; import fl.controls.*; import flash.display.*; import flash.events.*; import flash.text.*; import flash.utils.*; import flash.ui.*; public class FocusManager implements IFocusManager { private var focusableObjects:Dictionary; private var _showFocusIndicator:Boolean;// = true private var defButton:Button; private var focusableCandidates:Array; private var _form:DisplayObjectContainer; private var _defaultButtonEnabled:Boolean;// = true private var activated:Boolean;// = false private var _defaultButton:Button; private var calculateCandidates:Boolean;// = true private var lastFocus:InteractiveObject; private var lastAction:String; public function FocusManager(_arg1:DisplayObjectContainer){ activated = false; calculateCandidates = true; _showFocusIndicator = true; _defaultButtonEnabled = true; super(); focusableObjects = new Dictionary(true); if (_arg1 != null){ _form = _arg1; addFocusables(DisplayObject(_arg1)); _arg1.addEventListener(Event.ADDED, addedHandler); _arg1.addEventListener(Event.REMOVED, removedHandler); activate(); }; } public function get showFocusIndicator():Boolean{ return (_showFocusIndicator); } private function getIndexOfNextObject(_arg1:int, _arg2:Boolean, _arg3:Boolean, _arg4:String):int{ var _local5:int; var _local6:int; var _local7:DisplayObject; var _local8:IFocusManagerGroup; var _local9:int; var _local10:DisplayObject; var _local11:IFocusManagerGroup; _local5 = focusableCandidates.length; _local6 = _arg1; while (true) { if (_arg2){ _arg1--; } else { _arg1++; }; if (_arg3){ if (((_arg2) && ((_arg1 < 0)))){ break; }; if (((!(_arg2)) && ((_arg1 == _local5)))){ break; }; } else { _arg1 = ((_arg1 + _local5) % _local5); if (_local6 == _arg1){ break; }; }; if (isValidFocusCandidate(focusableCandidates[_arg1], _arg4)){ _local7 = DisplayObject(findFocusManagerComponent(focusableCandidates[_arg1])); if ((_local7 is IFocusManagerGroup)){ _local8 = IFocusManagerGroup(_local7); _local9 = 0; while (_local9 < focusableCandidates.length) { _local10 = focusableCandidates[_local9]; if ((_local10 is IFocusManagerGroup)){ _local11 = IFocusManagerGroup(_local10); if ((((_local11.groupName == _local8.groupName)) && (_local11.selected))){ _arg1 = _local9; break; }; }; _local9++; }; }; return (_arg1); }; }; return (_arg1); } public function set form(_arg1:DisplayObjectContainer):void{ _form = _arg1; } private function addFocusables(_arg1:DisplayObject, _arg2:Boolean=false):void{ var focusable:IFocusManagerComponent; var io:InteractiveObject; var doc:DisplayObjectContainer; var i:int; var child:DisplayObject; var o = _arg1; var skipTopLevel = _arg2; if (!skipTopLevel){ if ((o is IFocusManagerComponent)){ focusable = IFocusManagerComponent(o); if (focusable.focusEnabled){ if (((focusable.tabEnabled) && (isTabVisible(o)))){ focusableObjects[o] = true; calculateCandidates = true; }; o.addEventListener(Event.TAB_ENABLED_CHANGE, tabEnabledChangeHandler); o.addEventListener(Event.TAB_INDEX_CHANGE, tabIndexChangeHandler); }; } else { if ((o is InteractiveObject)){ io = (o as InteractiveObject); if (((((io) && (io.tabEnabled))) && ((findFocusManagerComponent(io) == io)))){ focusableObjects[io] = true; calculateCandidates = true; }; io.addEventListener(Event.TAB_ENABLED_CHANGE, tabEnabledChangeHandler); io.addEventListener(Event.TAB_INDEX_CHANGE, tabIndexChangeHandler); }; }; }; if ((o is DisplayObjectContainer)){ doc = DisplayObjectContainer(o); o.addEventListener(Event.TAB_CHILDREN_CHANGE, tabChildrenChangeHandler); if ((((((doc is Stage)) || ((doc.parent is Stage)))) || (doc.tabChildren))){ i = 0; while (i < doc.numChildren) { try { child = doc.getChildAt(i); if (child != null){ addFocusables(doc.getChildAt(i)); }; } catch(error:SecurityError) { }; i = (i + 1); }; }; }; } private function getChildIndex(_arg1:DisplayObjectContainer, _arg2:DisplayObject):int{ return (_arg1.getChildIndex(_arg2)); } private function mouseFocusChangeHandler(_arg1:FocusEvent):void{ if ((_arg1.relatedObject is TextField)){ return; }; _arg1.preventDefault(); } private function focusOutHandler(_arg1:FocusEvent):void{ var _local2:InteractiveObject; _local2 = (_arg1.target as InteractiveObject); } private function isValidFocusCandidate(_arg1:DisplayObject, _arg2:String):Boolean{ var _local3:IFocusManagerGroup; if (!isEnabledAndVisible(_arg1)){ return (false); }; if ((_arg1 is IFocusManagerGroup)){ _local3 = IFocusManagerGroup(_arg1); if (_arg2 == _local3.groupName){ return (false); }; }; return (true); } public function findFocusManagerComponent(_arg1:InteractiveObject):InteractiveObject{ var _local2:InteractiveObject; _local2 = _arg1; while (_arg1) { if ((((_arg1 is IFocusManagerComponent)) && (IFocusManagerComponent(_arg1).focusEnabled))){ return (_arg1); }; _arg1 = _arg1.parent; }; return (_local2); } private function sortFocusableObjectsTabIndex():void{ var _local1:Object; var _local2:InteractiveObject; focusableCandidates = []; for (_local1 in focusableObjects) { _local2 = InteractiveObject(_local1); if (((_local2.tabIndex) && (!(isNaN(Number(_local2.tabIndex)))))){ focusableCandidates.push(_local2); }; }; focusableCandidates.sort(sortByTabIndex); } private function removeFocusables(_arg1:DisplayObject):void{ var _local2:Object; var _local3:DisplayObject; if ((_arg1 is DisplayObjectContainer)){ _arg1.removeEventListener(Event.TAB_CHILDREN_CHANGE, tabChildrenChangeHandler); _arg1.removeEventListener(Event.TAB_INDEX_CHANGE, tabIndexChangeHandler); for (_local2 in focusableObjects) { _local3 = DisplayObject(_local2); if (DisplayObjectContainer(_arg1).contains(_local3)){ if (_local3 == lastFocus){ lastFocus = null; }; _local3.removeEventListener(Event.TAB_ENABLED_CHANGE, tabEnabledChangeHandler); delete focusableObjects[_local2]; calculateCandidates = true; }; }; }; } private function addedHandler(_arg1:Event):void{ var _local2:DisplayObject; _local2 = DisplayObject(_arg1.target); if (_local2.stage){ addFocusables(DisplayObject(_arg1.target)); }; } private function getTopLevelFocusTarget(_arg1:InteractiveObject):InteractiveObject{ while (_arg1 != InteractiveObject(form)) { if ((((((((_arg1 is IFocusManagerComponent)) && (IFocusManagerComponent(_arg1).focusEnabled))) && (IFocusManagerComponent(_arg1).mouseFocusEnabled))) && (UIComponent(_arg1).enabled))){ return (_arg1); }; _arg1 = _arg1.parent; if (_arg1 == null){ break; }; }; return (null); } private function tabChildrenChangeHandler(_arg1:Event):void{ var _local2:DisplayObjectContainer; if (_arg1.target != _arg1.currentTarget){ return; }; calculateCandidates = true; _local2 = DisplayObjectContainer(_arg1.target); if (_local2.tabChildren){ addFocusables(_local2, true); } else { removeFocusables(_local2); }; } public function sendDefaultButtonEvent():void{ defButton.dispatchEvent(new MouseEvent(MouseEvent.CLICK)); } public function getFocus():InteractiveObject{ var _local1:InteractiveObject; _local1 = form.stage.focus; return (findFocusManagerComponent(_local1)); } private function isEnabledAndVisible(_arg1:DisplayObject):Boolean{ var _local2:DisplayObjectContainer; var _local3:TextField; var _local4:SimpleButton; _local2 = DisplayObject(form).parent; while (_arg1 != _local2) { if ((_arg1 is UIComponent)){ if (!UIComponent(_arg1).enabled){ return (false); }; } else { if ((_arg1 is TextField)){ _local3 = TextField(_arg1); if ((((_local3.type == TextFieldType.DYNAMIC)) || (!(_local3.selectable)))){ return (false); }; } else { if ((_arg1 is SimpleButton)){ _local4 = SimpleButton(_arg1); if (!_local4.enabled){ return (false); }; }; }; }; if (!_arg1.visible){ return (false); }; _arg1 = _arg1.parent; }; return (true); } public function set defaultButton(_arg1:Button):void{ var _local2:Button; _local2 = (_arg1) ? Button(_arg1) : null; if (_local2 != _defaultButton){ if (_defaultButton){ _defaultButton.emphasized = false; }; if (defButton){ defButton.emphasized = false; }; _defaultButton = _local2; defButton = _local2; if (_local2){ _local2.emphasized = true; }; }; } private function deactivateHandler(_arg1:Event):void{ var _local2:InteractiveObject; _local2 = InteractiveObject(_arg1.target); } public function setFocus(_arg1:InteractiveObject):void{ if ((_arg1 is IFocusManagerComponent)){ IFocusManagerComponent(_arg1).setFocus(); } else { form.stage.focus = _arg1; }; } private function setFocusToNextObject(_arg1:FocusEvent):void{ var _local2:InteractiveObject; if (!hasFocusableObjects()){ return; }; _local2 = getNextFocusManagerComponent(_arg1.shiftKey); if (_local2){ setFocus(_local2); }; } private function hasFocusableObjects():Boolean{ var _local1:Object; for (_local1 in focusableObjects) { return (true); }; return (false); } private function tabIndexChangeHandler(_arg1:Event):void{ calculateCandidates = true; } private function sortFocusableObjects():void{ var _local1:Object; var _local2:InteractiveObject; focusableCandidates = []; for (_local1 in focusableObjects) { _local2 = InteractiveObject(_local1); if (((((_local2.tabIndex) && (!(isNaN(Number(_local2.tabIndex)))))) && ((_local2.tabIndex > 0)))){ sortFocusableObjectsTabIndex(); return; }; focusableCandidates.push(_local2); }; focusableCandidates.sort(sortByDepth); } private function keyFocusChangeHandler(_arg1:FocusEvent):void{ showFocusIndicator = true; if ((((((_arg1.keyCode == Keyboard.TAB)) || ((_arg1.keyCode == 0)))) && (!(_arg1.isDefaultPrevented())))){ setFocusToNextObject(_arg1); _arg1.preventDefault(); }; } private function getIndexOfFocusedObject(_arg1:DisplayObject):int{ var _local2:int; var _local3:int; _local2 = focusableCandidates.length; _local3 = 0; _local3 = 0; while (_local3 < _local2) { if (focusableCandidates[_local3] == _arg1){ return (_local3); }; _local3++; }; return (-1); } public function hideFocus():void{ } private function removedHandler(_arg1:Event):void{ var _local2:int; var _local3:DisplayObject; var _local4:InteractiveObject; _local3 = DisplayObject(_arg1.target); if ((((_local3 is IFocusManagerComponent)) && ((focusableObjects[_local3] == true)))){ if (_local3 == lastFocus){ IFocusManagerComponent(lastFocus).drawFocus(false); lastFocus = null; }; _local3.removeEventListener(Event.TAB_ENABLED_CHANGE, tabEnabledChangeHandler); delete focusableObjects[_local3]; calculateCandidates = true; } else { if ((((_local3 is InteractiveObject)) && ((focusableObjects[_local3] == true)))){ _local4 = (_local3 as InteractiveObject); if (_local4){ if (_local4 == lastFocus){ lastFocus = null; }; delete focusableObjects[_local4]; calculateCandidates = true; }; _local3.addEventListener(Event.TAB_ENABLED_CHANGE, tabEnabledChangeHandler); }; }; removeFocusables(_local3); } private function sortByDepth(_arg1:InteractiveObject, _arg2:InteractiveObject):Number{ var _local3:String; var _local4:String; var _local5:int; var _local6:String; var _local7:String; var _local8:String; var _local9:DisplayObject; var _local10:DisplayObject; _local3 = ""; _local4 = ""; _local8 = "0000"; _local9 = DisplayObject(_arg1); _local10 = DisplayObject(_arg2); while (((!((_local9 == DisplayObject(form)))) && (_local9.parent))) { _local5 = getChildIndex(_local9.parent, _local9); _local6 = _local5.toString(16); if (_local6.length < 4){ _local7 = (_local8.substring(0, (4 - _local6.length)) + _local6); }; _local3 = (_local7 + _local3); _local9 = _local9.parent; }; while (((!((_local10 == DisplayObject(form)))) && (_local10.parent))) { _local5 = getChildIndex(_local10.parent, _local10); _local6 = _local5.toString(16); if (_local6.length < 4){ _local7 = (_local8.substring(0, (4 - _local6.length)) + _local6); }; _local4 = (_local7 + _local4); _local10 = _local10.parent; }; return (((_local3 > _local4)) ? 1 : ((_local3 < _local4)) ? -1 : 0); } public function get defaultButton():Button{ return (_defaultButton); } private function activateHandler(_arg1:Event):void{ var _local2:InteractiveObject; _local2 = InteractiveObject(_arg1.target); if (lastFocus){ if ((lastFocus is IFocusManagerComponent)){ IFocusManagerComponent(lastFocus).setFocus(); } else { form.stage.focus = lastFocus; }; }; lastAction = "ACTIVATE"; } public function showFocus():void{ } public function set defaultButtonEnabled(_arg1:Boolean):void{ _defaultButtonEnabled = _arg1; } public function getNextFocusManagerComponent(_arg1:Boolean=false):InteractiveObject{ var _local2:DisplayObject; var _local3:String; var _local4:int; var _local5:Boolean; var _local6:int; var _local7:int; var _local8:IFocusManagerGroup; if (!hasFocusableObjects()){ return (null); }; if (calculateCandidates){ sortFocusableObjects(); calculateCandidates = false; }; _local2 = form.stage.focus; _local2 = DisplayObject(findFocusManagerComponent(InteractiveObject(_local2))); _local3 = ""; if ((_local2 is IFocusManagerGroup)){ _local8 = IFocusManagerGroup(_local2); _local3 = _local8.groupName; }; _local4 = getIndexOfFocusedObject(_local2); _local5 = false; _local6 = _local4; if (_local4 == -1){ if (_arg1){ _local4 = focusableCandidates.length; }; _local5 = true; }; _local7 = getIndexOfNextObject(_local4, _arg1, _local5, _local3); return (findFocusManagerComponent(focusableCandidates[_local7])); } private function mouseDownHandler(_arg1:MouseEvent):void{ var _local2:InteractiveObject; if (_arg1.isDefaultPrevented()){ return; }; _local2 = getTopLevelFocusTarget(InteractiveObject(_arg1.target)); if (!_local2){ return; }; showFocusIndicator = false; if (((((!((_local2 == lastFocus))) || ((lastAction == "ACTIVATE")))) && (!((_local2 is TextField))))){ setFocus(_local2); }; lastAction = "MOUSEDOWN"; } private function isTabVisible(_arg1:DisplayObject):Boolean{ var _local2:DisplayObjectContainer; _local2 = _arg1.parent; while (((((_local2) && (!((_local2 is Stage))))) && (!(((_local2.parent) && ((_local2.parent is Stage))))))) { if (!_local2.tabChildren){ return (false); }; _local2 = _local2.parent; }; return (true); } public function get nextTabIndex():int{ return (0); } private function keyDownHandler(_arg1:KeyboardEvent):void{ if (_arg1.keyCode == Keyboard.TAB){ lastAction = "KEY"; if (calculateCandidates){ sortFocusableObjects(); calculateCandidates = false; }; }; if (((((((defaultButtonEnabled) && ((_arg1.keyCode == Keyboard.ENTER)))) && (defaultButton))) && (defButton.enabled))){ sendDefaultButtonEvent(); }; } private function focusInHandler(_arg1:FocusEvent):void{ var _local2:InteractiveObject; var _local3:Button; _local2 = InteractiveObject(_arg1.target); if (form.contains(_local2)){ lastFocus = findFocusManagerComponent(InteractiveObject(_local2)); if ((lastFocus is Button)){ _local3 = Button(lastFocus); if (defButton){ defButton.emphasized = false; defButton = _local3; _local3.emphasized = true; }; } else { if (((defButton) && (!((defButton == _defaultButton))))){ defButton.emphasized = false; defButton = _defaultButton; _defaultButton.emphasized = true; }; }; }; } private function tabEnabledChangeHandler(_arg1:Event):void{ var _local2:InteractiveObject; var _local3:Boolean; calculateCandidates = true; _local2 = InteractiveObject(_arg1.target); _local3 = (focusableObjects[_local2] == true); if (_local2.tabEnabled){ if (((!(_local3)) && (isTabVisible(_local2)))){ if (!(_local2 is IFocusManagerComponent)){ _local2.focusRect = false; }; focusableObjects[_local2] = true; }; } else { if (_local3){ delete focusableObjects[_local2]; }; }; } public function set showFocusIndicator(_arg1:Boolean):void{ _showFocusIndicator = _arg1; } public function get form():DisplayObjectContainer{ return (_form); } private function sortByTabIndex(_arg1:InteractiveObject, _arg2:InteractiveObject):int{ return (((_arg1.tabIndex > _arg2.tabIndex)) ? 1 : ((_arg1.tabIndex < _arg2.tabIndex)) ? -1 : sortByDepth(_arg1, _arg2)); } public function activate():void{ if (activated){ return; }; form.stage.addEventListener(FocusEvent.MOUSE_FOCUS_CHANGE, mouseFocusChangeHandler, false, 0, true); form.stage.addEventListener(FocusEvent.KEY_FOCUS_CHANGE, keyFocusChangeHandler, false, 0, true); form.addEventListener(FocusEvent.FOCUS_IN, focusInHandler, true); form.addEventListener(FocusEvent.FOCUS_OUT, focusOutHandler, true); form.stage.addEventListener(Event.ACTIVATE, activateHandler, false, 0, true); form.stage.addEventListener(Event.DEACTIVATE, deactivateHandler, false, 0, true); form.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler); form.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler, true); activated = true; if (lastFocus){ setFocus(lastFocus); }; } public function deactivate():void{ form.stage.removeEventListener(FocusEvent.MOUSE_FOCUS_CHANGE, mouseFocusChangeHandler); form.stage.removeEventListener(FocusEvent.KEY_FOCUS_CHANGE, keyFocusChangeHandler); form.removeEventListener(FocusEvent.FOCUS_IN, focusInHandler, true); form.removeEventListener(FocusEvent.FOCUS_OUT, focusOutHandler, true); form.stage.removeEventListener(Event.ACTIVATE, activateHandler); form.stage.removeEventListener(Event.DEACTIVATE, deactivateHandler); form.removeEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler); form.removeEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler, true); activated = false; } public function get defaultButtonEnabled():Boolean{ return (_defaultButtonEnabled); } } }//package fl.managers
Section 28
//IFocusManager (fl.managers.IFocusManager) package fl.managers { import fl.controls.*; import flash.display.*; public interface IFocusManager { function getFocus():InteractiveObject; function deactivate():void; function set defaultButton(_arg1:Button):void; function set showFocusIndicator(_arg1:Boolean):void; function get defaultButtonEnabled():Boolean; function get nextTabIndex():int; function get defaultButton():Button; function get showFocusIndicator():Boolean; function setFocus(_arg1:InteractiveObject):void; function activate():void; function showFocus():void; function set defaultButtonEnabled(_arg1:Boolean):void; function hideFocus():void; function findFocusManagerComponent(_arg1:InteractiveObject):InteractiveObject; function getNextFocusManagerComponent(_arg1:Boolean=false):InteractiveObject; } }//package fl.managers
Section 29
//IFocusManagerComponent (fl.managers.IFocusManagerComponent) package fl.managers { public interface IFocusManagerComponent { function set focusEnabled(_arg1:Boolean):void; function drawFocus(_arg1:Boolean):void; function setFocus():void; function get focusEnabled():Boolean; function get tabEnabled():Boolean; function get tabIndex():int; function get mouseFocusEnabled():Boolean; } }//package fl.managers
Section 30
//IFocusManagerGroup (fl.managers.IFocusManagerGroup) package fl.managers { public interface IFocusManagerGroup { function set groupName(_arg1:String):void; function set selected(_arg1:Boolean):void; function get groupName():String; function get selected():Boolean; } }//package fl.managers
Section 31
//StyleManager (fl.managers.StyleManager) package fl.managers { import fl.core.*; import flash.text.*; import flash.utils.*; public class StyleManager { private var globalStyles:Object; private var classToDefaultStylesDict:Dictionary; private var styleToClassesHash:Object; private var classToStylesDict:Dictionary; private var classToInstancesDict:Dictionary; private static var _instance:StyleManager; public function StyleManager(){ styleToClassesHash = {}; classToInstancesDict = new Dictionary(true); classToStylesDict = new Dictionary(true); classToDefaultStylesDict = new Dictionary(true); globalStyles = UIComponent.getStyleDefinition(); } public static function clearComponentStyle(_arg1:Object, _arg2:String):void{ var _local3:Class; var _local4:Object; _local3 = getClassDef(_arg1); _local4 = getInstance().classToStylesDict[_local3]; if (((!((_local4 == null))) && (!((_local4[_arg2] == null))))){ delete _local4[_arg2]; invalidateComponentStyle(_local3, _arg2); }; } private static function getClassDef(_arg1:Object):Class{ var component = _arg1; if ((component is Class)){ return ((component as Class)); }; try { return ((getDefinitionByName(getQualifiedClassName(component)) as Class)); } catch(e:Error) { if ((component is UIComponent)){ try { return ((component.loaderInfo.applicationDomain.getDefinition(getQualifiedClassName(component)) as Class)); } catch(e:Error) { }; }; }; return (null); } public static function clearStyle(_arg1:String):void{ setStyle(_arg1, null); } public static function setComponentStyle(_arg1:Object, _arg2:String, _arg3:Object):void{ var _local4:Class; var _local5:Object; _local4 = getClassDef(_arg1); _local5 = getInstance().classToStylesDict[_local4]; if (_local5 == null){ _local5 = (getInstance().classToStylesDict[_local4] = {}); }; if (_local5 == _arg3){ return; }; _local5[_arg2] = _arg3; invalidateComponentStyle(_local4, _arg2); } private static function setSharedStyles(_arg1:UIComponent):void{ var _local2:StyleManager; var _local3:Class; var _local4:Object; var _local5:String; _local2 = getInstance(); _local3 = getClassDef(_arg1); _local4 = _local2.classToDefaultStylesDict[_local3]; for (_local5 in _local4) { _arg1.setSharedStyle(_local5, getSharedStyle(_arg1, _local5)); }; } public static function getComponentStyle(_arg1:Object, _arg2:String):Object{ var _local3:Class; var _local4:Object; _local3 = getClassDef(_arg1); _local4 = getInstance().classToStylesDict[_local3]; return (((_local4)==null) ? null : _local4[_arg2]); } private static function getInstance(){ if (_instance == null){ _instance = new (StyleManager); }; return (_instance); } private static function invalidateComponentStyle(_arg1:Class, _arg2:String):void{ var _local3:Dictionary; var _local4:Object; var _local5:UIComponent; _local3 = getInstance().classToInstancesDict[_arg1]; if (_local3 == null){ return; }; for (_local4 in _local3) { _local5 = (_local4 as UIComponent); if (_local5 == null){ } else { _local5.setSharedStyle(_arg2, getSharedStyle(_local5, _arg2)); }; }; } private static function invalidateStyle(_arg1:String):void{ var _local2:Dictionary; var _local3:Object; _local2 = getInstance().styleToClassesHash[_arg1]; if (_local2 == null){ return; }; for (_local3 in _local2) { invalidateComponentStyle(Class(_local3), _arg1); }; } public static function registerInstance(_arg1:UIComponent):void{ var inst:StyleManager; var classDef:Class; var target:Class; var defaultStyles:Object; var styleToClasses:Object; var n:String; var instance = _arg1; inst = getInstance(); classDef = getClassDef(instance); if (classDef == null){ return; }; if (inst.classToInstancesDict[classDef] == null){ inst.classToInstancesDict[classDef] = new Dictionary(true); target = classDef; while (defaultStyles == null) { if (target["getStyleDefinition"] != null){ defaultStyles = target["getStyleDefinition"](); break; }; try { target = (instance.loaderInfo.applicationDomain.getDefinition(getQualifiedSuperclassName(target)) as Class); } catch(err:Error) { try { target = (getDefinitionByName(getQualifiedSuperclassName(target)) as Class); } catch(e:Error) { defaultStyles = UIComponent.getStyleDefinition(); break; }; }; }; styleToClasses = inst.styleToClassesHash; for (n in defaultStyles) { if (styleToClasses[n] == null){ styleToClasses[n] = new Dictionary(true); }; styleToClasses[n][classDef] = true; }; inst.classToDefaultStylesDict[classDef] = defaultStyles; inst.classToStylesDict[classDef] = {}; }; inst.classToInstancesDict[classDef][instance] = true; setSharedStyles(instance); } public static function getStyle(_arg1:String):Object{ return (getInstance().globalStyles[_arg1]); } private static function getSharedStyle(_arg1:UIComponent, _arg2:String):Object{ var _local3:Class; var _local4:StyleManager; var _local5:Object; _local3 = getClassDef(_arg1); _local4 = getInstance(); _local5 = _local4.classToStylesDict[_local3][_arg2]; if (_local5 != null){ return (_local5); }; _local5 = _local4.globalStyles[_arg2]; if (_local5 != null){ return (_local5); }; return (_local4.classToDefaultStylesDict[_local3][_arg2]); } public static function setStyle(_arg1:String, _arg2:Object):void{ var _local3:Object; _local3 = getInstance().globalStyles; if ((((_local3[_arg1] === _arg2)) && (!((_arg2 is TextFormat))))){ return; }; _local3[_arg1] = _arg2; invalidateStyle(_arg1); } } }//package fl.managers
Section 32
//MochiCoins (mochi.as3.MochiCoins) package mochi.as3 { public class MochiCoins { public static const STORE_HIDE:String = "StoreHide"; public static const LOGGED_IN:String = "LoggedIn"; public static const STORE_ITEMS:String = "StoreItems"; public static const NO_USER:String = "NoUser"; public static const PROPERTIES_SIZE:String = "PropertiesSize"; public static const ITEM_NEW:String = "ItemNew"; public static const USER_INFO:String = "UserInfo"; public static const IO_ERROR:String = "IOError"; public static const ITEM_OWNED:String = "ItemOwned"; public static const PROPERTIES_SAVED:String = "PropertySaved"; public static const WIDGET_LOADED:String = "WidgetLoaded"; public static const ERROR:String = "Error"; public static const LOGGED_OUT:String = "LoggedOut"; public static const PROFILE_SHOW:String = "ProfileShow"; public static const LOGIN_HIDE:String = "LoginHide"; public static const LOGIN_SHOW:String = "LoginShow"; public static const STORE_SHOW:String = "StoreShow"; public static const PROFILE_HIDE:String = "ProfileHide"; private static var _dispatcher:MochiEventDispatcher = new MochiEventDispatcher(); public static function showItem(_arg1:Object=null):void{ if (((!(_arg1)) || (!((typeof(_arg1.item) == "string"))))){ trace("ERROR: showItem call must pass an Object with an item key"); return; }; MochiServices.bringToTop(); MochiServices.send("coins_showItem", {options:_arg1}, null, null); } public static function saveUserProperties(_arg1:Object):void{ MochiServices.send("coins_saveUserProperties", _arg1); } public static function triggerEvent(_arg1:String, _arg2:Object):void{ _dispatcher.triggerEvent(_arg1, _arg2); } public static function showLoginWidget(_arg1:Object=null):void{ MochiServices.setContainer(); MochiServices.bringToTop(); MochiServices.send("coins_showLoginWidget", {options:_arg1}); } public static function getStoreItems():void{ MochiServices.send("coins_getStoreItems"); } public static function getVersion():String{ return (MochiServices.getVersion()); } public static function showStore(_arg1:Object=null):void{ MochiServices.bringToTop(); MochiServices.send("coins_showStore", {options:_arg1}, null, null); } public static function addEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.addEventListener(_arg1, _arg2); } public static function getUserInfo():void{ MochiServices.send("coins_getUserInfo"); } public static function hideLoginWidget():void{ MochiServices.send("coins_hideLoginWidget"); } public static function removeEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.removeEventListener(_arg1, _arg2); } public static function showVideo(_arg1:Object=null):void{ if (((!(_arg1)) || (!((typeof(_arg1.item) == "string"))))){ trace("ERROR: showVideo call must pass an Object with an item key"); return; }; MochiServices.bringToTop(); MochiServices.send("coins_showVideo", {options:_arg1}, null, null); } } }//package mochi.as3
Section 33
//MochiDigits (mochi.as3.MochiDigits) package mochi.as3 { public final class MochiDigits { private var Sibling:MochiDigits; private var Fragment:Number; private var Encoder:Number; public function MochiDigits(_arg1:Number=0, _arg2:uint=0):void{ Encoder = 0; setValue(_arg1, _arg2); } public function set value(_arg1:Number):void{ setValue(_arg1); } public function reencode():void{ var _local1:uint; _local1 = int((2147483647 * Math.random())); Fragment = (Fragment ^ (_local1 ^ Encoder)); Encoder = _local1; } public function toString():String{ var _local1:String; _local1 = String.fromCharCode((Fragment ^ Encoder)); if (Sibling != null){ _local1 = (_local1 + Sibling.toString()); }; return (_local1); } public function get value():Number{ return (Number(this.toString())); } public function setValue(_arg1:Number=0, _arg2:uint=0):void{ var _local3:String; _local3 = _arg1.toString(); var _temp1 = _arg2; _arg2 = (_arg2 + 1); Fragment = (_local3.charCodeAt(_temp1) ^ Encoder); if (_arg2 < _local3.length){ Sibling = new MochiDigits(_arg1, _arg2); } else { Sibling = null; }; reencode(); } public function addValue(_arg1:Number):void{ value = (value + _arg1); } } }//package mochi.as3
Section 34
//MochiEventDispatcher (mochi.as3.MochiEventDispatcher) package mochi.as3 { public class MochiEventDispatcher { private var eventTable:Object; public function MochiEventDispatcher():void{ eventTable = {}; } public function triggerEvent(_arg1:String, _arg2:Object):void{ var _local3:Object; if (eventTable[_arg1] == undefined){ return; }; for (_local3 in eventTable[_arg1]) { var _local6 = eventTable[_arg1]; _local6[_local3](_arg2); }; } public function removeEventListener(_arg1:String, _arg2:Function):void{ var _local3:Object; if (eventTable[_arg1] == undefined){ eventTable[_arg1] = []; return; }; for (_local3 in eventTable[_arg1]) { if (eventTable[_arg1][_local3] != _arg2){ } else { eventTable[_arg1].splice(Number(_local3), 1); }; }; } public function addEventListener(_arg1:String, _arg2:Function):void{ removeEventListener(_arg1, _arg2); eventTable[_arg1].push(_arg2); } } }//package mochi.as3
Section 35
//MochiEvents (mochi.as3.MochiEvents) package mochi.as3 { import flash.display.*; public class MochiEvents { public static const ALIGN_BOTTOM_LEFT:String = "ALIGN_BL"; public static const FORMAT_LONG:String = "LongForm"; public static const ALIGN_BOTTOM:String = "ALIGN_B"; public static const ACHIEVEMENT_RECEIVED:String = "AchievementReceived"; public static const FORMAT_SHORT:String = "ShortForm"; public static const ALIGN_TOP_RIGHT:String = "ALIGN_TR"; public static const ALIGN_BOTTOM_RIGHT:String = "ALIGN_BR"; public static const ALIGN_TOP:String = "ALIGN_T"; public static const ALIGN_LEFT:String = "ALIGN_L"; public static const ALIGN_RIGHT:String = "ALIGN_R"; public static const ALIGN_TOP_LEFT:String = "ALIGN_TL"; public static const ALIGN_CENTER:String = "ALIGN_C"; private static var _dispatcher:MochiEventDispatcher = new MochiEventDispatcher(); private static var gameStart:Number; private static var levelStart:Number; public static function addEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.addEventListener(_arg1, _arg2); } public static function removeEventListener(_arg1:String, _arg2:Function):void{ _dispatcher.removeEventListener(_arg1, _arg2); } public static function startSession(_arg1:String):void{ MochiServices.send("events_beginSession", {achievementID:_arg1}, null, null); } public static function triggerEvent(_arg1:String, _arg2:Object):void{ _dispatcher.triggerEvent(_arg1, _arg2); } public static function setNotifications(_arg1:MovieClip, _arg2:Object):void{ var _local3:Object; var _local4:Object; _local3 = {}; for (_local4 in _arg2) { _local3[_local4] = _arg2[_local4]; }; _local3.clip = _arg1; MochiServices.send("events_setNotifications", _local3, null, null); } public static function endGame():void{ var _local1:Number; _local1 = (new Date().time - gameStart); trigger("end_game", {time:_local1}); } public static function startGame():void{ gameStart = new Date().time; trigger("start_game"); } public static function trigger(_arg1:String, _arg2:Object=null):void{ if (_arg2 == null){ _arg2 = {}; } else { if (_arg2["kind"] != undefined){ trace("WARNING: optional arguements package contains key 'id', it will be overwritten"); _arg2["kind"] = _arg1; }; }; MochiServices.send("events_triggerEvent", {eventObject:_arg2}, null, null); } public static function getVersion():String{ return (MochiServices.getVersion()); } public static function startLevel():void{ levelStart = new Date().time; trigger("start_level"); } public static function endLevel():void{ var _local1:Number; _local1 = (new Date().time - levelStart); trigger("end_level", {time:_local1}); } } }//package mochi.as3
Section 36
//MochiScores (mochi.as3.MochiScores) package mochi.as3 { import flash.display.*; import flash.text.*; public class MochiScores { private static var boardID:String; public static var onErrorHandler:Object; public static var onCloseHandler:Object; public static function showLeaderboard(_arg1:Object=null):void{ var n:Number; var options = _arg1; if (options != null){ delete options.clip; MochiServices.setContainer(); MochiServices.bringToTop(); if (options.name != null){ if ((options.name is TextField)){ if (options.name.text.length > 0){ options.name = options.name.text; }; }; }; if (options.score != null){ if ((options.score is TextField)){ if (options.score.text.length > 0){ options.score = options.score.text; }; } else { if ((options.score is MochiDigits)){ options.score = options.score.value; }; }; n = Number(options.score); if (isNaN(n)){ trace((("ERROR: Submitted score '" + options.score) + "' will be rejected, score is 'Not a Number'")); } else { if ((((n == Number.NEGATIVE_INFINITY)) || ((n == Number.POSITIVE_INFINITY)))){ trace((("ERROR: Submitted score '" + options.score) + "' will be rejected, score is an infinite")); } else { if (Math.floor(n) != n){ trace((("WARNING: Submitted score '" + options.score) + "' will be truncated")); }; options.score = n; }; }; }; if (options.onDisplay != null){ options.onDisplay(); } else { if (MochiServices.clip != null){ if ((MochiServices.clip is MovieClip)){ MochiServices.clip.stop(); } else { trace("Warning: Container is not a MovieClip, cannot call default onDisplay."); }; }; }; } else { options = {}; if ((MochiServices.clip is MovieClip)){ MochiServices.clip.stop(); } else { trace("Warning: Container is not a MovieClip, cannot call default onDisplay."); }; }; if (options.onClose != null){ onCloseHandler = options.onClose; } else { onCloseHandler = function ():void{ if ((MochiServices.clip is MovieClip)){ MochiServices.clip.play(); } else { trace("Warning: Container is not a MovieClip, cannot call default onClose."); }; }; }; if (options.onError != null){ onErrorHandler = options.onError; } else { onErrorHandler = null; }; if (options.boardID == null){ if (MochiScores.boardID != null){ options.boardID = MochiScores.boardID; }; }; MochiServices.warnID(options.boardID, true); trace("[MochiScores] NOTE: Security Sandbox Violation errors below are normal"); MochiServices.send("scores_showLeaderboard", {options:options}, null, onClose); } public static function closeLeaderboard():void{ MochiServices.send("scores_closeLeaderboard"); } public static function getPlayerInfo(_arg1:Object, _arg2:Object=null):void{ MochiServices.send("scores_getPlayerInfo", null, _arg1, _arg2); } public static function requestList(_arg1:Object, _arg2:Object=null):void{ MochiServices.send("scores_requestList", null, _arg1, _arg2); } public static function scoresArrayToObjects(_arg1:Object):Object{ var _local2:Object; var _local3:Number; var _local4:Number; var _local5:Object; var _local6:Object; var _local7:String; var _local8:String; _local2 = {}; for (_local7 in _arg1) { if (typeof(_arg1[_local7]) == "object"){ if (((!((_arg1[_local7].cols == null))) && (!((_arg1[_local7].rows == null))))){ _local2[_local7] = []; _local5 = _arg1[_local7]; _local4 = 0; while (_local4 < _local5.rows.length) { _local6 = {}; _local3 = 0; while (_local3 < _local5.cols.length) { _local6[_local5.cols[_local3]] = _local5.rows[_local4][_local3]; _local3++; }; _local2[_local7].push(_local6); _local4++; }; } else { _local2[_local7] = {}; for (_local8 in _arg1[_local7]) { _local2[_local7][_local8] = _arg1[_local7][_local8]; }; }; } else { _local2[_local7] = _arg1[_local7]; }; }; return (_local2); } public static function submit(_arg1:Number, _arg2:String, _arg3:Object=null, _arg4:Object=null):void{ _arg1 = Number(_arg1); if (isNaN(_arg1)){ trace((("ERROR: Submitted score '" + String(_arg1)) + "' will be rejected, score is 'Not a Number'")); } else { if ((((_arg1 == Number.NEGATIVE_INFINITY)) || ((_arg1 == Number.POSITIVE_INFINITY)))){ trace((("ERROR: Submitted score '" + String(_arg1)) + "' will be rejected, score is an infinite")); } else { if (Math.floor(_arg1) != _arg1){ trace((("WARNING: Submitted score '" + String(_arg1)) + "' will be truncated")); }; _arg1 = Number(_arg1); }; }; MochiServices.send("scores_submit", {score:_arg1, name:_arg2}, _arg3, _arg4); } public static function onClose(_arg1:Object=null):void{ if (((((_arg1) && ((_arg1.error == true)))) && (onErrorHandler))){ if (_arg1.errorCode == null){ _arg1.errorCode = "IOError"; }; onErrorHandler(_arg1.errorCode); MochiServices.doClose(); return; }; onCloseHandler(); MochiServices.doClose(); } public static function setBoardID(_arg1:String):void{ MochiServices.warnID(_arg1, true); MochiScores.boardID = _arg1; MochiServices.send("scores_setBoardID", {boardID:_arg1}); } } }//package mochi.as3
Section 37
//MochiServices (mochi.as3.MochiServices) package mochi.as3 { import flash.display.*; import flash.events.*; import flash.net.*; import flash.system.*; import flash.utils.*; import flash.geom.*; public class MochiServices { private static var _container:Object; private static var _connected:Boolean = false; private static var _swfVersion:String; private static var _preserved:Object; public static var netupAttempted:Boolean = false; private static var _sendChannel:LocalConnection; public static var servicesSync:MochiSync = new MochiSync(); private static var _clip:MovieClip; private static var _id:String; private static var _services:String = "services.swf"; private static var _servURL:String = "http://www.mochiads.com/static/lib/services/"; public static var widget:Boolean = false; private static var _timer:Timer; private static var _sendChannelName:String; private static var _loader:Loader; private static var _connecting:Boolean = false; private static var _mochiLocalConnection:MovieClip; private static var _listenChannelName:String = "__ms_"; public static var onError:Object; public static var netup:Boolean = true; private static var _mochiLC:String = "MochiLC.swf"; public static function isNetworkAvailable():Boolean{ return (!((Security.sandboxType == "localWithFile"))); } public static function get connected():Boolean{ return (_connected); } private static function onReceive(_arg1:Object):void{ var cb:String; var cblst:Object; var method:*; var methodName:String; var obj:Object; var pkg = _arg1; cb = pkg.callbackID; cblst = _clip._callbacks[cb]; if (!cblst){ return; }; method = cblst.callbackMethod; methodName = ""; obj = cblst.callbackObject; if (((obj) && ((typeof(method) == "string")))){ methodName = method; if (obj[method] != null){ method = obj[method]; } else { trace((("Error: Method " + method) + " does not exist.")); }; }; if (method != undefined){ try { method.apply(obj, pkg.args); } catch(error:Error) { trace(((("Error invoking callback method '" + methodName) + "': ") + error.toString())); }; } else { if (obj != null){ try { obj(pkg.args); } catch(error:Error) { trace(("Error invoking method on object: " + error.toString())); }; }; }; delete _clip._callbacks[cb]; } public static function get childClip():Object{ return (_clip); } public static function send(_arg1:String, _arg2:Object=null, _arg3:Object=null, _arg4:Object=null):void{ if (_connected){ _mochiLocalConnection.send(_sendChannelName, "onReceive", {methodName:_arg1, args:_arg2, callbackID:_clip._nextcallbackID}); } else { if ((((_clip == null)) || (!(_connecting)))){ trace(("Error: MochiServices not connected. Please call MochiServices.connect(). Function: " + _arg1)); handleError(_arg2, _arg3, _arg4); flush(true); return; }; _clip._queue.push({methodName:_arg1, args:_arg2, callbackID:_clip._nextcallbackID}); }; if (_clip != null){ if (((!((_clip._callbacks == null))) && (!((_clip._nextcallbackID == null))))){ _clip._callbacks[_clip._nextcallbackID] = {callbackObject:_arg3, callbackMethod:_arg4}; _clip._nextcallbackID++; }; }; } private static function init(_arg1:String, _arg2:Object):void{ _id = _arg1; if (_arg2 != null){ _container = _arg2; loadCommunicator(_arg1, _container); }; } private static function clickMovie(_arg1:String, _arg2:Function):MovieClip{ var _local3:Array; var _local4:int; var _local5:Array; var _local6:Array; var _local7:MovieClip; var _local8:LocalConnection; var _local9:String; var _local10:ByteArray; var _local11:ByteArray; var _local12:uint; var _local13:uint; var _local14:Loader; _local3 = [150, 21, 0, 7, 1, 0, 0, 0, 0, 98, 116, 110, 0, 7, 2, 0, 0, 0, 0, 116, 104, 105, 115, 0, 28, 150, 22, 0, 0, 99, 114, 101, 97, 116, 101, 69, 109, 112, 116, 121, 77, 111, 118, 105, 101, 67, 108, 105, 112, 0, 82, 135, 1, 0, 0, 23, 150, 13, 0, 4, 0, 0, 111, 110, 82, 101, 108, 101, 97, 115, 101, 0, 142, 8, 0, 0, 0, 0, 2, 42, 0, 114, 0, 150, 17, 0, 0, 32, 0, 7, 1, 0, 0, 0, 8, 0, 0, 115, 112, 108, 105, 116, 0, 82, 135, 1, 0, 1, 23, 150, 7, 0, 4, 1, 7, 0, 0, 0, 0, 78, 150, 8, 0, 0, 95, 98, 108, 97, 110, 107, 0, 154, 1, 0, 0, 150, 7, 0, 0, 99, 108, 105, 99, 107, 0, 150, 7, 0, 4, 1, 7, 1, 0, 0, 0, 78, 150, 27, 0, 7, 2, 0, 0, 0, 7, 0, 0, 0, 0, 0, 76, 111, 99, 97, 108, 67, 111, 110, 110, 101, 99, 116, 105, 111, 110, 0, 64, 150, 6, 0, 0, 115, 101, 110, 100, 0, 82, 79, 150, 15, 0, 4, 0, 0, 95, 97, 108, 112, 104, 97, 0, 7, 0, 0, 0, 0, 79, 150, 23, 0, 7, 0xFF, 0, 0xFF, 0, 7, 1, 0, 0, 0, 4, 0, 0, 98, 101, 103, 105, 110, 70, 105, 108, 108, 0, 82, 23, 150, 25, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 2, 0, 0, 0, 4, 0, 0, 109, 111, 118, 101, 84, 111, 0, 82, 23, 150, 25, 0, 7, 100, 0, 0, 0, 7, 0, 0, 0, 0, 7, 2, 0, 0, 0, 4, 0, 0, 108, 105, 110, 101, 84, 111, 0, 82, 23, 150, 25, 0, 7, 100, 0, 0, 0, 7, 100, 0, 0, 0, 7, 2, 0, 0, 0, 4, 0, 0, 108, 105, 110, 101, 84, 111, 0, 82, 23, 150, 25, 0, 7, 0, 0, 0, 0, 7, 100, 0, 0, 0, 7, 2, 0, 0, 0, 4, 0, 0, 108, 105, 110, 101, 84, 111, 0, 82, 23, 150, 25, 0, 7, 0, 0, 0, 0, 7, 0, 0, 0, 0, 7, 2, 0, 0, 0, 4, 0, 0, 108, 105, 110, 101, 84, 111, 0, 82, 23, 150, 16, 0, 7, 0, 0, 0, 0, 4, 0, 0, 101, 110, 100, 70, 105, 108, 108, 0, 82, 23]; _local5 = [104, 0, 31, 64, 0, 7, 208, 0, 0, 12, 1, 0, 67, 2, 0xFF, 0xFF, 0xFF, 63, 3]; _local6 = [0, 64, 0, 0, 0]; _local7 = new MovieClip(); _local8 = new LocalConnection(); _local9 = ((("_click_" + Math.floor((Math.random() * 999999))) + "_") + Math.floor(new Date().time)); _local8 = new LocalConnection(); _local7.lc = _local8; _local7.click = _arg2; _local8.client = _local7; _local8.connect(_local9); _local10 = new ByteArray(); _local11 = new ByteArray(); _local11.endian = Endian.LITTLE_ENDIAN; _local11.writeShort(1); _local11.writeUTFBytes(((_arg1 + " ") + _local9)); _local11.writeByte(0); _local12 = ((_local3.length + _local11.length) + 4); _local13 = (_local12 + 35); _local10.endian = Endian.LITTLE_ENDIAN; _local10.writeUTFBytes("FWS"); _local10.writeByte(8); _local10.writeUnsignedInt(_local13); for each (_local4 in _local5) { _local10.writeByte(_local4); }; _local10.writeUnsignedInt(_local12); _local10.writeByte(136); _local10.writeShort(_local11.length); _local10.writeBytes(_local11); for each (_local4 in _local3) { _local10.writeByte(_local4); }; for each (_local4 in _local6) { _local10.writeByte(_local4); }; _local14 = new Loader(); _local14.loadBytes(_local10); _local7.addChild(_local14); return (_local7); } public static function stayOnTop():void{ _container.addEventListener(Event.ENTER_FRAME, MochiServices.bringToTop, false, 0, true); if (_clip != null){ _clip.visible = true; }; } public static function addLinkEvent(_arg1:String, _arg2:String, _arg3:DisplayObjectContainer, _arg4:Function=null):void{ var vars:Object; var avm1Click:DisplayObject; var s:String; var i:Number; var x:String; var req:URLRequest; var loader:Loader; var setURL:Function; var err:Function; var complete:Function; var url = _arg1; var burl = _arg2; var btn = _arg3; var onClick = _arg4; vars = new Object(); vars["mav"] = getVersion(); vars["swfv"] = "9"; vars["swfurl"] = btn.loaderInfo.loaderURL; vars["fv"] = Capabilities.version; vars["os"] = Capabilities.os; vars["lang"] = Capabilities.language; vars["scres"] = ((Capabilities.screenResolutionX + "x") + Capabilities.screenResolutionY); s = "?"; i = 0; for (x in vars) { if (i != 0){ s = (s + "&"); }; i = (i + 1); s = (((s + x) + "=") + escape(vars[x])); }; req = new URLRequest("http://x.mochiads.com/linkping.swf"); loader = new Loader(); setURL = function (_arg1:String):void{ var _local2:Rectangle; if (avm1Click){ btn.removeChild(avm1Click); }; avm1Click = clickMovie(_arg1, onClick); _local2 = btn.getBounds(btn); btn.addChild(avm1Click); avm1Click.x = _local2.x; avm1Click.y = _local2.y; avm1Click.scaleX = (0.01 * _local2.width); avm1Click.scaleY = (0.01 * _local2.height); }; err = function (_arg1:Object):void{ netup = false; _arg1.target.removeEventListener(_arg1.type, arguments.callee); setURL(burl); }; complete = function (_arg1:Object):void{ _arg1.target.removeEventListener(_arg1.type, arguments.callee); }; if (netup){ setURL((url + s)); } else { setURL(burl); }; if (!((netupAttempted) || (_connected))){ netupAttempted = true; loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, err); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, complete); loader.load(req); }; } public static function warnID(_arg1:String, _arg2:Boolean):void{ var _local3:Number; _arg1 = _arg1.toLowerCase(); if (_arg1.length != 16){ trace((("WARNING: " + (_arg2) ? "board" : "game") + " ID is not the appropriate length")); return; } else { if (_arg1 == "1e113c7239048b3f"){ if (_arg2){ trace("WARNING: Using testing board ID"); } else { trace("WARNING: Using testing board ID as game ID"); }; return; } else { if (_arg1 == "84993a1de4031cd8"){ if (_arg2){ trace("WARNING: Using testing game ID as board ID"); } else { trace("WARNING: Using testing game ID"); }; return; }; }; }; _local3 = 0; while (_local3 < _arg1.length) { switch (_arg1.charAt(_local3)){ case "0": case "1": case "2": case "3": case "4": case "5": case "6": case "7": case "8": case "9": case "a": case "b": case "c": case "d": case "e": case "f": break; default: trace(("WARNING: Board ID contains illegal characters: " + _arg1)); return; }; _local3++; }; } public static function disconnect():void{ if (((_connected) || (_connecting))){ if (_clip != null){ if (_clip.parent != null){ if ((_clip.parent is Sprite)){ Sprite(_clip.parent).removeChild(_clip); _clip = null; }; }; }; _connecting = (_connected = false); flush(true); try { _mochiLocalConnection.close(); } catch(error:Error) { }; }; if (_timer != null){ try { _timer.stop(); } catch(error:Error) { }; }; } public static function allowDomains(_arg1:String):String{ var _local2:String; if (Security.sandboxType != "application"){ Security.allowDomain("*"); Security.allowInsecureDomain("*"); }; if (_arg1.indexOf("http://") != -1){ _local2 = _arg1.split("/")[2].split(":")[0]; if (Security.sandboxType != "application"){ Security.allowDomain(_local2); Security.allowInsecureDomain(_local2); }; }; return (_local2); } public static function getVersion():String{ return ("3.2 as3"); } public static function doClose():void{ _container.removeEventListener(Event.ENTER_FRAME, MochiServices.bringToTop); } private static function flush(_arg1:Boolean):void{ var _local2:Object; var _local3:Object; if (((_clip) && (_clip._queue))){ while (_clip._queue.length > 0) { _local2 = _clip._queue.shift(); _local3 = null; if (_local2 != null){ if (_local2.callbackID != null){ _local3 = _clip._callbacks[_local2.callbackID]; }; delete _clip._callbacks[_local2.callbackID]; if (((_arg1) && (!((_local3 == null))))){ handleError(_local2.args, _local3.callbackObject, _local3.callbackMethod); }; }; }; }; } public static function get id():String{ return (_id); } private static function onEvent(_arg1:Object):void{ var _local2:String; var _local3:String; _local2 = _arg1.target; _local3 = _arg1.event; switch (_local2){ case "events": MochiEvents.triggerEvent(_arg1.event, _arg1.args); break; case "coins": MochiCoins.triggerEvent(_arg1.event, _arg1.args); break; case "sync": servicesSync.triggerEvent(_arg1.event, _arg1.args); break; }; } private static function urlOptions(_arg1:Object):Object{ var _local2:Object; var _local3:String; var _local4:Array; var _local5:Number; var _local6:Array; _local2 = {}; _local3 = _arg1.loaderInfo.parameters.mochiad_options; if (_local3){ _local4 = _local3.split("&"); _local5 = 0; while (_local5 < _local4.length) { _local6 = _local4[_local5].split("="); _local2[unescape(_local6[0])] = unescape(_local6[1]); _local5++; }; }; return (_local2); } public static function setContainer(_arg1:Object=null, _arg2:Boolean=true):void{ if (_arg1 != null){ if ((_arg1 is Sprite)){ _container = _arg1; }; }; if (_arg2){ if ((_container is Sprite)){ Sprite(_container).addChild(_clip); }; }; } private static function handleError(_arg1:Object, _arg2:Object, _arg3:Object):void{ var args = _arg1; var callbackObject = _arg2; var callbackMethod = _arg3; if (args != null){ if (args.onError != null){ args.onError.apply(null, ["NotConnected"]); }; if (((!((args.options == null))) && (!((args.options.onError == null))))){ args.options.onError.apply(null, ["NotConnected"]); }; }; if (callbackMethod != null){ args = {}; args.error = true; args.errorCode = "NotConnected"; if (((!((callbackObject == null))) && ((callbackMethod is String)))){ try { var _local5 = callbackObject; _local5[callbackMethod](args); } catch(error:Error) { }; } else { if (callbackMethod != null){ try { callbackMethod.apply(args); } catch(error:Error) { }; }; }; }; } private static function loadError(_arg1:Object):void{ _clip._mochiad_ctr_failed = true; trace("MochiServices could not load."); MochiServices.disconnect(); MochiServices.onError("IOError"); } private static function initComChannels():void{ if (!_connected){ trace("[SERVICES_API] connected!"); _connecting = false; _connected = true; _mochiLocalConnection.send(_sendChannelName, "onReceive", {methodName:"handshakeDone"}); _mochiLocalConnection.send(_sendChannelName, "onReceive", {methodName:"registerGame", preserved:_preserved, id:_id, clip:_container, version:getVersion(), parentURL:_container.loaderInfo.loaderURL}); _clip.onReceive = onReceive; _clip.onEvent = onEvent; _clip.onError = function ():void{ MochiServices.onError("IOError"); }; while (_clip._queue.length > 0) { _mochiLocalConnection.send(_sendChannelName, "onReceive", _clip._queue.shift()); }; }; } private static function loadLCBridge(_arg1:Object):void{ var loader:Loader; var mochiLCURL:String; var req:URLRequest; var complete:Function; var clip = _arg1; loader = new Loader(); mochiLCURL = (_servURL + _mochiLC); req = new URLRequest(mochiLCURL); complete = function (_arg1:Object):void{ _mochiLocalConnection = MovieClip(loader.content); listen(); }; loader.contentLoaderInfo.addEventListener(Event.COMPLETE, complete); loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, loadError); loader.load(req); clip.addChild(loader); } private static function listen():void{ _mochiLocalConnection.connect(_listenChannelName); _clip.handshake = function (_arg1:Object):void{ MochiServices.comChannelName = _arg1.newChannel; }; trace("Waiting for MochiAds services to connect..."); } public static function get clip():Object{ return (_container); } public static function set comChannelName(_arg1:String):void{ if (_arg1 != null){ if (_arg1.length > 3){ _sendChannelName = (_arg1 + "_fromgame"); initComChannels(); }; }; } private static function loadCommunicator(_arg1:String, _arg2:Object):MovieClip{ var _local3:String; var _local4:String; var _local5:URLRequest; var _local6:URLVariables; _local3 = ("_mochiservices_com_" + _arg1); if (_clip != null){ return (_clip); }; if (!MochiServices.isNetworkAvailable()){ return (null); }; if (urlOptions(_arg2).servURL){ _servURL = urlOptions(_arg2).servURL; }; _local4 = (_servURL + _services); if (urlOptions(_arg2).servicesURL){ _local4 = urlOptions(_arg2).servicesURL; }; _listenChannelName = (_listenChannelName + ((Math.floor(new Date().time) + "_") + Math.floor((Math.random() * 99999)))); MochiServices.allowDomains(_local4); _clip = createEmptyMovieClip(_arg2, _local3, 10336, false); loadLCBridge(_clip); _loader = new Loader(); _loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, loadError); _local5 = new URLRequest(_local4); _local6 = new URLVariables(); _local6.listenLC = _listenChannelName; _local6.mochiad_options = _arg2.loaderInfo.parameters.mochiad_options; _local6.api_version = getVersion(); if (widget){ _local6.widget = true; }; _local5.data = _local6; _loader.load(_local5); _clip.addChild(_loader); _clip._mochiservices_com = _loader; _sendChannel = new LocalConnection(); _clip._queue = []; _clip._nextcallbackID = 0; _clip._callbacks = {}; _timer = new Timer(10000, 1); _timer.addEventListener(TimerEvent.TIMER, connectWait); _timer.start(); return (_clip); } public static function connect(_arg1:String, _arg2:Object, _arg3:Object=null):void{ var id = _arg1; var clip = _arg2; var onError = _arg3; warnID(id, false); if ((clip is DisplayObject)){ if (((!(_connected)) && ((_clip == null)))){ trace("MochiServices Connecting..."); _connecting = true; init(id, clip); }; } else { trace("Error, MochiServices requires a Sprite, Movieclip or instance of the stage."); }; if (onError != null){ MochiServices.onError = onError; } else { if (MochiServices.onError == null){ MochiServices.onError = function (_arg1:String):void{ trace(_arg1); }; }; }; } public static function createEmptyMovieClip(_arg1:Object, _arg2:String, _arg3:Number, _arg4:Boolean=true):MovieClip{ var mc:MovieClip; var parent = _arg1; var name = _arg2; var depth = _arg3; var doAdd = _arg4; mc = new MovieClip(); if (doAdd){ if (((false) && (depth))){ parent.addChildAt(mc, depth); } else { parent.addChild(mc); }; }; try { parent[name] = mc; } catch(e:Error) { throw (new Error("MochiServices requires a clip that is an instance of a dynamic class. If your class extends Sprite or MovieClip, you must make it dynamic.")); }; mc["_name"] = name; return (mc); } public static function bringToTop(_arg1:Event=null):void{ var e = _arg1; if (((!((MochiServices.clip == null))) && (!((MochiServices.childClip == null))))){ try { if (MochiServices.clip.numChildren > 1){ MochiServices.clip.setChildIndex(MochiServices.childClip, (MochiServices.clip.numChildren - 1)); }; } catch(errorObject:Error) { trace("Warning: Depth sort error."); _container.removeEventListener(Event.ENTER_FRAME, MochiServices.bringToTop); }; }; } public static function connectWait(_arg1:TimerEvent):void{ if (!_connected){ _clip._mochiad_ctr_failed = true; trace("MochiServices could not load. (timeout)"); MochiServices.disconnect(); MochiServices.onError("IOError"); }; } } }//package mochi.as3
Section 38
//MochiSync (mochi.as3.MochiSync) package mochi.as3 { import flash.utils.*; public dynamic class MochiSync extends Proxy { private var _syncContainer:Object; public static var SYNC_PROPERTY:String = "UpdateProperty"; public static var SYNC_REQUEST:String = "SyncRequest"; public function MochiSync():void{ _syncContainer = {}; } public function triggerEvent(_arg1:String, _arg2:Object):void{ switch (_arg1){ case SYNC_REQUEST: MochiServices.send("sync_syncronize", _syncContainer); break; case SYNC_PROPERTY: _syncContainer[_arg2.name] = _arg2.value; break; }; } override "http://www.adobe.com/2006/actionscript/flash/proxy"?? function getProperty(_arg1){ return (_syncContainer[_arg1]); } override "http://www.adobe.com/2006/actionscript/flash/proxy"?? function setProperty(_arg1, _arg2):void{ var _local3:String; if (_syncContainer[_arg1] == _arg2){ return; }; _local3 = _arg1.toString(); _syncContainer[_local3] = _arg2; MochiServices.send("sync_propUpdate", {name:_local3, value:_arg2}); } } }//package mochi.as3
Section 39
//animatemouth_42 (WordSmith_fla.animatemouth_42) package WordSmith_fla { import flash.display.*; public dynamic class animatemouth_42 extends MovieClip { public function animatemouth_42(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package WordSmith_fla
Section 40
//base_14 (WordSmith_fla.base_14) package WordSmith_fla { import flash.display.*; public dynamic class base_14 extends MovieClip { public var playbtn:MovieClip; public var scoresbtn:MovieClip; } }//package WordSmith_fla
Section 41
//combometer_93 (WordSmith_fla.combometer_93) package WordSmith_fla { import flash.display.*; public dynamic class combometer_93 extends MovieClip { public var bar:MovieClip; public var m:MovieClip; } }//package WordSmith_fla
Section 42
//cooliologoanimate_4 (WordSmith_fla.cooliologoanimate_4) package WordSmith_fla { import flash.display.*; public dynamic class cooliologoanimate_4 extends MovieClip { public function cooliologoanimate_4(){ addFrameScript(127, frame128); } function frame128(){ stop(); } } }//package WordSmith_fla
Section 43
//fadeout_61 (WordSmith_fla.fadeout_61) package WordSmith_fla { import flash.display.*; public dynamic class fadeout_61 extends MovieClip { public function fadeout_61(){ addFrameScript(19, frame20); } function frame20(){ stop(); } } }//package WordSmith_fla
Section 44
//fullscorescore_54 (WordSmith_fla.fullscorescore_54) package WordSmith_fla { import flash.display.*; import flash.text.*; public dynamic class fullscorescore_54 extends MovieClip { public var finalscore:TextField; public function fullscorescore_54(){ addFrameScript(0, frame1, 17, frame18); } function frame18(){ stop(); } function frame1(){ stop(); } } }//package WordSmith_fla
Section 45
//gameoverscreen_52 (WordSmith_fla.gameoverscreen_52) package WordSmith_fla { import flash.display.*; public dynamic class gameoverscreen_52 extends MovieClip { public function gameoverscreen_52(){ addFrameScript(44, frame45); } function frame45(){ stop(); } } }//package WordSmith_fla
Section 46
//head_36 (WordSmith_fla.head_36) package WordSmith_fla { import flash.display.*; public dynamic class head_36 extends MovieClip { public var eye2:MovieClip; public var eye1:MovieClip; } }//package WordSmith_fla
Section 47
//MainTimeline (WordSmith_fla.MainTimeline) package WordSmith_fla { import flash.display.*; import flash.events.*; import flash.text.*; import flash.net.*; import flash.system.*; import flash.utils.*; import mochi.as3.*; import flash.media.*; import flash.ui.*; import flash.geom.*; import adobe.utils.*; import flash.accessibility.*; import flash.errors.*; import flash.external.*; import flash.filters.*; import flash.printing.*; import flash.xml.*; public dynamic class MainTimeline extends MovieClip { public var my_menu:ContextMenu; public var lvl; public var clicked; public var fstep; public var startX; public var startY; public var zoomin:MovieClip; public var minL; public var letterArr; public var cd; public var dF; public var i; public var j; public var k; public var o:Object; public var ct:Tile; public var l; public var t:Tile; public var fword; public var lvlc; public var currentProf; public var finished; public var comboL; public var cinc; public var list; public var g2; public var programmed; public var ctimer; public var usedWords2:Array; public var clicked2; public var usedWords:Array; public var clicked3; public var letters; public var carry; public var holdArr:Array; public var submitted; public var startprofx; public var typGame; public var stringL1; public var stringL0; public var smc:MovieClip; public var cdown2; public var cdown3; public var tArr; public var _mochiads_game_id:String; public var empty; public var fullscore; public var consts; public var lvlend; public var ls; public var deleting2; public var comboshow; public var combo; public var carryZZ; public var o2:Object; public var holder:MovieClip; public var cTile; public var tWidth; public var showscore; public var mainS; public var lastlvl; public var boardID2:String; public var rows; public var q1; public var q2; public var q3; public var vhand; public var cencore; public var st2:SoundTransform; public var carryZZ2; public var scorevalue:TextField; public var coolio:MovieClip; public var sc:SoundChannel; public var mwords:Array; public var randTiles:Array; public var st:SoundTransform; public var mochiscores:MovieClip; public var interf2; public var sx2; public var sx1; public var boardID:String; public var sy2; public var ltiles; public var score; public var sy1; public var wordsD; public var qua; public var startX2; public var startX3; public var startXA; public var played; public var menuS; public var startY2; public var finalscore:MovieClip; public var cols; public var startY3; public var zoomin2:MovieClip; public var pauseGame; public var ws; public var vowels; public var interf; public var fullscore2; public var dict2; public var dict3:Array; public var dict4:Array; public var dict5:Array; public var dict6:Array; public var submitbtn:MovieClip; public var timer; public var dict7:Array; public var chand; public var holdT; public var cdown; public var hurried; public var scoremc:MovieClip; public var deleting; public var copyright; public var aSpots:Array; public var sc2:SoundChannel; public var prof1:MovieClip; public var prof2; public var prof3; public var prof4; public function MainTimeline(){ addFrameScript(0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6); } public function showAvailable(){ aSpots = new Array(); k = 0; while (k < rows) { aSpots[k] = new Array(); l = 0; while (l < cols) { letterArr[k][l][1].ashine.alpha = 0; aSpots[k][l] = false; l++; }; k++; }; if (ct.typ.currentFrame == 3){ k = 0; while (k < rows) { l = 0; while (l < cols) { if (letterArr[k][l][0] != ""){ letterArr[k][l][1].ashine.alpha = 1; aSpots[k][l] = true; checkSpot((k - 1), l, false); checkSpot((k + 1), l, false); checkSpot(k, (l - 1), false); checkSpot(k, (l + 1), false); }; l++; }; k++; }; } else { if (ct.typ.currentFrame == 6){ k = 0; while (k < rows) { l = 0; while (l < cols) { if (letterArr[k][l][1].shine.visible){ checkSpot(k, l, true); checkSpot((k - 1), l, true); checkSpot((k + 1), l, true); checkSpot(k, (l - 1), true); checkSpot(k, (l + 1), true); }; l++; }; k++; }; } else { if (ct.typ.currentFrame == 7){ k = 0; while (k < rows) { l = 0; while (l < cols) { if (letterArr[k][l][1].shine.visible){ checkSpot(k, l, true); checkSpot((k - 1), l, true); checkSpot((k + 1), l, true); checkSpot(k, (l - 1), true); checkSpot(k, (l + 1), true); checkSpot((k - 2), l, true); checkSpot((k + 2), l, true); checkSpot(k, (l - 2), true); checkSpot(k, (l + 2), true); checkSpot((k - 1), (l - 1), true); checkSpot((k + 1), (l - 1), true); checkSpot((k + 1), (l + 1), true); checkSpot((k - 1), (l + 1), true); }; l++; }; k++; }; } else { k = 0; while (k < rows) { l = 0; while (l < cols) { if (letterArr[k][l][0] != ""){ checkSpot((k - 1), l, false); checkSpot((k + 1), l, false); checkSpot(k, (l - 1), false); checkSpot(k, (l + 1), false); aSpots[k][l] = false; }; l++; }; k++; }; }; }; }; } public function randomConst(){ var _local1:*; while (true) { _local1 = ltiles[Math.floor((Math.random() * ltiles.length))]; if (((((((((!((_local1 == "A"))) && (!((_local1 == "E"))))) && (!((_local1 == "I"))))) && (!((_local1 == "O"))))) && (!((_local1 == "U"))))){ return (_local1); }; }; } function frame3(){ stop(); stage.addEventListener(MouseEvent.MOUSE_DOWN, mdown1); stage.addEventListener(MouseEvent.MOUSE_UP, mup1); clicked2 = false; cdown2 = false; menuS = new MenuSong(); sc = menuS.play(0, 100); st = sc.soundTransform; st.volume = 0.7; sc.soundTransform = st; o = {n:[14, 12, 14, 6, 10, 3, 8, 10, 12, 5, 4, 2, 5, 10, 13, 1], f:function (_arg1:Number, _arg2:String):String{ if (_arg2.length == 16){ return (_arg2); }; return (this.f((_arg1 + 1), (_arg2 + this.n[_arg1].toString(16)))); }}; boardID = o.f(0, ""); stage.addEventListener(Event.ENTER_FRAME, enterframe3); } function frame4(){ mainS = new MainSong(); sc2 = mainS.play(0, 500); st2 = sc2.soundTransform; st2.volume = 0.3; sc2.soundTransform = st2; stop(); dict3 = new Array(); dict4 = new Array(); dict5 = new Array(); dict6 = new Array(); dict7 = new Array(); dict2 = new Array("abandon", "dropout", "drywall", "encrypt", "endless", "enslave", "entitle", "fascism", "fateful", "garbage", "garnish", "goliath", "harpoon", "hatchel", "healthy", "journey", "mapping", "octagon", "odorous", "offense", "perplex", "refined", "roughly", "shoebox", "synonym", "tiredly", "tombola", "tonight", "topical", "totaled", "vacancy", "valiant", "borscht", "careful", "implore", "incense", "kneecap", "maestro", "magical", "nothing"); dF = 0; rows = 7; cols = 7; tWidth = 38; startXA = 60; startX = (110 + startXA); startY = 120; comboL = 1; score = 0; interf = new Interf(); list = new listWords(); scorevalue.text = "0"; stage.addChild(list); list.x = -10000; interf.z.visible = false; interf2 = new Interf2(); stage.addChild(interf); stage.addChild(interf2); showscore = 0; startprofx = 6; startX2 = (122 + startXA); startY2 = 410; startX3 = (98 + startXA); startY3 = 190; letterArr = new Array(); holdT = 6; vowels = 0; consts = 0; clicked = false; randTiles = new Array(); combo = 0; comboshow = 0; cinc = 1.6; typGame = 0; lvlc = false; stringL0 = ""; stringL1 = ""; ctimer = 0; i = 0; while (i < rows) { letterArr[i] = new Array(); j = 0; while (j < cols) { t = new Tile(); stage.addChild(t); t.x = ((i * tWidth) + startX); t.y = ((j * tWidth) + startY); t.shade.visible = false; if ((((i == 2)) && ((j == 2)))){ t.letter.text = randomVowel(); } else { if ((((i == 4)) && ((j == 2)))){ t.letter.text = randomVowel(); } else { if ((((i == 2)) && ((j == 4)))){ t.letter.text = randomVowel(); } else { if ((((i == 4)) && ((j == 4)))){ t.letter.text = randomVowel(); } else { t.letter.text = ""; }; }; }; }; letterArr[i][j] = new Array(t.letter.text, t); j++; }; i++; }; ltiles = new Array("A", "A", "A", "A", "A", "A", "A", "E", "E", "E", "E", "E", "E", "E", "E", "E", "O", "O", "O", "O", "O", "O", "R", "R", "R", "R", "R", "R", "N", "N", "N", "N", "N", "N", "T", "T", "T", "T", "T", "T", "L", "L", "L", "L", "S", "S", "S", "S", "U", "U", "U", "U", "D", "D", "D", "D", "G", "G", "G", "B", "B", "M", "M", "P", "P", "C", "C", "F", "F", "H", "H", "W", "W", "V", "V", "Y", "Y", "K", "J", "X", "Z", "Q"); letters = new Array("A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"); lvl = 0; lvlend = 0; minL = 2; g2 = 0; wordsD = 0; deleting = false; holdArr = new Array(); createHand(); ct = new Tile(); stage.addChild(ct); ct.visible = false; ct.scaleX = (ct.scaleY = 1.1); ct.shade.visible = true; carry = false; stage.addEventListener(MouseEvent.MOUSE_DOWN, mdown); stage.addEventListener(MouseEvent.MOUSE_UP, mup); cdown = false; stage.addEventListener(Event.ENTER_FRAME, enterframe); fword = 0; tArr = new Array(); ls = 0; cd = false; mwords = new Array(); prof1.x = (prof1.x + startprofx); usedWords = new Array(); usedWords2 = new Array(); carryZZ = false; carryZZ2 = 0; sx1 = prof1.prof.head.eye1.x; sy1 = prof1.prof.head.eye1.y; sx2 = prof1.prof.head.eye2.x; sy2 = prof1.prof.head.eye2.y; chand = 0; vhand = 0; prof1.visible = false; prof2 = new Prof2(); stage.addChild(prof2); prof2.x = (4.15 + startprofx); prof2.y = 219.5; currentProf = new Array(prof2, 290); played = false; timer = 0; deleting2 = false; pauseGame = false; prof3 = false; prof4 = false; lastlvl = lvl; cencore = 1; hurried = false; finished = false; fstep = 0; } function frame5(){ fullscore = scorevalue.text; trace(fullscore); fullscore2 = 0; finalscore.finalscore.text = ""; o2 = {n:[14, 12, 14, 6, 10, 3, 8, 10, 12, 5, 4, 2, 5, 10, 13, 1], f:function (_arg1:Number, _arg2:String):String{ if (_arg2.length == 16){ return (_arg2); }; return (this.f((_arg1 + 1), (_arg2 + this.n[_arg1].toString(16)))); }}; boardID2 = o2.f(0, ""); submitted = false; stage.addEventListener(Event.ENTER_FRAME, enterframe2); stop(); stage.addEventListener(MouseEvent.MOUSE_DOWN, mdown3); stage.addEventListener(MouseEvent.MOUSE_UP, mup3); clicked3 = false; cdown3 = false; } function frame1(){ _mochiads_game_id = "a28ff3052836b410"; MochiServices.connect("a28ff3052836b410", mochiscores); } function frame2(){ my_menu = new ContextMenu(); my_menu.hideBuiltInItems(); programmed = new ContextMenuItem("Author - Coolio-Niato"); copyright = new ContextMenuItem("(C) Copyright 2009"); copyright.enabled = false; programmed.separatorBefore = true; qua = new ContextMenuItem("(Q) Quality"); qua.enabled = false; qua.separatorBefore = true; q1 = new ContextMenuItem("Low"); q2 = new ContextMenuItem("Medium"); q3 = new ContextMenuItem("High"); programmed.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, openLink); q1.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, qC0); q2.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, qC1); q3.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT, qC2); my_menu.customItems.push(copyright, programmed, qua, q1, q2, q3); contextMenu = my_menu; stop(); stage.addEventListener(Event.ENTER_FRAME, enterframe5); stop(); } public function qC0(_arg1:ContextMenuEvent):void{ stage.quality = "LOW"; } public function qC1(_arg1:ContextMenuEvent):void{ stage.quality = "MEDIUM"; } public function qC2(_arg1:ContextMenuEvent):void{ stage.quality = "HIGH"; } function frame6(){ st2.volume = 0; sc2.soundTransform = st2; gotoAndStop(2); } public function checkDiag(_arg1, _arg2){ var _local3:*; var _local4:*; var _local5:*; var _local6:*; var _local7:*; var _local8:*; i = _arg1; while (i >= 0) { if (((_arg2 - _arg1) + i) >= 0){ if (letterArr[i][((_arg2 - _arg1) + i)][0] != ""){ _local3 = i; _local5 = ((_arg2 - _arg1) + i); } else { break; }; } else { break; }; i--; }; i = _arg1; while (i < rows) { if (((_arg2 - _arg1) + i) < cols){ if (letterArr[i][((_arg2 - _arg1) + i)][0] != ""){ _local4 = i; _local6 = ((_arg2 - _arg1) + i); } else { break; }; }; i++; }; _local7 = ""; i = _local3; while (i <= _local4) { _local7 = (_local7 + letterArr[i][((_local5 + i) - _local3)][0]); i++; }; _local8 = createWords(_local7, (_arg1 - _local3)); if (_local8[0] != ""){ return (new Array(_local8[0], _local8[1], _local8[2], _local3, _local5)); }; return (new Array("")); } public function enterframe3(_arg1){ if (zoomin.base.playbtn.hitTestPoint(stage.mouseX, stage.mouseY, true)){ zoomin.base.playbtn.gotoAndStop(2); if (clicked2){ if (zoomin.currentFrame <= 29){ zoomin.gotoAndPlay(30); }; }; } else { zoomin.base.playbtn.gotoAndStop(1); }; if (zoomin.base.scoresbtn.hitTestPoint(stage.mouseX, stage.mouseY, true)){ zoomin.base.scoresbtn.gotoAndStop(2); if (clicked2){ if (zoomin.currentFrame <= 29){ MochiScores.showLeaderboard({boardID:boardID}); }; }; } else { zoomin.base.scoresbtn.gotoAndStop(1); }; if (currentFrame == 3){ if (zoomin.currentFrame > 29){ st.volume = ((47 - zoomin.currentFrame) / 18); sc.soundTransform = st; }; if (zoomin.currentFrame == 47){ stage.removeEventListener(MouseEvent.MOUSE_DOWN, mdown1); stage.removeEventListener(MouseEvent.MOUSE_UP, mup1); stage.removeEventListener(Event.ENTER_FRAME, enterframe3); nextFrame(); }; }; } public function enterframe5(_arg1){ if (coolio.currentFrame == 128){ stage.removeEventListener(Event.ENTER_FRAME, enterframe5); nextFrame(); }; } public function enterframe2(_arg1){ var _local2:*; var _local3:*; var _local4:*; if (currentFrame == 5){ if (finalscore.currentFrame == 1){ _local2 = (fullscore / 90); if (scoremc.currentFrame == 45){ _local2 = (_local2 + (_local2 / 5)); _local3 = false; if (fullscore2 < fullscore){ fullscore2 = (fullscore2 + _local2); } else { fullscore2 = fullscore; _local3 = true; }; fullscore2 = Math.round(fullscore2); _local4 = ("" + fullscore2); if (fullscore2 > 999999){ _local4 = ((_local4.substring(0, (_local4.length - 6)) + ",") + _local4.substring((_local4.length - 6), _local4.length)); }; if (fullscore2 > 999){ _local4 = ((_local4.substring(0, (_local4.length - 3)) + ",") + _local4.substring((_local4.length - 3), _local4.length)); }; if (fullscore2 == 0){ finalscore.finalscore.text = "0"; } else { finalscore.finalscore.text = _local4; }; }; if (_local3){ finalscore.play(); }; } else { if (!submitted){ if (submitbtn.alpha < 1){ submitbtn.alpha = (submitbtn.alpha + 0.05); }; if (submitbtn.hitTestPoint(stage.mouseX, stage.mouseY, true)){ submitbtn.gotoAndStop(2); if (clicked3){ submitted = true; MochiScores.showLeaderboard({boardID:boardID2, score:fullscore2}); }; } else { submitbtn.gotoAndStop(1); }; } else { submitted = true; submitbtn.visible = false; }; }; if (zoomin2.ab.menubtn.hitTestPoint(stage.mouseX, stage.mouseY, true)){ zoomin2.ab.menubtn.gotoAndStop(2); if (clicked3){ st2.volume = 0; sc2.soundTransform = st2; stage.removeEventListener(Event.ENTER_FRAME, enterframe2); gotoAndStop(2); }; } else { zoomin2.ab.menubtn.gotoAndStop(1); }; }; } public function openLink(_arg1:ContextMenuEvent):void{ navigateToURL(new URLRequest("http://coolio-niato.newgrounds.com")); } public function mup1(_arg1){ clicked2 = false; cdown2 = false; } public function mup3(_arg1){ clicked3 = false; cdown3 = false; } public function createMWord(_arg1, _arg2){ var _local3:Mword; var _local4:*; _local3 = new Mword(); _local3.word.text = _arg1.toUpperCase(); if (_arg2 != ""){ _local3.miniscore.text = _arg2; } else { _local3.miniscore.text = ""; }; stage.addChild(_local3); _local3.y = (_local3.y - (mwords.length * 70)); mwords.push(_local3); if ((((((_arg1.length <= 7)) && (!((_arg1.substring(0, 1) == "+"))))) && (!((_arg2 == "TIME UP"))))){ ctimer = 0; if (currentProf.length == 0){ if (_arg1.length == 7){ createMWord("7 LETTER BONUS", "50000"); score = (score + 50); prof2 = new Prof9(); stage.addChild(prof2); prof2.x = (4.15 + startprofx); prof2.y = 219.5; currentProf = new Array(prof2, 75); prof3 = true; } else { if (_arg1.length >= 5){ if (cencore == 1){ prof2 = new Prof4(); _local4 = 67; } else { if (cencore == 2){ prof2 = new Prof5(); _local4 = 70; } else { if (cencore == 3){ prof2 = new Prof8(); _local4 = 75; } else { if (cencore == 4){ prof2 = new Prof7(); _local4 = 47; } else { if (cencore == 5){ prof2 = new Prof6(); _local4 = 48; }; }; }; }; }; stage.addChild(prof2); prof2.x = (4.15 + startprofx); prof2.y = 219.5; currentProf = new Array(prof2, _local4); cencore++; if (cencore > 5){ cencore = 1; }; }; }; }; if (typGame == 1){ stringL1 = (stringL1 + (("<font face=\"Times New Roman\" size = '15'><b>" + _arg1.toUpperCase()) + "</b></font>\n")); } else { if (typGame == 0){ stringL0 = (stringL0 + (("<font face=\"Times New Roman\" size = '15'><b>" + _arg1.toUpperCase()) + "</b></font>\n")); }; }; }; } public function showScore(){ var _local1:String; var _local2:*; _local1 = ""; if (showscore < (score * 1000)){ showscore = (showscore + 500); } else { showscore = (score * 1000); }; _local2 = ("" + showscore); if (showscore > 999999){ _local2 = ((_local2.substring(0, (_local2.length - 6)) + ",") + _local2.substring((_local2.length - 6), _local2.length)); }; if (showscore > 999){ _local2 = ((_local2.substring(0, (_local2.length - 3)) + ",") + _local2.substring((_local2.length - 3), _local2.length)); }; scorevalue.text = ("" + (score * 1000)); if (showscore == 0){ interf.score.text = ""; } else { interf.score.text = _local2; }; } public function resetMap(){ var _local1:*; var _local2:*; var _local3:*; var _local4:*; var _local5:*; lvl++; trace(lvl); if (lvl >= 2){ holdT = 5; }; if (lvl < 7){ if (((lvl + 1) % 3) == 0){ typGame = 1; lvlc = true; g2++; }; } else { if (((lvl + 1) % 2) == 0){ typGame = 1; lvlc = true; g2++; }; }; lvlend = 1; if (lvl >= 5){ holdT = 4; }; if (lvl >= 8){ if (minL == 2){ createMWord("4 LETTER WORD MINIMUM", ""); minL = 3; dict3 = new Array(); }; holdT = 5; }; if (lvl >= 10){ holdT = 4; }; if (lvl >= 12){ if (minL == 3){ createMWord("5 LETTER WORD MINIMUM", ""); dict4 = new Array(); minL = 4; }; holdT = 5; }; if (lvl >= 16){ holdT = 4; }; if (holdT == 5){ startX2 = (145 + startXA); } else { if (holdT == 4){ startX2 = (168 + startXA); } else { if (holdT == 3){ startX2 = (192 + startXA); }; }; }; _local1 = new Array(); if (typGame == 0){ _local2 = ((lvl * 2) - (g2 * 2)); if (_local2 > 14){ _local2 = 14; }; k = 0; while (k < (_local2 + 4)) { while (true) { i = Math.floor((Math.random() * rows)); j = Math.floor((Math.random() * cols)); _local3 = true; _local4 = 0; while (_local4 < _local1.length) { if ((((_local1[_local4][0] == i)) && ((_local1[_local4][1] == j)))){ _local3 = false; }; _local4++; }; if (_local3){ break; }; }; if (k < 4){ _local1.push(new Array(i, j)); letterArr[i][j][0] = randomVowel(); letterArr[i][j][1].letter.text = letterArr[i][j][0]; _local5 = createT(letterArr[i][j][0], letterArr[i][j][1].x, letterArr[i][j][1].y, letterArr[i][j][1].typ.currentFrame); tArr.push(new Array(_local5, ((dF + 60) + (k * 7)))); } else { _local1.push(new Array(i, j)); letterArr[i][j][0] = randomConst(); letterArr[i][j][1].letter.text = letterArr[i][j][0]; _local5 = createT(letterArr[i][j][0], letterArr[i][j][1].x, letterArr[i][j][1].y, letterArr[i][j][1].typ.currentFrame); tArr.push(new Array(_local5, ((dF + 45) + (k * 7)))); }; k++; }; }; } public function enterframe(_arg1){ var _local2:*; var _local3:*; var _local4:*; var _local5:*; var _local6:*; var _local7:*; var _local8:*; var _local9:*; var _local10:*; var _local11:*; var _local12:*; var _local13:*; var _local14:*; var _local15:*; var _local16:*; var _local17:*; var _local18:*; var _local19:*; var _local20:*; var _local21:*; var _local22:*; _local2 = false; if (currentProf.length > 0){ if (currentProf[1] == 77){ _local2 = true; }; }; if (((finished) || (_local2))){ if (finished){ fstep++; if (fstep == 1){ stage.removeChild(ct); stage.removeChild(interf); stage.removeChild(interf2); stage.removeChild(list); i = 0; while (i < holdArr.length) { stage.removeChild(holdArr[i][1]); i++; }; i = 0; while (i < rows) { j = 0; while (j < cols) { stage.removeChild(letterArr[i][j][1]); j++; }; i++; }; i = 0; while (i < tArr.length) { stage.removeChild(tArr[i][0]); i++; }; i = 0; while (i < mwords.length) { stage.removeChild(mwords[i]); i++; }; stage.removeChild(currentProf[0]); nextFrame(); }; }; } else { if (!pauseGame){ ctimer = (ctimer + (1 / 30)); if (ctimer < (2 / 30)){ hurried = false; }; if (ctimer > 25){ if (!hurried){ if (currentProf.length == 0){ hurried = true; prof2 = new Prof11(); stage.addChild(prof2); prof2.x = (4.15 + startprofx); prof2.y = 219.5; currentProf = new Array(prof2, 78); }; }; }; }; if ((((currentProf.length == 0)) && (!(finished)))){ if (st2.volume < 0.5){ st2.volume = (st2.volume + 0.015); } else { st2.volume = 0.5; }; sc2.soundTransform = st2; if ((((((((empty == 49)) && ((mwords.length == 0)))) && (!(deleting)))) && (!(deleting2)))){ prof2 = new Prof12(); stage.addChild(prof2); prof2.x = (4.15 + startprofx); prof2.y = 219.5; currentProf = new Array(prof2, 77); }; if (!prof1.visible){ prof1.visible = true; prof1.prof.brows.gotoAndPlay(2); }; if (lastlvl != lvl){ lastlvl = lvl; _local3 = 0; if (cencore == 1){ prof2 = new Prof4(); _local3 = 67; } else { if (cencore == 2){ prof2 = new Prof5(); _local3 = 70; } else { if (cencore == 3){ prof2 = new Prof8(); _local3 = 75; } else { if (cencore == 4){ prof2 = new Prof7(); _local3 = 47; } else { if (cencore == 5){ prof2 = new Prof6(); _local3 = 48; }; }; }; }; }; stage.addChild(prof2); prof2.x = (4.15 + startprofx); prof2.y = 219.5; currentProf = new Array(prof2, _local3); cencore++; if (cencore > 5){ cencore = 1; }; } else { if (typGame == 1){ if (!prof4){ if (!lvlc){ prof2 = new Prof10(); stage.addChild(prof2); prof2.x = (4.15 + startprofx); prof2.y = 219.5; currentProf = new Array(prof2, 98); prof4 = true; }; }; } else { if (!prof3){ if (wordsD >= 2){ prof2 = new Prof3(); stage.addChild(prof2); prof2.x = (4.15 + startprofx); prof2.y = 219.5; currentProf = new Array(prof2, 127); prof3 = true; }; }; }; }; }; moveEyes(); if (pauseGame){ list.x = 0; if (typGame == 0){ list.textarea.htmlText = stringL0; } else { if (typGame == 1){ list.textarea.htmlText = stringL1; }; }; prof1.prof.brows.stop(); stage.setChildIndex(list, (stage.numChildren - 1)); } else { list.x = -10000; prof1.prof.brows.play(); comboActions(); showScore(); if (((carry) && ((((ct.typ.currentFrame == 6)) || ((ct.typ.currentFrame == 7)))))){ showAvailable(); }; if (lvlend > 0){ lvlend++; if (lvlend > 10){ _local13 = false; if (lvl < 7){ if ((lvl % 3) != 0){ _local13 = true; }; } else { if ((lvl % 2) != 0){ _local13 = true; }; }; if (_local13){ _local14 = (15000 + ((lvl - g2) * 10000)); createMWord(("+" + _local14), ""); score = (score + Math.floor((_local14 / 1000))); } else { createMWord("TIME UP!", ""); }; lvlend = 0; }; }; if (tArr.length > 0){ deleting = true; } else { deleting = false; }; empty = 0; _local10 = 0; while (_local10 < randTiles.length) { var _local23 = randTiles[_local10]; var _local24 = 2; var _local25 = (_local23[_local24] + 1); _local23[_local24] = _local25; if (randTiles[_local10][2] == 3){ randTiles[_local10][2] = 0; _local9 = 0; while (_local9 < 26) { if (letters[_local9] == letterArr[randTiles[_local10][0]][randTiles[_local10][1]][1].letter.text){ if (_local9 != 25){ letterArr[randTiles[_local10][0]][randTiles[_local10][1]][1].letter.text = letters[(_local9 + 1)]; letterArr[randTiles[_local10][0]][randTiles[_local10][1]][0] = letterArr[randTiles[_local10][0]][randTiles[_local10][1]][1].letter.text; break; } else { letterArr[randTiles[_local10][0]][randTiles[_local10][1]][1].letter.text = letters[0]; letterArr[randTiles[_local10][0]][randTiles[_local10][1]][0] = letterArr[randTiles[_local10][0]][randTiles[_local10][1]][1].letter.text; break; }; }; _local9++; }; } else { if (randTiles[_local10][2] == 1){ checkWords(randTiles[_local10][0], randTiles[_local10][1]); }; }; _local10++; }; played = false; i = (tArr.length - 1); while (i >= 0) { if (tArr[i][1] == dF){ tArr[i][0].play(); }; stage.setChildIndex(tArr[i][0], (stage.numChildren - 1)); if (tArr[i][0].currentFrame == 2){ if (!played){ played = true; if (smc.currentFrame != 1){ smc.nextFrame(); } else { smc.gotoAndStop(2); }; }; }; if (tArr[i][0].currentFrame == 25){ stage.removeChild(tArr[i][0]); tArr.splice(i, 1); }; i--; }; if (smc.currentFrame >= 15){ smc.gotoAndStop(1); }; deleting2 = false; if (mwords.length > 0){ deleting2 = true; }; dF++; addDict(dF); if (dF == 15){ interf.z.visible = true; interf.z.gotoAndStop(1); }; if (clicked){ if (prof1.prof.nose.hitTestPoint(stage.mouseX, stage.mouseY, true)){ prof1.prof.nose.play(); }; }; ct.x = (stage.mouseX - 25); ct.y = (stage.mouseY - 25); i = 0; while (i < rows) { j = 0; while (j < cols) { if (letterArr[i][j][0] != ""){ empty++; }; j++; }; i++; }; _local11 = -1; i = 0; while (i < rows) { j = 0; while (j < cols) { if (!carry){ letterArr[i][j][1].ashine.alpha = 0; }; if (letterArr[i][j][0] == ""){ if ((((typGame == 0)) || (lvlc))){ letterArr[i][j][1].typ.gotoAndStop(4); letterArr[i][j][1].letter2.text = ""; }; } else { if (letterArr[i][j][1].typ.currentFrame == 4){ letterArr[i][j][1].typ.gotoAndStop(1); }; }; if (letterArr[i][j][1].typ.hitTestPoint(stage.mouseX, stage.mouseY, true)){ _local11 = letterArr[i][j][1]; letterArr[i][j][1].shine.visible = true; if (((carry) && (clicked))){ _local15 = false; if ((((((ct.typ.currentFrame == 3)) || ((ct.typ.currentFrame == 6)))) || ((ct.typ.currentFrame == 7)))){ _local15 = true; }; if (((aSpots[i][j]) && ((((letterArr[i][j][0] == "")) || (_local15))))){ carry = false; interf.z.gotoAndPlay(10); if (((_local15) && (!((letterArr[i][j][0] == ""))))){ _local10 = 0; while (_local10 < randTiles.length) { if ((((randTiles[_local10][0] == i)) && ((randTiles[_local10][1] == j)))){ randTiles.splice(_local10, 1); }; _local10++; }; }; if ((((ct.typ.currentFrame == 6)) || ((ct.typ.currentFrame == 7)))){ k = 0; while (k < rows) { _local9 = 0; while (_local9 < cols) { if (aSpots[k][_local9] == true){ _local16 = createT("", letterArr[k][_local9][1].x, letterArr[k][_local9][1].y, 6); tArr.push(new Array(_local16, (dF + 2))); if (letterArr[k][_local9][0] != ""){ letterArr[k][_local9][0] = ""; letterArr[k][_local9][1].letter.text = ""; letterArr[k][_local9][1].typ.gotoAndStop(4); _local10 = 0; while (_local10 < randTiles.length) { if ((((randTiles[_local10][0] == k)) && ((randTiles[_local10][1] == _local9)))){ randTiles.splice(_local10, 1); }; _local10++; }; }; }; _local9++; }; k++; }; } else { letterArr[i][j][0] = ct.letter.text; letterArr[i][j][1].letter.text = letterArr[i][j][0]; letterArr[i][j][1].typ.gotoAndStop(ct.typ.currentFrame); }; if (carryZZ){ randTiles.push(new Array(i, j, 0)); }; carryZZ = false; carryZZ2 = 0; ct.visible = false; cTile = undefined; carry = false; combo = (combo - (cinc * 1.1)); interf.z.gotoAndPlay(10); addTile(randomLetter(1), 0); if (((!((ct.typ.currentFrame == 6))) && (!((ct.typ.currentFrame == 7))))){ checkWords(i, j); }; } else { if (carryZZ){ addTile("ZZ", ct.typ.currentFrame); } else { addTile(ct.letter.text, ct.typ.currentFrame); }; carry = false; interf.z.gotoAndPlay(10); ct.visible = false; cTile = undefined; }; } else { if (typGame == 1){ if (j == 3){ if (((!((letterArr[i][j][0] == ""))) && (clicked))){ combo = (combo - (cinc * 1.2)); addTile(letterArr[i][j][0], 1); letterArr[i][j][0] = ""; letterArr[i][j][1].letter.text = ""; letterArr[i][j][1].typ.gotoAndStop(4); _local17 = i; while (_local17 < 7) { if (_local17 == 6){ letterArr[_local17][j][0] = ""; letterArr[_local17][j][1].letter.text = ""; letterArr[_local17][j][1].typ.gotoAndStop(4); } else { letterArr[_local17][j][0] = letterArr[(_local17 + 1)][j][0]; letterArr[_local17][j][1].letter.text = letterArr[_local17][j][0]; letterArr[_local17][j][1].typ.gotoAndStop(letterArr[(_local17 + 1)][j][1].typ.currentFrame); }; _local17++; }; _local4 = ""; _local5 = 0; while (_local5 < 7) { _local4 = (_local4 + letterArr[_local5][3][0]); if (letterArr[_local5][3][0] == ""){ trace(_local4); if (((((!((_local4 == ""))) && (!(usedWords2[_local4])))) && (checkExist(_local4.toLowerCase(), _local4.length)))){ usedWords2[_local4] = true; _local6 = (_local4.length / 2); _local7 = addScoreVal(_local4.length); createMWord(_local4, _local7); _local8 = 0; while (_local8 < _local4.length) { _local16 = createT(letterArr[_local8][3][0], letterArr[_local8][3][1].x, letterArr[_local8][3][1].y, letterArr[_local8][3][1].typ.currentFrame); combo = (combo + (cinc * _local6)); if (typGame == 1){ addTile(letterArr[_local8][3][0], 0); }; letterArr[_local8][3][0] = ""; letterArr[_local8][3][1].letter.text = ""; letterArr[_local8][3][1].typ.gotoAndStop(4); tArr.push(new Array(_local16, ((dF + 3) + (_local8 * 7)))); _local8++; }; }; break; }; _local5++; }; }; }; }; }; } else { letterArr[i][j][1].shine.visible = false; }; j++; }; i++; }; empty = 0; if (typGame == 0){ if (((((lvlc) && (!(deleting)))) && (!(deleting2)))){ i = 0; while (i < rows) { letterArr[i][3][0] = ""; letterArr[i][3][1].letter.text = ""; letterArr[i][3][1].typ.gotoAndStop(4); i++; }; resetMap(); lvlc = false; }; i = 0; while (i < rows) { j = 0; while (j < cols) { if (letterArr[i][j][0] != ""){ empty++; }; j++; }; i++; }; if (((!(lvlc)) && ((empty == 0)))){ if (holdArr.length == holdT){ stage.removeChild(holdArr[(holdT - 1)][1]); holdArr.splice((holdT - 1), 1); }; }; if (((((!(lvlc)) && (!(deleting)))) && (!(deleting2)))){ if (empty == 0){ i = 0; while (i < (holdT - 1)) { holdArr[i][1].yspd = 0.2; i++; }; resetMap(); }; }; } else { if (((((lvlc) && (!(deleting)))) && (!(deleting2)))){ i = 0; while (i < rows) { j = 0; while (j < cols) { if (j != 3){ letterArr[i][j][1].typ.gotoAndStop(8); } else { letterArr[i][j][1].typ.gotoAndStop(4); }; letterArr[i][j][1].letter.text = ""; letterArr[i][j][0] = ""; j++; }; i++; }; usedWords2 = new Array(); stringL1 = ""; holdT = 7; startX2 = startX3; _local18 = Math.floor((Math.random() * dict2.length)); fword = dict2[_local18]; dict2.splice(_local18, 1); _local19 = new Array(); i = 0; while (i < holdT) { _local19[i] = fword.substring(i, (i + 1)); i++; }; i = 0; while (i < holdT) { _local18 = Math.floor((Math.random() * _local19.length)); _local20 = addTile(_local19[_local18], 1); addTile(_local19[_local18], 1).x = (_local20.x + ((i * tWidth) * 1.1)); _local19.splice(_local18, 1); i++; }; lvlc = false; timer = 0; }; if (!lvlc){ _local21 = timerActions(); letterArr[1][1][1].letter2.text = _local21.substring(0, 1); letterArr[2][1][1].letter2.text = _local21.substring(1, 2); letterArr[3][1][1].letter2.text = _local21.substring(2, 3); letterArr[4][1][1].letter2.text = _local21.substring(3, 4); letterArr[5][1][1].letter2.text = _local21.substring(4, 5); }; }; if (((((((clicked) && ((_local11 == -1)))) && (carry))) && (!(lvlc)))){ trace("so"); if (carryZZ){ addTile("ZZ", ct.typ.currentFrame); } else { addTile(ct.letter.text, ct.typ.currentFrame); }; carry = false; interf.z.gotoAndPlay(10); ct.visible = false; cTile = undefined; }; _local11 = -1; _local12 = holdT; if ((((((holdArr.length == 0)) && ((typGame == 0)))) && (!(lvlc)))){ createHand(); }; if (carry){ if (typGame == 1){ carry = false; carryZZ2 = 0; carryZZ = false; } else { if (carryZZ){ carryZZ2++; if (carryZZ2 == 3){ carryZZ2 = 0; _local9 = 0; while (_local9 < 26) { if (letters[_local9] == ct.letter.text){ if (_local9 != 25){ ct.letter.text = letters[(_local9 + 1)]; break; } else { ct.letter.text = letters[0]; break; }; }; _local9++; }; }; }; _local12--; }; }; if (_local12 > holdArr.length){ _local12 = holdArr.length; }; if (typGame == 0){ while (holdArr.length > holdT) { stage.removeChild(holdArr[holdT][1]); holdArr.splice(holdT, 1); }; }; i = 0; while (i < _local12) { if (holdArr[i][1].x != (((i * tWidth) * 1.1) + startX2)){ holdArr[i][1].xspd = (holdArr[i][1].xspd + 0.2); }; if (holdArr[i][1].yspd >= 0.2){ holdArr[i][1].yspd = (holdArr[i][1].yspd + 2); holdArr[i][1].y = (holdArr[i][1].y + holdArr[i][1].yspd); holdArr[i][1].xspd = 0; //unresolved if holdArr.splice(i, 1); _local12--; i--; } else { if (holdArr[i][1].xspd != 0){ holdArr[i][1].x = (holdArr[i][1].x - holdArr[i][1].xspd); holdArr[i][1].xspd = (holdArr[i][1].xspd + 0.2); if (holdArr[i][1].x < (((i * tWidth) * 1.1) + startX2)){ holdArr[i][1].x = (((i * tWidth) * 1.1) + startX2); holdArr[i][1].xspd = (holdArr[i][1].xspd * -0.25); if (holdArr[i][1].xspd > -0.7){ holdArr[i][1].xspd = 0; }; } else { if (i > 0){ if (holdArr[i][1].x < (holdArr[(i - 1)][1].x + tWidth)){ holdArr[i][1].x = (holdArr[(i - 1)][1].x + tWidth); holdArr[i][1].xspd = (holdArr[i][1].xspd * -0.25); }; }; }; }; if (holdArr[i][1].typ.hitTestPoint(stage.mouseX, stage.mouseY, true)){ holdArr[i][1].shine.visible = true; if (((((((((clicked) && (!(carry)))) && (!(deleting)))) && (!(lvlc)))) && ((holdArr[i][1].yspd <= 0)))){ if (typGame == 0){ _local11 = holdArr[i][1]; carry = true; _local22 = holdArr[i][1].typ.currentFrame; if (_local22 == 1){ interf.z.z.z.gotoAndStop(1); } else { if (_local22 == 2){ interf.z.z.z.gotoAndStop(2); } else { if (_local22 == 3){ interf.z.z.z.gotoAndStop(3); } else { if (_local22 == 5){ interf.z.z.z.gotoAndStop(4); } else { if (_local22 == 6){ interf.z.z.z.gotoAndStop(5); } else { if (_local22 == 7){ interf.z.z.z.gotoAndStop(6); }; }; }; }; }; }; interf.z.gotoAndPlay(2); ct.typ.gotoAndStop(_local22); showAvailable(); ct.letter.text = holdArr[i][0]; if (ct.letter.text == "ZZ"){ carryZZ = true; carryZZ2 = 0; ct.letter.text = holdArr[i][1].letter.text; } else { carryZZ = false; carryZZ2 = 0; }; if (holdArr[i][1].bomb.alpha == 1){ ct.bomb.alpha = 1; } else { ct.bomb.alpha = 0; }; ct.visible = true; cTile = _local11; stage.removeChild(holdArr[i][1]); holdArr.splice(i, 1); break; } else { _local4 = ""; _local5 = 0; while (_local5 < 7) { _local4 = (_local4 + letterArr[_local5][3][0]); if (letterArr[_local5][3][0] == ""){ letterArr[_local5][3][0] = holdArr[i][1].letter.text; letterArr[_local5][3][1].letter.text = letterArr[_local5][3][0]; letterArr[_local5][3][1].typ.gotoAndStop(1); _local4 = (_local4 + letterArr[_local5][3][0]); stage.removeChild(holdArr[i][1]); holdArr.splice(i, 1); trace(_local4); if (((((!((_local4 == ""))) && (!(usedWords2[_local4])))) && (checkExist(_local4.toLowerCase(), _local4.length)))){ usedWords2[_local4] = true; _local6 = (_local4.length / 2); _local7 = addScoreVal(_local4.length); createMWord(_local4, _local7); _local8 = 0; while (_local8 < _local4.length) { _local16 = createT(letterArr[_local8][3][0], letterArr[_local8][3][1].x, letterArr[_local8][3][1].y, letterArr[_local8][3][1].typ.currentFrame); combo = (combo + (cinc * _local6)); if (typGame == 1){ addTile(letterArr[_local8][3][0], 0); }; letterArr[_local8][3][0] = ""; letterArr[_local8][3][1].letter.text = ""; letterArr[_local8][3][1].typ.gotoAndStop(4); tArr.push(new Array(_local16, ((dF + 3) + (_local8 * 7)))); _local8++; }; }; break; }; _local5++; }; break; }; }; } else { holdArr[i][1].shine.visible = false; }; if (holdArr[i][0] == "ZZ"){ holdArr[i][1].zz++; if (holdArr[i][1].zz == 3){ holdArr[i][1].zz = 0; _local9 = 0; while (_local9 < 26) { if (letters[_local9] == holdArr[i][1].letter.text){ if (_local9 != 25){ holdArr[i][1].letter.text = letters[(_local9 + 1)]; break; } else { holdArr[i][1].letter.text = letters[0]; break; }; }; _local9++; }; }; }; }; i++; }; if (((interf.used.hitTestPoint(stage.mouseX, stage.mouseY, true)) && (!(pauseGame)))){ interf.used.gotoAndStop(2); if (clicked){ pauseGame = !(pauseGame); }; } else { interf.used.gotoAndStop(1); }; stage.setChildIndex(interf2, (stage.getChildIndex(ct) - 1)); if (currentProf.length > 0){ stage.setChildIndex(currentProf[0], (stage.getChildIndex(ct) - 1)); }; stage.setChildIndex(ct, (stage.numChildren - 1)); }; if (!finished){ if (((list.btn.hitTestPoint(stage.mouseX, stage.mouseY, true)) && (pauseGame))){ list.btn.gotoAndStop(2); if (clicked){ pauseGame = !(pauseGame); }; } else { list.btn.gotoAndStop(1); }; if (interf.giveup.hitTestPoint(stage.mouseX, stage.mouseY, true)){ interf.giveup.gotoAndStop(2); if (clicked){ if (currentProf.length == 0){ prof2 = new Prof12(); stage.addChild(prof2); prof2.x = (4.15 + startprofx); prof2.y = 219.5; currentProf = new Array(prof2, 77); }; }; } else { interf.giveup.gotoAndStop(1); }; if (clicked){ clicked = false; }; }; }; if ((((currentProf.length > 0)) && (!(finished)))){ if (currentProf.length > 0){ stage.setChildIndex(currentProf[0], (stage.numChildren - 1)); }; prof1.visible = false; if (st2.volume > 0.2){ st2.volume = (st2.volume - 0.015); } else { st2.volume = 0.2; }; sc2.soundTransform = st2; if (currentProf[0].currentFrame == currentProf[1]){ if (currentProf[1] == 77){ finished = true; } else { stage.removeChild(currentProf[0]); currentProf = new Array(); prof1.visible = true; }; }; }; i = 0; while (i < mwords.length) { stage.setChildIndex(mwords[i], (stage.numChildren - 1)); if (mwords[i].currentFrame == 55){ stage.removeChild(mwords[i]); mwords.splice(i, 1); i--; }; i++; }; } public function timerActions(){ var _local1:*; var _local2:*; var _local3:*; timer = (timer + (1 / 30)); _local1 = Math.floor((60 - timer)); _local2 = Math.floor((100 - ((timer * 100) % 100))); if (_local2 == 100){ _local2 = 99; } else { if (_local2 < 10){ _local2 = ("0" + _local2); }; }; if (_local1 < 0){ lvlc = true; typGame = 0; i = 0; while (i < holdArr.length) { holdArr[i][1].yspd = 0.2; holdArr[i][1].xspd = 0; i++; }; trace("change"); }; if (_local1 < 10){ _local1 = ("0" + _local1); }; _local3 = ((_local1 + ":") + _local2); return (_local3); } public function checkSpot(_arg1, _arg2, _arg3){ if ((((((((_arg1 >= 0)) && ((_arg2 >= 0)))) && ((_arg1 < rows)))) && ((_arg2 < cols)))){ if ((((letterArr[_arg1][_arg2][0] == "")) || (_arg3))){ letterArr[_arg1][_arg2][1].ashine.alpha = 1; aSpots[_arg1][_arg2] = true; }; }; } public function checkVert(_arg1, _arg2){ var _local3:*; var _local4:*; var _local5:*; var _local6:*; i = _arg2; while (i >= 0) { if (letterArr[_arg1][i][0] != ""){ _local3 = i; } else { break; }; i--; }; i = _arg2; while (i < cols) { if (letterArr[_arg1][i][0] != ""){ _local4 = i; } else { break; }; i++; }; _local5 = ""; i = _local3; while (i <= _local4) { _local5 = (_local5 + letterArr[_arg1][i][0]); i++; }; _local6 = createWords(_local5, (_arg2 - _local3)); if (_local6[0] != ""){ return (new Array(_local6[0], _local6[1], _local6[2], _local3, _local4)); }; return (new Array("")); } public function checkWords(_arg1, _arg2){ var _local3:*; var _local4:*; var _local5:*; var _local6:*; var _local7:*; var _local8:*; var _local9:*; var _local10:*; var _local11:*; var _local12:*; var _local13:*; var _local14:*; _local3 = checkHoriz(_arg1, _arg2); _local4 = checkVert(_arg1, _arg2); _local5 = checkDiag(_arg1, _arg2); _local8 = false; _local10 = false; _local11 = false; _local12 = false; _local13 = 0; _local14 = 0; if (((!((_local3[0] == ""))) && (!(usedWords[_local3[0]])))){ _local8 = true; usedWords[_local3[0]] = true; trace(_local3[0]); _local10 = true; _local14++; _local13 = (_local3.length / 2); ws = addScoreVal(_local3[0].length); createMWord(_local3[0], ws); _local7 = (_local3[3] + _local3[1]); while (_local7 <= (_local3[3] + _local3[2])) { _local6 = createT(letterArr[_local7][_arg2][0], letterArr[_local7][_arg2][1].x, letterArr[_local7][_arg2][1].y, letterArr[_local7][_arg2][1].typ.currentFrame); combo = (combo + (cinc * _local13)); _local9 = 0; while (_local9 < randTiles.length) { if ((((_local7 == randTiles[_local9][0])) && ((_arg2 == randTiles[_local9][1])))){ randTiles.splice(_local9, 1); break; }; _local9++; }; tArr.push(new Array(_local6, ((dF + 3) + (((_local7 - _local3[3]) - _local3[1]) * 7)))); _local7++; }; }; if (((!((_local4[0] == ""))) && (!(usedWords[_local4[0]])))){ _local14++; _local8 = true; usedWords[_local4[0]] = true; _local11 = true; trace(_local4[0]); ws = addScoreVal(_local4[0].length); createMWord(_local4[0], ws); _local13 = (_local4.length / 2); _local7 = (_local4[3] + _local4[1]); while (_local7 <= (_local4[3] + _local4[2])) { _local6 = createT(letterArr[_arg1][_local7][0], letterArr[_arg1][_local7][1].x, letterArr[_arg1][_local7][1].y, letterArr[_arg1][_local7][1].typ.currentFrame); combo = (combo + (cinc * _local13)); _local9 = 0; while (_local9 < randTiles.length) { if ((((_arg1 == randTiles[_local9][0])) && ((_local7 == randTiles[_local9][1])))){ randTiles.splice(_local9, 1); break; }; _local9++; }; tArr.push(new Array(_local6, ((dF + 3) + (((_local7 - _local4[3]) - _local4[1]) * 7)))); _local7++; }; }; if (((!((_local5[0] == ""))) && (!(usedWords[_local5[0]])))){ _local14++; _local13 = (_local5.length / 2); _local8 = true; usedWords[_local5[0]] = true; _local12 = true; trace(_local5[0]); ws = addScoreVal(_local5[0].length); createMWord(_local5[0], ws); _local7 = (_local5[3] + _local5[1]); while (_local7 <= (_local5[3] + _local5[2])) { _local6 = createT(letterArr[_local7][((_local5[4] + _local7) - _local5[3])][0], letterArr[_local7][((_local5[4] + _local7) - _local5[3])][1].x, letterArr[_local7][((_local5[4] + _local7) - _local5[3])][1].y, letterArr[_local7][((_local5[4] + _local7) - _local5[3])][1].typ.currentFrame); combo = (combo + (cinc * _local13)); _local9 = 0; while (_local9 < randTiles.length) { if ((((_local7 == randTiles[_local9][0])) && ((((_local5[4] + _local7) - _local5[3]) == randTiles[_local9][1])))){ randTiles.splice(_local9, 1); break; }; _local9++; }; tArr.push(new Array(_local6, ((dF + 3) + (((_local7 - _local5[3]) - _local5[1]) * 7)))); _local7++; }; }; if (((!((_local3[0] == ""))) && (_local10))){ _local7 = (_local3[3] + _local3[1]); while (_local7 <= (_local3[3] + _local3[2])) { if (letterArr[_local7][_arg2][1].typ.currentFrame != 2){ letterArr[_local7][_arg2][0] = ""; letterArr[_local7][_arg2][1].letter.text = ""; } else { letterArr[_local7][_arg2][1].typ.gotoAndStop(1); }; _local7++; }; }; if (((!((_local4[0] == ""))) && (_local11))){ _local7 = (_local4[3] + _local4[1]); while (_local7 <= (_local4[3] + _local4[2])) { if (letterArr[_arg1][_local7][1].typ.currentFrame != 2){ letterArr[_arg1][_local7][0] = ""; letterArr[_arg1][_local7][1].letter.text = ""; } else { letterArr[_arg1][_local7][1].typ.gotoAndStop(1); }; _local7++; }; }; if (((!((_local5[0] == ""))) && (_local12))){ _local7 = (_local5[3] + _local5[1]); while (_local7 <= (_local5[3] + _local5[2])) { if (letterArr[_local7][((_local5[4] + _local7) - _local5[3])][1].typ.currentFrame != 2){ letterArr[_local7][((_local5[4] + _local7) - _local5[3])][0] = ""; letterArr[_local7][((_local5[4] + _local7) - _local5[3])][1].letter.text = ""; } else { letterArr[_local7][((_local5[4] + _local7) - _local5[3])][1].typ.gotoAndStop(1); }; _local7++; }; }; wordsD = (wordsD + _local14); if (_local14 == 2){ createMWord("DOUBLE BONUS", 15000); score = (score + 15); } else { if (_local14 == 3){ createMWord("TRIPLE BONUS", 30000); score = (score + 30); }; }; return (_local8); } public function checkHoriz(_arg1, _arg2){ var _local3:*; var _local4:*; var _local5:*; var _local6:*; i = _arg1; while (i >= 0) { if (letterArr[i][_arg2][0] != ""){ _local3 = i; } else { break; }; i--; }; i = _arg1; while (i < rows) { if (letterArr[i][_arg2][0] != ""){ _local4 = i; } else { break; }; i++; }; _local5 = ""; i = _local3; while (i <= _local4) { _local5 = (_local5 + letterArr[i][_arg2][0]); i++; }; _local6 = createWords(_local5, (_arg1 - _local3)); if (_local6[0] != ""){ return (new Array(_local6[0], _local6[1], _local6[2], _local3, _local4)); }; return (new Array("")); } public function mdown(_arg1){ clicked = false; if (!cdown){ clicked = true; }; cdown = true; } public function randomLetter(_arg1){ var _local2:*; var _local3:*; var _local4:*; var _local5:*; _local4 = 0; _local5 = 0; _local3 = 0; while (_local3 < holdArr.length) { _local2 = holdArr[_local3][1].letter.text; if (((((((((!((_local2 == "A"))) && (!((_local2 == "E"))))) && (!((_local2 == "I"))))) && (!((_local2 == "O"))))) && (!((_local2 == "U"))))){ _local4++; } else { _local5++; }; _local3++; }; if (_local4 > 3){ return (randomVowel()); }; if (_local5 > 3){ return (randomConst()); }; if (Math.random() < 0.08){ return ("ZZ"); }; _local2 = ltiles[Math.floor((Math.random() * ltiles.length))]; if (((((((((!((_local2 == "A"))) && (!((_local2 == "E"))))) && (!((_local2 == "I"))))) && (!((_local2 == "O"))))) && (!((_local2 == "U"))))){ vowels++; consts = 0; } else { consts++; vowels = 0; }; if (vowels > 3){ vowels = 0; return (randomVowel()); }; if (consts > 3){ consts = 0; return (randomConst()); }; return (_local2); } public function checkExist(_arg1, _arg2){ if (_arg2 == 3){ if (dict3[_arg1] == true){ return (true); }; } else { if (_arg2 == 4){ if (dict4[_arg1] == true){ return (true); }; } else { if (_arg2 == 5){ if (dict5[_arg1] == true){ return (true); }; } else { if (_arg2 == 6){ if (dict6[_arg1] == true){ return (true); }; } else { if (_arg2 == 7){ if (dict7[_arg1] == true){ return (true); }; }; }; }; }; }; } public function createT(_arg1, _arg2, _arg3, _arg4){ var _local5:*; if (_arg4 != 6){ _local5 = new tLarge(); _local5.x = _arg2; _local5.y = _arg3; _local5.letter.text = _arg1; _local5.typ.gotoAndStop(_arg4); stage.addChild(_local5); } else { _local5 = new Explode(); _local5.x = _arg2; _local5.y = _arg3; stage.addChild(_local5); }; return (_local5); } public function addTile(_arg1, _arg2){ t = new Tile(); t.xspd = 7; t.yspd = 0; stage.addChild(t); t.x = (((startX2 * 3) + (holdArr.length * 3)) + 40); t.y = startY2; t.shade.visible = false; ls++; if (typGame == 0){ if ((((_arg2 == 0)) && (!((_arg1 == "ZZ"))))){ if ((((((Math.random() < 0.05)) && ((lvl >= 2)))) && ((empty > 8)))){ _arg2 = 7; } else { if ((((Math.random() < (0.07 + ((empty / 7) * 0.005)))) && ((empty > 3)))){ _arg2 = 6; } else { if ((((Math.random() < 0.1)) && ((lvl >= 2)))){ _arg2 = 2; } else { if ((((Math.random() < 0.15)) && ((lvl >= 1)))){ _arg2 = 3; }; }; }; }; }; } else { _arg2 = 1; }; if (_arg2 == 0){ _arg2 = 1; }; t.typ.gotoAndStop(_arg2); if ((((_arg2 == 6)) || ((_arg2 == 7)))){ _arg1 = ""; t.bomb.alpha = 1; }; _arg1 = _arg1.toUpperCase(); if ((((_arg1 == "ZZ")) && ((((_arg2 == 1)) || ((_arg2 == 5)))))){ t.letter.text = "A"; t.zz = 0; _arg2 = 5; t.typ.gotoAndStop(_arg2); holdArr.push(new Array("ZZ", t)); } else { t.letter.text = _arg1; holdArr.push(new Array(_arg1, t)); }; return (t); } public function addScoreVal(_arg1){ var _local2:*; var _local3:*; trace("ok1"); if (_arg1 == 3){ _local2 = 2; } else { if (_arg1 == 4){ _local2 = 4; } else { if (_arg1 == 5){ _local2 = 9; } else { if (_arg1 == 6){ _local2 = 14; } else { if (_arg1 == 7){ _local2 = 21; }; }; }; }; }; trace("ok2"); _local3 = (_local2 * comboL); score = (score + _local3); trace("ok3"); return ((_local3 * 1000)); } public function randomVowel(){ var _local1:*; _local1 = Math.random(); if (_local1 < 0.25){ return ("A"); }; if (_local1 < 0.6){ return ("E"); }; if (_local1 < 0.75){ return ("I"); }; if (_local1 < 0.87){ return ("O"); }; return ("U"); } public function createWords(_arg1, _arg2){ var _local3:*; var _local4:*; var _local5:*; var _local6:*; var _local7:*; _local3 = 0; _local4 = 0; _local5 = 0; _local6 = ""; i = 0; while (i < _arg1.length) { j = (i + minL); while (j < _arg1.length) { _local7 = _arg1.substring(i, (j + 1)).toLowerCase(); if (_local7.length > _local3){ if (checkExist(_local7, _local7.length)){ if ((((_arg2 >= i)) && ((_arg2 <= j)))){ _local3 = _local7.length; _local4 = i; _local5 = j; _local6 = _local7; }; }; }; j++; }; i++; }; if (_local6.length > 0){ return (new Array(_local6, _local4, _local5)); }; return (new Array("")); } public function mdown1(_arg1){ clicked2 = false; if (!cdown2){ clicked2 = true; }; cdown2 = true; } public function mdown3(_arg1){ clicked3 = false; if (!cdown3){ clicked3 = true; }; cdown3 = true; } public function createHand(){ var _local1:*; i = 0; while (i < holdT) { _local1 = addTile(randomLetter(0), 0); _local1.x = (_local1.x + ((i * tWidth) * 1.2)); i++; }; } public function comboActions(){ if (combo >= 0){ combo = (combo - 0.01); if (combo > 100){ combo = 100; }; } else { combo = 0; }; comboshow = (comboshow - ((comboshow - combo) / 15)); interf.meter.m.gotoAndStop(1); comboL = 1; if (comboshow > 18){ interf.meter.m.gotoAndStop(2); comboL = 2; }; if (comboshow > 34){ interf.meter.m.gotoAndStop(3); comboL = 3; }; if (comboshow > 53){ interf.meter.m.gotoAndStop(4); comboL = 5; }; if (comboshow > 72){ interf.meter.m.gotoAndStop(5); comboL = 8; }; if (comboshow > 88){ interf.meter.m.gotoAndStop(6); comboL = 10; }; interf.meter.bar.y = (238 - ((comboshow / 100) * 260)); } public function mup(_arg1){ clicked = false; cdown = false; } public function moveEyes(){ var _local1:*; var _local2:*; var _local3:*; var _local4:*; var _local5:*; _local1 = ((((stage.mouseX - sx1) - prof1.prof.head.x) - prof1.prof.x) - prof1.x); _local2 = ((((stage.mouseY - sy1) - prof1.prof.head.y) - prof1.prof.y) - prof1.y); _local3 = Math.atan2(_local2, _local1); _local4 = Math.sqrt(((_local1 * _local1) + (_local2 * _local2))); _local5 = 10; if ((_local4 / _local5) > 8){ _local4 = (_local5 * 8); }; prof1.prof.head.eye1.x = (sx1 + ((Math.cos(_local3) * _local4) / _local5)); prof1.prof.head.eye1.y = (sy1 + ((Math.sin(_local3) * _local4) / _local5)); _local1 = ((((stage.mouseX - sx2) - prof1.prof.head.x) - prof1.prof.x) - prof1.x); _local2 = ((((stage.mouseY - sy2) - prof1.prof.head.y) - prof1.prof.y) - prof1.y); _local3 = Math.atan2(_local2, _local1); _local4 = Math.sqrt(((_local1 * _local1) + (_local2 * _local2))); _local5 = 10; if ((_local4 / _local5) > 4){ _local4 = (_local5 * 4); }; prof1.prof.head.eye2.x = (sx2 + ((Math.cos(_local3) * _local4) / _local5)); prof1.prof.head.eye2.y = (sy2 + ((Math.sin(_local3) * _local4) / _local5)); } public function addDict(_arg1){ if (_arg1 == 1){ dict3["ran"] = true; dict4["hood"] = true; dict4["wore"] = true; dict5["tween"] = true; dict6["aachen"] = true; dict5["aalii"] = true; dict5["aalst"] = true; dict5["aalto"] = true; dict4["aare"] = true; dict6["aarhus"] = true; dict5["aaron"] = true; dict4["aarp"] = true; dict4["aave"] = true; dict5["abaca"] = true; dict5["aback"] = true; dict6["abacus"] = true; dict6["abadan"] = true; dict5["abaft"] = true; dict7["abalone"] = true; dict5["abamp"] = true; dict7["abandon"] = true; dict5["abase"] = true; dict5["abash"] = true; dict7["abashed"] = true; dict6["abasia"] = true; dict6["abasic"] = true; dict5["abate"] = true; dict6["abatic"] = true; dict6["abatis"] = true; dict6["abator"] = true; dict5["abaya"] = true; dict6["abbacy"] = true; dict4["abbe"] = true; dict6["abbess"] = true; dict5["abbey"] = true; dict5["abbot"] = true; dict5["abc's"] = true; dict4["abcs"] = true; dict6["abdias"] = true; dict7["abdomen"] = true; dict6["abduce"] = true; dict6["abduct"] = true; dict5["abeam"] = true; dict4["abed"] = true; dict4["abel"] = true; dict7["abelard"] = true; dict5["abele"] = true; dict6["abelia"] = true; dict7["abenaki"] = true; dict4["abet"] = true; dict7["abettal"] = true; dict7["abetter"] = true; dict7["abettor"] = true; dict7["abeyant"] = true; dict7["abfarad"] = true; dict7["abhenry"] = true; dict5["abhor"] = true; dict5["abide"] = true; dict7["abiding"] = true; dict7["abidjan"] = true; dict7["abience"] = true; dict6["abient"] = true; dict5["abies"] = true; dict5["abila"] = true; dict7["abilene"] = true; dict7["ability"] = true; dict6["abject"] = true; dict6["abjure"] = true; dict7["abjurer"] = true; dict6["abkhas"] = true; dict6["abkhaz"] = true; dict6["ablate"] = true; dict7["ablated"] = true; dict6["ablaut"] = true; dict6["ablaze"] = true; dict4["able"] = true; dict7["ableism"] = true; dict6["ablism"] = true; dict6["abloom"] = true; dict4["abls"] = true; dict4["ably"] = true; dict6["abnaki"] = true; dict6["aboard"] = true; dict5["abode"] = true; dict5["abohm"] = true; dict7["abolish"] = true; dict4["abor"] = true; dict6["aborad"] = true; dict6["aboral"] = true; dict5["abort"] = true; dict7["abortus"] = true; dict7["aboulia"] = true; dict7["aboulic"] = true; dict6["abound"] = true; dict5["about"] = true; dict5["above"] = true; dict6["abrade"] = true; dict7["abrader"] = true; dict7["abraham"] = true; dict7["abramis"] = true; dict6["abrase"] = true; dict7["abreact"] = true; dict7["abreast"] = true; dict7["abridge"] = true; dict7["abroach"] = true; dict6["abroad"] = true; dict7["abronia"] = true; dict6["abrupt"] = true; dict7["abruzzi"] = true; dict7["abscess"] = true; dict7["abscise"] = true; dict7["abscond"] = true; dict6["abseil"] = true; dict7["absence"] = true; dict6["absent"] = true; dict7["absinth"] = true; dict7["absolve"] = true; dict6["absorb"] = true; dict7["abstain"] = true; dict6["absurd"] = true; dict5["abuja"] = true; dict6["abukir"] = true; dict6["abulia"] = true; dict6["abulic"] = true; dict5["abuse"] = true; dict6["abused"] = true; dict6["abuser"] = true; dict7["abusive"] = true; dict4["abut"] = true; dict7["abutter"] = true; dict5["abuzz"] = true; dict6["abvolt"] = true; dict6["abwatt"] = true; dict6["abydos"] = true; dict4["abye"] = true; dict5["abyla"] = true; dict5["abysm"] = true; dict7["abysmal"] = true; dict5["abyss"] = true; dict7["abyssal"] = true; dict6["acacia"] = true; dict7["academe"] = true; dict7["academy"] = true; dict6["acadia"] = true; dict7["acadian"] = true; dict7["acantha"] = true; dict7["acapnia"] = true; dict7["acapnic"] = true; dict7["acardia"] = true; dict6["acarid"] = true; dict7["acarina"] = true; dict7["acarine"] = true; dict6["acarus"] = true; dict7["acaudal"] = true; dict6["accede"] = true; dict6["accent"] = true; dict6["accept"] = true; dict6["access"] = true; dict5["accho"] = true; dict7["acclaim"] = true; dict6["accord"] = true; dict6["accost"] = true; dict7["account"] = true; dict5["accra"] = true; dict7["accrete"] = true; dict7["accrual"] = true; dict6["accrue"] = true; dict7["accrued"] = true; dict7["accurse"] = true; dict7["accurst"] = true; dict7["accusal"] = true; dict6["accuse"] = true; dict7["accused"] = true; dict7["accuser"] = true; dict6["acedia"] = true; dict4["acer"] = true; dict7["acerate"] = true; dict5["acerb"] = true; dict7["acerbic"] = true; dict7["acerola"] = true; dict7["acerose"] = true; dict6["acetal"] = true; dict7["acetate"] = true; dict6["acetic"] = true; dict7["acetify"] = true; dict6["acetin"] = true; dict7["acetone"] = true; dict7["acetose"] = true; dict7["acetous"] = true; dict6["acetum"] = true; dict6["acetyl"] = true; dict6["achaea"] = true; dict7["achaean"] = true; dict7["achaian"] = true; dict4["ache"] = true; dict6["achene"] = true; dict7["acheron"] = true; dict7["acheson"] = true; dict6["acheta"] = true; dict7["achieve"] = true; dict6["aching"] = true; dict6["achira"] = true; dict7["acholia"] = true; dict6["achras"] = true; dict4["achy"] = true; dict7["achylia"] = true; dict7["acicula"] = true; dict4["acid"] = true; dict6["acidic"] = true; dict7["acidify"] = true; dict7["acidity"] = true; dict6["acinar"] = true; dict6["acinic"] = true; dict6["acinos"] = true; dict7["acinose"] = true; dict7["acinous"] = true; dict6["acinus"] = true; dict7["ack-ack"] = true; dict5["ackee"] = true; dict6["aclant"] = true; dict4["acme"] = true; dict4["acne"] = true; dict5["acned"] = true; dict5["acold"] = true; dict7["acolyte"] = true; dict7["aconite"] = true; dict6["acorea"] = true; dict6["acores"] = true; dict5["acorn"] = true; dict6["acorus"] = true; dict7["acousma"] = true; dict7["acquire"] = true; dict6["acquit"] = true; dict7["acragas"] = true; dict4["acre"] = true; dict7["acreage"] = true; dict5["acres"] = true; dict5["acrid"] = true; dict7["acridid"] = true; dict7["acrilan"] = true; dict5["acris"] = true; dict7["acrobat"] = true; dict7["acrogen"] = true; dict7["acronym"] = true; dict6["across"] = true; dict7["acrylic"] = true; dict7["actable"] = true; dict6["actaea"] = true; dict4["acth"] = true; dict6["actias"] = true; dict7["actifed"] = true; dict5["actin"] = true; dict7["actinal"] = true; dict6["acting"] = true; dict7["actinia"] = true; dict7["actinic"] = true; dict7["actinon"] = true; dict6["action"] = true; dict7["actitis"] = true; dict6["actium"] = true; dict6["active"] = true; dict5["actor"] = true; dict7["actress"] = true; dict4["acts"] = true; dict6["actual"] = true; dict7["actuary"] = true; dict7["actuate"] = true; dict6["acuate"] = true; dict6["acuity"] = true; dict6["acular"] = true; dict6["aculea"] = true; dict7["aculeus"] = true; dict6["acumen"] = true; dict5["acute"] = true; dict7["acutely"] = true; dict7["acyclic"] = true; dict4["acyl"] = true; dict6["ad-lib"] = true; dict4["adad"] = true; dict5["adage"] = true; dict6["adagio"] = true; dict6["adalia"] = true; dict4["adam"] = true; dict7["adamant"] = true; dict5["adams"] = true; dict5["adana"] = true; dict5["adapa"] = true; dict6["adapid"] = true; dict6["adapin"] = true; dict5["adapt"] = true; dict7["adapted"] = true; dict7["adapter"] = true; dict7["adaptor"] = true; dict4["adar"] = true; dict7["adaxial"] = true; dict6["add-in"] = true; dict6["add-on"] = true; dict7["addable"] = true; dict5["addax"] = true; dict6["addend"] = true; dict5["adder"] = true; dict7["addible"] = true; dict6["addict"] = true; dict5["addle"] = true; dict6["addled"] = true; dict7["address"] = true; dict6["adduce"] = true; dict7["adducer"] = true; dict6["adduct"] = true; dict7["adelges"] = true; dict7["adelgid"] = true; dict6["adelie"] = true; dict4["aden"] = true; dict7["adenine"] = true; dict7["adenium"] = true; dict7["adenoid"] = true; dict7["adenoma"] = true; dict7["adenota"] = true; dict5["adept"] = true; dict7["adermin"] = true; dict7["adesite"] = true; dict4["adhd"] = true; dict6["adhere"] = true; dict7["adience"] = true; dict6["adient"] = true; dict5["adieu"] = true; dict5["adige"] = true; dict5["adios"] = true; dict7["adipose"] = true; dict4["adit"] = true; dict5["aditi"] = true; dict6["aditya"] = true; dict6["adjoin"] = true; dict7["adjourn"] = true; dict7["adjudge"] = true; dict7["adjunct"] = true; dict6["adjure"] = true; dict6["adjust"] = true; dict7["adlumia"] = true; dict5["adman"] = true; dict6["admass"] = true; dict7["admiral"] = true; dict6["admire"] = true; dict7["admired"] = true; dict7["admirer"] = true; dict5["admit"] = true; dict5["admix"] = true; dict6["adnate"] = true; dict6["adnexa"] = true; dict7["adnexal"] = true; dict6["adnoun"] = true; dict5["adobe"] = true; dict5["adobo"] = true; dict6["adonic"] = true; dict6["adonis"] = true; dict5["adopt"] = true; dict7["adopted"] = true; dict7["adoptee"] = true; dict7["adopter"] = true; dict5["adore"] = true; dict6["adored"] = true; dict6["adorer"] = true; dict7["adoring"] = true; dict5["adorn"] = true; dict7["adorned"] = true; dict4["adps"] = true; dict7["adrenal"] = true; dict6["adrian"] = true; dict6["adrift"] = true; dict6["adroit"] = true; dict6["adsorb"] = true; dict7["adulate"] = true; dict5["adult"] = true; dict5["adust"] = true; dict7["advance"] = true; dict6["advect"] = true; dict6["advent"] = true; dict6["adverb"] = true; dict7["adverse"] = true; dict6["advert"] = true; dict6["advice"] = true; dict5["advil"] = true; dict6["advise"] = true; dict7["advised"] = true; dict7["advisee"] = true; dict7["adviser"] = true; dict7["advisor"] = true; dict4["adze"] = true; dict6["adzhar"] = true; dict6["aecial"] = true; dict6["aecium"] = true; dict5["aedes"] = true; dict7["aegates"] = true; dict6["aegean"] = true; dict6["aegina"] = true; dict5["aegir"] = true; dict5["aegis"] = true; dict6["aeneas"] = true; dict6["aeneid"] = true; dict6["aengus"] = true; dict6["aeolia"] = true; dict7["aeolian"] = true; dict6["aeolic"] = true; dict6["aeolis"] = true; dict6["aeolus"] = true; dict4["aeon"] = true; dict7["aeonian"] = true; dict7["aeonium"] = true; dict6["aerate"] = true; dict7["aerated"] = true; dict7["aerator"] = true; dict6["aerial"] = true; dict7["aerides"] = true; dict5["aerie"] = true; dict6["aerify"] = true; dict6["aerobe"] = true; dict7["aerobic"] = true; dict7["aerosol"] = true; dict6["aertex"] = true; dict4["aery"] = true; dict5["aesir"] = true; dict5["aesop"] = true; dict6["aether"] = true; dict7["aethusa"] = true; dict4["afar"] = true; dict6["afeard"] = true; dict7["afeared"] = true; dict7["affable"] = true; dict7["affably"] = true; dict6["affair"] = true; dict7["affaire"] = true; dict7["affairs"] = true; dict6["affect"] = true; dict7["affiant"] = true; dict7["affinal"] = true; dict6["affine"] = true; dict7["affined"] = true; dict6["affirm"] = true; dict5["affix"] = true; dict7["affixal"] = true; dict7["affixed"] = true; dict7["afflict"] = true; dict6["afford"] = true; dict6["affray"] = true; dict7["affront"] = true; dict6["afghan"] = true; dict7["afghani"] = true; dict6["afield"] = true; dict5["afire"] = true; dict5["afisr"] = true; dict7["afl-cio"] = true; dict6["aflame"] = true; dict6["aflare"] = true; dict7["aflaxen"] = true; dict6["afloat"] = true; dict5["afoot"] = true; dict5["afoul"] = true; dict6["afraid"] = true; dict6["afresh"] = true; dict6["africa"] = true; dict7["african"] = true; dict4["afrl"] = true; dict4["afro"] = true; dict5["afspc"] = true; dict5["after"] = true; dict6["afters"] = true; dict5["again"] = true; dict4["agal"] = true; dict5["agama"] = true; dict7["agamete"] = true; dict6["agamic"] = true; dict6["agamid"] = true; dict7["agamous"] = true; dict5["agape"] = true; dict4["agar"] = true; dict6["agaric"] = true; dict7["agassiz"] = true; dict5["agate"] = true; dict7["agathis"] = true; dict5["agave"] = true; dict5["agaze"] = true; dict7["age-old"] = true; dict4["aged"] = true; dict4["agee"] = true; dict6["ageing"] = true; dict6["ageism"] = true; dict7["ageless"] = true; dict7["agelong"] = true; dict6["agency"] = true; dict6["agenda"] = true; dict7["agendum"] = true; dict5["agene"] = true; dict7["agenise"] = true; dict7["agenize"] = true; dict5["agent"] = true; dict6["aggeus"] = true; dict7["aggrade"] = true; dict7["aggress"] = true; dict5["aggro"] = true; dict7["aggroup"] = true; dict4["agha"] = true; dict5["aghan"] = true; dict6["aghast"] = true; dict5["agile"] = true; dict7["agilely"] = true; dict7["agility"] = true; dict5["aging"] = true; dict4["agio"] = true; dict5["agism"] = true; dict7["agitate"] = true; dict6["aglaia"] = true; dict6["agleam"] = true; dict5["aglet"] = true; dict5["aglow"] = true; dict6["agnail"] = true; dict6["agnate"] = true; dict7["agnatha"] = true; dict7["agnatic"] = true; dict4["agni"] = true; dict6["agnise"] = true; dict6["agnize"] = true; dict7["agnomen"] = true; dict7["agnosia"] = true; dict4["agog"] = true; dict4["agon"] = true; dict6["agonal"] = true; dict5["agone"] = true; dict7["agonise"] = true; dict7["agonist"] = true; dict7["agonize"] = true; dict6["agonus"] = true; dict5["agony"] = true; dict5["agora"] = true; dict6["agouti"] = true; dict4["agra"] = true; dict7["agrapha"] = true; dict5["agree"] = true; dict6["agreed"] = true; dict7["agrippa"] = true; dict7["aground"] = true; dict4["agua"] = true; dict4["ague"] = true; dict6["aguish"] = true; dict4["ahab"] = true; dict5["ahead"] = true; dict4["ahem"] = true; dict6["ahimsa"] = true; dict6["ahorse"] = true; dict6["ahpcrc"] = true; dict7["ahriman"] = true; dict5["ahura"] = true; dict4["aiai"] = true; dict4["aide"] = true; dict5["aided"] = true; dict5["aides"] = true; dict4["aids"] = true; dict6["aigina"] = true; dict6["aiglet"] = true; dict6["aigret"] = true; dict5["aiken"] = true; dict6["aikido"] = true; dict7["aileron"] = true; dict5["ailey"] = true; dict6["ailing"] = true; dict7["ailment"] = true; dict7["ailurus"] = true; dict7["aimless"] = true; dict5["aioli"] = true; dict7["air-dry"] = true; dict6["airbus"] = true; dict7["aircrew"] = true; dict7["airdock"] = true; dict7["airdrop"] = true; dict4["aire"] = true; dict5["aired"] = true; dict7["airfare"] = true; dict7["airflow"] = true; dict7["airfoil"] = true; dict6["airgun"] = true; dict7["airhead"] = true; dict6["airily"] = true; dict6["airing"] = true; dict7["airless"] = true; dict7["airlift"] = true; dict7["airlike"] = true; dict7["airline"] = true; dict7["airlock"] = true; dict7["airmail"] = true; dict6["airman"] = true; dict7["airport"] = true; dict7["airpost"] = true; dict4["airs"] = true; dict7["airship"] = true; dict7["airsick"] = true; dict4["airt"] = true; dict7["airwave"] = true; dict6["airway"] = true; dict4["airy"] = true; dict5["aisle"] = true; dict5["ajaia"] = true; dict4["ajar"] = true; dict4["ajax"] = true; dict5["ajuga"] = true; dict5["akaba"] = true; dict4["akan"] = true; dict4["akee"] = true; dict4["aken"] = true; dict4["akha"] = true; dict7["akhbari"] = true; dict6["akimbo"] = true; dict4["akin"] = true; dict4["akka"] = true; dict4["akko"] = true; dict6["akmola"] = true; dict5["akron"] = true; dict7["akvavit"] = true; dict7["al-iraq"] = true; dict7["alabama"] = true; dict7["aladdin"] = true; dict6["alalia"] = true; dict5["alamo"] = true; dict7["alanine"] = true; dict4["alar"] = true; dict6["alaric"] = true; dict5["alarm"] = true; dict7["alarmed"] = true; dict6["alarum"] = true; dict5["alary"] = true; dict4["alas"] = true; dict6["alaska"] = true; dict7["alaskan"] = true; dict5["alate"] = true; dict6["alated"] = true; dict6["alauda"] = true; dict7["albania"] = true; dict6["albany"] = true; dict6["albedo"] = true; dict5["albee"] = true; dict6["albers"] = true; dict6["albert"] = true; dict7["alberta"] = true; dict7["alberti"] = true; dict7["albinal"] = true; dict7["albinic"] = true; dict6["albino"] = true; dict6["albion"] = true; dict6["albite"] = true; dict7["albitic"] = true; dict7["albizia"] = true; dict6["alborg"] = true; dict6["albuca"] = true; dict6["albugo"] = true; dict6["albula"] = true; dict5["album"] = true; dict7["albumen"] = true; dict7["albumin"] = true; dict4["alca"] = true; dict7["alcaeus"] = true; dict6["alcaic"] = true; dict7["alcalde"] = true; dict7["alcazar"] = true; dict5["alcea"] = true; dict6["alcedo"] = true; dict5["alces"] = true; dict7["alchemy"] = true; dict7["alcidae"] = true; dict7["alcides"] = true; dict7["alcohol"] = true; dict6["alcott"] = true; dict6["alcove"] = true; dict7["alcyone"] = true; dict5["alder"] = true; dict5["aldol"] = true; dict7["aldomet"] = true; dict6["aldose"] = true; dict7["alecost"] = true; dict7["alectis"] = true; dict6["alecto"] = true; dict4["alee"] = true; dict7["alehoof"] = true; dict7["alembic"] = true; dict4["alep"] = true; dict5["aleph"] = true; dict6["aleppo"] = true; dict5["alert"] = true; dict7["alertly"] = true; dict7["aletris"] = true; dict5["aleut"] = true; dict5["aleve"] = true; dict7["alewife"] = true; dict6["alexia"] = true; dict6["alexic"] = true; dict7["alfalfa"] = true; dict6["alfred"] = true; dict4["alga"] = true; dict5["algae"] = true; dict5["algal"] = true; dict7["algebra"] = true; dict5["alger"] = true; dict7["algeria"] = true; dict7["algerie"] = true; dict5["algid"] = true; dict7["algiers"] = true; dict5["algin"] = true; dict6["algoid"] = true; dict5["algol"] = true; dict6["algren"] = true; dict7["alhacen"] = true; dict7["alhazen"] = true; dict5["alias"] = true; dict5["alibi"] = true; dict6["alidad"] = true; dict7["alidade"] = true; dict5["alien"] = true; dict7["alienee"] = true; dict7["alienor"] = true; dict7["aliform"] = true; dict6["alight"] = true; dict5["align"] = true; dict7["aligned"] = true; dict5["alike"] = true; dict7["aliment"] = true; dict7["alimony"] = true; dict5["aline"] = true; dict7["aliquot"] = true; dict4["alir"] = true; dict6["alisma"] = true; dict5["alive"] = true; dict6["aliyah"] = true; dict6["alkali"] = true; dict7["alkalic"] = true; dict6["alkane"] = true; dict7["alkanet"] = true; dict6["alkene"] = true; dict7["alkeran"] = true; dict4["alky"] = true; dict5["alkyd"] = true; dict5["alkyl"] = true; dict7["alkylic"] = true; dict6["alkyne"] = true; dict7["all-out"] = true; dict5["allah"] = true; dict5["allay"] = true; dict7["allayer"] = true; dict6["allege"] = true; dict7["alleged"] = true; dict7["allegro"] = true; dict6["allele"] = true; dict7["allelic"] = true; dict5["allen"] = true; dict7["allergy"] = true; dict5["alley"] = true; dict7["allgood"] = true; dict6["allice"] = true; dict6["allied"] = true; dict6["allies"] = true; dict5["allis"] = true; dict6["allium"] = true; dict5["allot"] = true; dict7["allover"] = true; dict5["allow"] = true; dict5["alloy"] = true; dict7["alloyed"] = true; dict6["allude"] = true; dict6["allure"] = true; dict4["ally"] = true; dict5["allyl"] = true; dict7["allylic"] = true; dict7["almanac"] = true; dict6["almaty"] = true; dict6["almond"] = true; dict7["almoner"] = true; dict6["almost"] = true; dict4["alms"] = true; dict6["alnico"] = true; dict5["alnus"] = true; dict4["aloe"] = true; dict5["aloes"] = true; dict5["aloft"] = true; dict5["aloha"] = true; dict5["alone"] = true; dict5["along"] = true; dict6["alonso"] = true; dict5["aloof"] = true; dict6["alopex"] = true; dict7["alopius"] = true; dict5["alosa"] = true; dict5["aloud"] = true; dict6["alpaca"] = true; dict6["alpena"] = true; dict5["alpha"] = true; dict6["alpine"] = true; dict7["alpinia"] = true; dict4["alps"] = true; dict7["already"] = true; dict7["alright"] = true; dict6["alsace"] = true; dict7["alsatia"] = true; dict4["also"] = true; dict7["alsobia"] = true; dict6["altace"] = true; dict6["altaic"] = true; dict6["altair"] = true; dict5["altar"] = true; dict5["alter"] = true; dict7["altered"] = true; dict7["althaea"] = true; dict6["althea"] = true; dict4["alto"] = true; dict7["altoist"] = true; dict7["altoona"] = true; dict5["alula"] = true; dict6["alular"] = true; dict4["alum"] = true; dict7["alumina"] = true; dict6["alumna"] = true; dict7["alumnus"] = true; dict7["alundum"] = true; dict7["alupent"] = true; dict6["alvine"] = true; dict6["always"] = true; dict7["alyssum"] = true; dict6["alytes"] = true; dict4["amah"] = true; dict5["amain"] = true; dict7["amalgam"] = true; dict7["amanita"] = true; dict5["amass"] = true; dict7["amastia"] = true; dict7["amateur"] = true; dict5["amati"] = true; dict7["amative"] = true; dict7["amatory"] = true; dict5["amaze"] = true; dict6["amazed"] = true; dict7["amazing"] = true; dict6["amazon"] = true; dict7["amazona"] = true; dict6["ambage"] = true; dict7["ambages"] = true; dict5["amber"] = true; dict7["ambient"] = true; dict5["ambit"] = true; dict5["amble"] = true; dict6["ambler"] = true; dict4["ambo"] = true; dict7["amboyna"] = true; dict7["ambrose"] = true; dict6["ambush"] = true; dict5["ameba"] = true; dict6["ameban"] = true; dict6["amebic"] = true; dict7["ameboid"] = true; dict7["amebous"] = true; dict5["ameer"] = true; dict6["amelia"] = true; dict4["amen"] = true; dict7["amen-ra"] = true; dict5["amend"] = true; dict7["amended"] = true; dict6["amends"] = true; dict6["amenia"] = true; dict7["amenity"] = true; dict5["ament"] = true; dict7["amentia"] = true; dict6["amerce"] = true; dict7["america"] = true; dict7["amerind"] = true; dict7["ametria"] = true; dict4["amex"] = true; dict6["amhara"] = true; dict7["amharic"] = true; dict4["amia"] = true; dict7["amiable"] = true; dict7["amiably"] = true; dict5["amide"] = true; dict5["amigo"] = true; dict7["amiidae"] = true; dict5["amine"] = true; dict6["aminic"] = true; dict5["amino"] = true; dict4["amir"] = true; dict5["amish"] = true; dict5["amiss"] = true; dict5["amity"] = true; dict5["amman"] = true; dict7["ammeter"] = true; dict6["ammine"] = true; dict6["ammino"] = true; dict4["ammo"] = true; dict7["ammonia"] = true; dict7["amnesia"] = true; dict7["amnesic"] = true; dict7["amnesty"] = true; dict5["amnic"] = true; dict5["amnio"] = true; dict6["amnion"] = true; dict6["amnios"] = true; dict7["amniota"] = true; dict7["amniote"] = true; dict6["amoeba"] = true; dict7["amoeban"] = true; dict7["amoebic"] = true; dict4["amok"] = true; dict4["amon"] = true; dict7["amon-ra"] = true; dict4["amor"] = true; dict5["amora"] = true; dict7["amorist"] = true; dict7["amorous"] = true; dict7["amorpha"] = true; dict5["amort"] = true; dict4["amos"] = true; dict6["amount"] = true; dict5["amour"] = true; dict6["amoxil"] = true; dict4["amoy"] = true; dict6["ampere"] = true; dict7["amphora"] = true; dict5["ample"] = true; dict7["amplify"] = true; dict5["amply"] = true; dict7["ampoule"] = true; dict5["ampul"] = true; dict6["ampule"] = true; dict7["ampulla"] = true; dict7["amputee"] = true; dict7["amsonia"] = true; dict5["amuck"] = true; dict6["amulet"] = true; dict4["amun"] = true; dict4["amur"] = true; dict5["amusd"] = true; dict5["amuse"] = true; dict6["amused"] = true; dict7["amusing"] = true; dict7["amusive"] = true; dict4["amyl"] = true; dict7["amylase"] = true; dict7["amyloid"] = true; dict6["amylum"] = true; dict6["amytal"] = true; dict6["amyxia"] = true; dict6["anabas"] = true; dict7["anabrus"] = true; dict7["anaemia"] = true; dict7["anaemic"] = true; dict7["anagoge"] = true; dict7["anagram"] = true; dict7["anaheim"] = true; dict4["anal"] = true; dict6["analog"] = true; dict7["analogy"] = true; dict7["analyse"] = true; dict7["analyst"] = true; dict7["analyze"] = true; dict6["ananas"] = true; dict7["ananias"] = true; dict7["anapest"] = true; dict7["anaphor"] = true; dict7["anaprox"] = true; dict7["anapsid"] = true; dict7["anarchy"] = true; dict4["anas"] = true; dict5["anasa"] = true; dict7["anasazi"] = true; dict7["anaspid"] = true; dict7["anatomy"] = true; dict6["anchor"] = true; dict7["anchovy"] = true; dict7["anchusa"] = true; dict7["ancient"] = true; dict7["ancylus"] = true; dict7["andante"] = true; dict6["andean"] = true; dict5["andes"] = true; dict6["andira"] = true; dict7["andiron"] = true; dict7["andorra"] = true; dict7["andrena"] = true; dict6["andrew"] = true; dict7["andrews"] = true; dict7["android"] = true; dict7["andvari"] = true; dict7["aneides"] = true; dict5["anele"] = true; dict6["anemia"] = true; dict6["anemic"] = true; dict7["anemone"] = true; dict6["anergy"] = true; dict7["aneroid"] = true; dict7["anethum"] = true; dict7["aneurin"] = true; dict4["anew"] = true; dict6["angara"] = true; dict5["angas"] = true; dict5["angel"] = true; dict7["angelic"] = true; dict7["angelim"] = true; dict7["angelus"] = true; dict5["anger"] = true; dict7["angered"] = true; dict7["angevin"] = true; dict6["angina"] = true; dict7["anginal"] = true; dict7["angioma"] = true; dict5["angle"] = true; dict6["angled"] = true; dict6["angler"] = true; dict6["anglia"] = true; dict7["anglian"] = true; dict7["angling"] = true; dict6["angola"] = true; dict7["angolan"] = true; dict6["angora"] = true; dict7["angrily"] = true; dict5["angry"] = true; dict5["angst"] = true; dict7["anguine"] = true; dict6["anguis"] = true; dict7["anguish"] = true; dict7["angular"] = true; dict5["angus"] = true; dict6["anhima"] = true; dict7["anhinga"] = true; dict4["anil"] = true; dict5["anile"] = true; dict7["aniline"] = true; dict5["anima"] = true; dict6["animal"] = true; dict7["animate"] = true; dict5["anime"] = true; dict7["animise"] = true; dict7["animism"] = true; dict7["animist"] = true; dict7["animize"] = true; dict6["animus"] = true; dict5["anion"] = true; dict7["anionic"] = true; dict5["anise"] = true; dict7["aniseed"] = true; dict5["anjou"] = true; dict6["ankara"] = true; dict5["ankle"] = true; dict6["anklet"] = true; dict7["anklets"] = true; dict5["ankus"] = true; dict6["anlage"] = true; dict4["anna"] = true; dict6["annaba"] = true; dict6["annals"] = true; dict5["annam"] = true; dict4["anne"] = true; dict6["anneal"] = true; dict7["annelid"] = true; dict5["annex"] = true; dict6["annexa"] = true; dict7["annexal"] = true; dict6["annexe"] = true; dict5["annon"] = true; dict6["annona"] = true; dict5["annoy"] = true; dict7["annoyed"] = true; dict7["annoyer"] = true; dict6["annual"] = true; dict7["annuity"] = true; dict5["annul"] = true; dict7["annular"] = true; dict7["annulet"] = true; dict7["annulus"] = true; dict5["annum"] = true; dict6["annwfn"] = true; dict5["annwn"] = true; dict4["anoa"] = true; dict6["anodal"] = true; dict5["anode"] = true; dict6["anodic"] = true; dict7["anodise"] = true; dict7["anodize"] = true; dict7["anodyne"] = true; dict6["anoint"] = true; dict5["anole"] = true; dict6["anolis"] = true; dict7["anomala"] = true; dict7["anomaly"] = true; dict6["anomia"] = true; dict6["anomic"] = true; dict6["anomie"] = true; dict5["anomy"] = true; dict4["anon"] = true; dict5["anon."] = true; dict6["anonym"] = true; dict6["anopia"] = true; dict6["anorak"] = true; dict7["anosmia"] = true; dict7["anosmic"] = true; dict7["another"] = true; dict7["anouilh"] = true; dict5["anova"] = true; dict6["anoxia"] = true; dict6["anoxic"] = true; dict4["anpu"] = true; dict6["ansaid"] = true; dict6["anselm"] = true; dict5["anser"] = true; dict7["anseres"] = true; dict6["anshar"] = true; dict6["answer"] = true; dict7["antacid"] = true; dict7["antakya"] = true; dict7["antalya"] = true; dict7["antapex"] = true; dict7["antares"] = true; dict7["antbird"] = true; dict4["ante"] = true; dict7["antedon"] = true; dict7["antefix"] = true; dict7["antenna"] = true; dict6["anthem"] = true; dict6["anther"] = true; dict7["anthill"] = true; dict7["anthony"] = true; dict7["anthrax"] = true; dict6["anthus"] = true; dict4["anti"] = true; dict5["antic"] = true; dict6["antido"] = true; dict7["antigen"] = true; dict7["antigua"] = true; dict7["antilog"] = true; dict7["antioch"] = true; dict7["antique"] = true; dict6["antler"] = true; dict6["antlia"] = true; dict7["antlion"] = true; dict6["antony"] = true; dict7["antonym"] = true; dict6["antrum"] = true; dict5["antsy"] = true; dict5["antum"] = true; dict7["antwerp"] = true; dict6["anubis"] = true; dict5["anura"] = true; dict6["anuran"] = true; dict6["anuria"] = true; dict6["anuric"] = true; dict7["anurous"] = true; dict4["anus"] = true; dict6["anvers"] = true; dict5["anvil"] = true; dict7["anxiety"] = true; dict7["anxious"] = true; dict6["anyhow"] = true; dict7["anymore"] = true; dict6["anyway"] = true; dict7["anyways"] = true; dict5["anzac"] = true; dict5["anzio"] = true; dict6["aorist"] = true; dict5["aorta"] = true; dict6["aortal"] = true; dict6["aortic"] = true; dict5["aotus"] = true; dict6["aoudad"] = true; dict5["apace"] = true; dict6["apache"] = true; dict7["apadana"] = true; dict7["apanage"] = true; dict4["apar"] = true; dict5["apart"] = true; dict6["apathy"] = true; dict7["apatite"] = true; dict7["apatura"] = true; dict7["ape-man"] = true; dict7["apelike"] = true; dict4["aper"] = true; dict6["apercu"] = true; dict6["aperea"] = true; dict5["apery"] = true; dict4["apex"] = true; dict7["aphagia"] = true; dict7["aphakia"] = true; dict7["aphakic"] = true; dict7["aphasia"] = true; dict7["aphasic"] = true; dict7["aphesis"] = true; dict7["aphetic"] = true; dict5["aphid"] = true; dict5["aphis"] = true; dict7["aphonia"] = true; dict7["aphonic"] = true; dict7["aphotic"] = true; dict7["aphriza"] = true; dict4["apia"] = true; dict5["apian"] = true; dict6["apiary"] = true; dict6["apical"] = true; dict6["apidae"] = true; dict6["apiece"] = true; dict5["apios"] = true; dict4["apis"] = true; dict5["apish"] = true; dict5["apium"] = true; dict7["aplasia"] = true; dict6["aplite"] = true; dict7["aplitic"] = true; dict6["aplomb"] = true; dict7["aplysia"] = true; dict5["apnea"] = true; dict6["apneic"] = true; dict7["apnoeic"] = true; dict7["apocope"] = true; dict6["apodal"] = true; dict7["apodeme"] = true; dict7["apodous"] = true; dict7["apogamy"] = true; dict7["apogean"] = true; dict6["apogee"] = true; dict6["apogon"] = true; dict7["apoidea"] = true; dict7["apojove"] = true; dict6["apollo"] = true; dict7["apology"] = true; dict7["apolune"] = true; dict7["apomict"] = true; dict7["apostle"] = true; dict5["appal"] = true; dict6["appall"] = true; dict7["apparel"] = true; dict6["appeal"] = true; dict6["appear"] = true; dict7["appease"] = true; dict6["append"] = true; dict7["applaud"] = true; dict5["apple"] = true; dict6["applet"] = true; dict7["applied"] = true; dict7["applier"] = true; dict5["apply"] = true; dict7["appoint"] = true; dict6["appose"] = true; dict7["apprise"] = true; dict7["apprize"] = true; dict5["appro"] = true; dict7["approve"] = true; dict7["apraxia"] = true; dict7["apraxic"] = true; dict7["apricot"] = true; dict5["april"] = true; dict5["apron"] = true; dict7["apropos"] = true; dict4["apse"] = true; dict7["apsidal"] = true; dict5["apsis"] = true; dict4["apsu"] = true; dict7["apteral"] = true; dict7["apteryx"] = true; dict5["aptly"] = true; dict7["aptness"] = true; dict6["apulia"] = true; dict4["apus"] = true; dict5["aqaba"] = true; dict4["aqua"] = true; dict7["aquatic"] = true; dict7["aquavit"] = true; dict7["aqueous"] = true; dict7["aquifer"] = true; dict6["aquila"] = true; dict7["aquinas"] = true; dict4["arab"] = true; dict6["arabia"] = true; dict7["arabian"] = true; dict6["arabic"] = true; dict6["arabis"] = true; dict7["arabist"] = true; dict6["arable"] = true; dict7["araceae"] = true; dict7["arachis"] = true; dict6["arafat"] = true; dict6["aragon"] = true; dict4["arak"] = true; dict6["arales"] = true; dict6["aralia"] = true; dict4["aram"] = true; dict7["aramaic"] = true; dict5["arame"] = true; dict7["aramean"] = true; dict6["aramus"] = true; dict6["aranea"] = true; dict7["araneae"] = true; dict7["araneus"] = true; dict7["arapaho"] = true; dict6["ararat"] = true; dict7["arariba"] = true; dict7["araroba"] = true; dict4["aras"] = true; dict6["arauca"] = true; dict7["araujia"] = true; dict5["arava"] = true; dict6["arawak"] = true; dict5["arawn"] = true; dict6["araxes"] = true; dict7["arbiter"] = true; dict5["arbor"] = true; dict6["arbour"] = true; dict7["arbutus"] = true; dict4["arca"] = true; dict6["arcade"] = true; dict7["arcadia"] = true; dict7["arcadic"] = true; dict6["arcane"] = true; dict7["arcanum"] = true; dict6["arccos"] = true; dict5["arced"] = true; dict7["arcella"] = true; dict4["arch"] = true; dict7["archaic"] = true; dict7["archean"] = true; dict6["arched"] = true; dict6["archer"] = true; dict7["archery"] = true; dict6["archil"] = true; dict7["archine"] = true; dict7["arching"] = true; dict7["archive"] = true; dict6["archly"] = true; dict7["archway"] = true; dict7["arcidae"] = true; dict4["arco"] = true; dict6["arcsec"] = true; dict6["arcsin"] = true; dict7["arcsine"] = true; dict6["arctan"] = true; dict6["arctic"] = true; dict7["arctiid"] = true; dict7["arctium"] = true; dict7["arcuate"] = true; dict5["arcus"] = true; dict4["arda"] = true; dict5["ardea"] = true; dict5["ardeb"] = true; dict6["ardent"] = true; dict7["ardisia"] = true; dict5["ardor"] = true; dict6["ardour"] = true; dict4["ards"] = true; dict7["arduous"] = true; dict4["area"] = true; dict5["areal"] = true; dict7["areaway"] = true; dict5["areca"] = true; dict5["arena"] = true; dict6["arendt"] = true; dict6["arenga"] = true; dict6["areola"] = true; dict7["areolar"] = true; dict5["arere"] = true; dict4["ares"] = true; dict5["arete"] = true; dict5["argal"] = true; dict6["argali"] = true; dict7["argasid"] = true; dict6["argent"] = true; dict5["argil"] = true; dict7["argiope"] = true; dict6["argive"] = true; dict4["argo"] = true; dict5["argon"] = true; dict7["argonne"] = true; dict7["argonon"] = true; dict5["argos"] = true; dict6["argosy"] = true; dict5["argot"] = true; dict5["argue"] = true; dict6["arguer"] = true; dict6["argufy"] = true; dict7["arguing"] = true; dict5["argun"] = true; dict5["argus"] = true; dict6["argyle"] = true; dict6["argyll"] = true; dict7["argyrol"] = true; dict6["arhant"] = true; dict5["arhat"] = true; dict5["arhus"] = true; dict4["aria"] = true; dict7["ariadne"] = true; dict6["ariana"] = true; dict7["aricara"] = true; dict4["arid"] = true; dict7["aridity"] = true; dict5["aries"] = true; dict7["arietta"] = true; dict6["aright"] = true; dict7["ariidae"] = true; dict7["arikara"] = true; dict4["aril"] = true; dict6["ariled"] = true; dict6["arilus"] = true; dict7["ariomma"] = true; dict6["ariose"] = true; dict6["arioso"] = true; dict5["arise"] = true; dict7["arishth"] = true; dict6["arista"] = true; dict5["arity"] = true; dict5["arius"] = true; dict7["arizona"] = true; dict6["arjuna"] = true; dict5["arles"] = true; dict6["armada"] = true; dict7["armband"] = true; dict5["armed"] = true; dict7["armenia"] = true; dict7["armeria"] = true; dict5["armet"] = true; dict6["armful"] = true; dict7["armhole"] = true; dict7["armiger"] = true; dict7["armilla"] = true; dict5["armin"] = true; dict6["arming"] = true; dict7["armless"] = true; dict6["armlet"] = true; dict7["armlike"] = true; dict7["armoire"] = true; dict5["armor"] = true; dict7["armored"] = true; dict7["armorer"] = true; dict6["armory"] = true; dict6["armour"] = true; dict7["armoury"] = true; dict6["armpit"] = true; dict7["armrest"] = true; dict4["arms"] = true; dict4["army"] = true; dict4["arng"] = true; dict6["arnhem"] = true; dict6["arnica"] = true; dict4["arno"] = true; dict6["arnold"] = true; dict5["aroid"] = true; dict5["aroma"] = true; dict6["arouet"] = true; dict6["around"] = true; dict7["arousal"] = true; dict6["arouse"] = true; dict7["aroused"] = true; dict7["arouser"] = true; dict6["arpent"] = true; dict6["arrack"] = true; dict7["arraign"] = true; dict7["arrange"] = true; dict6["arrant"] = true; dict5["arras"] = true; dict5["array"] = true; dict7["arrayed"] = true; dict7["arrears"] = true; dict6["arrest"] = true; dict7["arrival"] = true; dict6["arrive"] = true; dict7["arriver"] = true; dict6["arroba"] = true; dict5["arrow"] = true; dict6["arroyo"] = true; dict4["arse"] = true; dict7["arsenal"] = true; dict7["arsenic"] = true; dict6["arsine"] = true; dict5["arson"] = true; dict7["artamus"] = true; dict7["artemia"] = true; dict7["artemis"] = true; dict7["arteria"] = true; dict6["artery"] = true; dict6["artful"] = true; dict6["arthur"] = true; dict7["article"] = true; dict7["artisan"] = true; dict6["artist"] = true; dict7["artiste"] = true; dict7["artless"] = true; dict6["artois"] = true; dict4["arts"] = true; dict5["artsd"] = true; dict7["artwork"] = true; dict4["arty"] = true; dict5["aruba"] = true; dict7["arugula"] = true; dict4["arui"] = true; dict5["arulo"] = true; dict4["arum"] = true; dict6["arundo"] = true; dict5["aruru"] = true; dict5["aryan"] = true; dict6["asadha"] = true; dict5["asala"] = true; dict5["asama"] = true; dict7["asamiya"] = true; dict5["asana"] = true; dict6["asanga"] = true; dict4["asap"] = true; dict5["asarh"] = true; dict6["asarum"] = true; dict4["asat"] = true; dict7["ascaris"] = true; dict6["ascend"] = true; dict6["ascent"] = true; dict7["ascesis"] = true; dict7["ascetic"] = true; dict4["asch"] = true; dict5["ascii"] = true; dict7["ascites"] = true; dict7["ascitic"] = true; dict6["ascoma"] = true; dict5["ascot"] = true; dict7["ascribe"] = true; dict5["ascus"] = true; dict5["asdic"] = true; dict4["asea"] = true; dict5["asean"] = true; dict7["asepsis"] = true; dict7["aseptic"] = true; dict7["asexual"] = true; dict6["asgard"] = true; dict7["ash-bin"] = true; dict7["ash-key"] = true; dict7["ash-pan"] = true; dict7["ashamed"] = true; dict6["ashbin"] = true; dict7["ashcake"] = true; dict6["ashcan"] = true; dict4["ashe"] = true; dict5["ashen"] = true; dict5["ashir"] = true; dict6["ashlar"] = true; dict6["ashore"] = true; dict6["ashram"] = true; dict6["ashton"] = true; dict7["ashtray"] = true; dict5["ashur"] = true; dict4["ashy"] = true; dict4["asia"] = true; dict5["asian"] = true; dict7["asiatic"] = true; dict5["aside"] = true; dict7["asimina"] = true; dict6["asimov"] = true; dict4["asin"] = true; dict7["asinine"] = true; dict4["asio"] = true; dict7["askance"] = true; dict6["askant"] = true; dict5["asker"] = true; dict5["askew"] = true; dict6["asking"] = true; dict6["aslant"] = true; dict6["asleep"] = true; dict6["aslope"] = true; dict6["asmara"] = true; dict6["asmera"] = true; dict7["asocial"] = true; dict6["aspect"] = true; dict5["aspen"] = true; dict5["asper"] = true; dict7["asperse"] = true; dict7["asphalt"] = true; dict5["aspic"] = true; dict6["aspire"] = true; dict7["aspirer"] = true; dict7["aspirin"] = true; dict5["aspis"] = true; dict7["asquint"] = true; dict7["assagai"] = true; dict6["assail"] = true; dict5["assam"] = true; dict7["assault"] = true; dict5["assay"] = true; dict7["assayer"] = true; dict7["assegai"] = true; dict6["assent"] = true; dict6["assert"] = true; dict6["assess"] = true; dict5["asset"] = true; dict6["assets"] = true; dict7["asshole"] = true; dict6["assign"] = true; dict6["assist"] = true; dict6["assize"] = true; dict7["assizes"] = true; dict6["assoil"] = true; dict6["assort"] = true; dict7["assouan"] = true; dict7["assuage"] = true; dict6["assuan"] = true; dict6["assume"] = true; dict7["assumed"] = true; dict5["assur"] = true; dict6["assure"] = true; dict7["assured"] = true; dict7["assyria"] = true; dict7["astacus"] = true; dict7["astaire"] = true; dict6["astana"] = true; dict7["astarte"] = true; dict7["astasia"] = true; dict7["astatic"] = true; dict5["aster"] = true; dict6["astern"] = true; dict7["astheny"] = true; dict6["asthma"] = true; dict7["astilbe"] = true; dict5["astir"] = true; dict5["astor"] = true; dict7["astound"] = true; dict6["astral"] = true; dict6["astray"] = true; dict7["astreus"] = true; dict7["astride"] = true; dict6["astute"] = true; dict7["astylar"] = true; dict7["asunder"] = true; dict4["asur"] = true; dict5["asura"] = true; dict6["asvina"] = true; dict6["asvins"] = true; dict5["aswan"] = true; dict6["asylum"] = true; dict6["at-bat"] = true; dict7["atactic"] = true; dict7["atakapa"] = true; dict4["atar"] = true; dict6["atarax"] = true; dict7["ataturk"] = true; dict7["atavism"] = true; dict7["atavist"] = true; dict6["ataxia"] = true; dict6["ataxic"] = true; dict5["ataxy"] = true; dict6["ateles"] = true; dict7["atelier"] = true; dict4["aten"] = true; dict7["athanor"] = true; dict5["athar"] = true; dict7["atheism"] = true; dict7["atheist"] = true; dict6["athena"] = true; dict6["athene"] = true; dict6["athens"] = true; dict7["athinai"] = true; dict7["athirst"] = true; dict7["athlete"] = true; dict7["athodyd"] = true; dict5["athos"] = true; dict7["athwart"] = true; dict5["atilt"] = true; dict6["ativan"] = true; dict7["atlanta"] = true; dict5["atlas"] = true; dict5["atole"] = true; dict5["atoll"] = true; dict4["atom"] = true; dict6["atomic"] = true; dict7["atomise"] = true; dict7["atomism"] = true; dict7["atomize"] = true; dict4["aton"] = true; dict6["atonal"] = true; dict5["atone"] = true; dict6["atonia"] = true; dict6["atonic"] = true; dict5["atony"] = true; dict4["atop"] = true; dict5["atopy"] = true; dict6["atoxic"] = true; dict7["atresia"] = true; dict6["atreus"] = true; dict6["atrial"] = true; dict5["atrip"] = true; dict6["atrium"] = true; dict6["atropa"] = true; dict7["atrophy"] = true; dict7["atropos"] = true; dict6["attach"] = true; dict7["attache"] = true; dict6["attack"] = true; dict6["attain"] = true; dict7["attaint"] = true; dict7["attalea"] = true; dict5["attar"] = true; dict7["attempt"] = true; dict6["attend"] = true; dict6["attest"] = true; dict5["attic"] = true; dict6["attica"] = true; dict7["atticus"] = true; dict6["attila"] = true; dict7["attilio"] = true; dict6["attire"] = true; dict7["attired"] = true; dict6["attlee"] = true; dict6["attorn"] = true; dict7["attract"] = true; dict6["attune"] = true; dict7["auberge"] = true; dict6["auburn"] = true; dict7["auction"] = true; dict6["aucuba"] = true; dict5["audad"] = true; dict5["auden"] = true; dict7["audible"] = true; dict7["audibly"] = true; dict6["audile"] = true; dict5["audio"] = true; dict5["audit"] = true; dict7["auditor"] = true; dict7["audubon"] = true; dict6["augean"] = true; dict6["augeas"] = true; dict6["augend"] = true; dict5["auger"] = true; dict5["aught"] = true; dict6["augite"] = true; dict7["augitic"] = true; dict7["augment"] = true; dict5["augur"] = true; dict6["augury"] = true; dict6["august"] = true; dict7["augusta"] = true; dict6["auklet"] = true; dict4["auld"] = true; dict4["aunt"] = true; dict6["auntie"] = true; dict5["aunty"] = true; dict4["aura"] = true; dict5["aural"] = true; dict7["aurally"] = true; dict7["aureate"] = true; dict7["aureole"] = true; dict5["auric"] = true; dict7["auricle"] = true; dict6["aurify"] = true; dict6["auriga"] = true; dict7["aurochs"] = true; dict6["aurora"] = true; dict7["auroral"] = true; dict6["aurous"] = true; dict6["auspex"] = true; dict7["auspice"] = true; dict6["aussie"] = true; dict6["austen"] = true; dict7["austere"] = true; dict6["austin"] = true; dict7["austral"] = true; dict7["austria"] = true; dict7["autarky"] = true; dict6["auteur"] = true; dict6["author"] = true; dict6["autism"] = true; dict4["auto"] = true; dict7["autobus"] = true; dict7["autocue"] = true; dict7["automat"] = true; dict7["autopsy"] = true; dict6["autumn"] = true; dict7["auxesis"] = true; dict7["auxetic"] = true; dict5["auxin"] = true; dict7["auxinic"] = true; dict5["avahi"] = true; dict5["avail"] = true; dict6["avaram"] = true; dict7["avarice"] = true; dict6["avatar"] = true; dict7["avellan"] = true; dict5["avena"] = true; dict6["avenge"] = true; dict7["avenged"] = true; dict7["avenger"] = true; dict5["avens"] = true; dict6["avenue"] = true; dict4["aver"] = true; dict7["average"] = true; dict6["averse"] = true; dict5["avert"] = true; dict4["aves"] = true; dict6["avesta"] = true; dict7["avestan"] = true; dict5["avian"] = true; dict6["aviary"] = true; dict6["aviate"] = true; dict7["aviator"] = true; dict4["avid"] = true; dict7["avidity"] = true; dict6["avidly"] = true; dict7["avignon"] = true; dict7["avionic"] = true; dict7["avocado"] = true; dict6["avocet"] = true; dict5["avoid"] = true; dict4["avon"] = true; dict6["avouch"] = true; dict4["avow"] = true; dict6["avowal"] = true; dict6["avowed"] = true; dict6["avower"] = true; dict6["avulse"] = true; dict5["await"] = true; dict7["awaited"] = true; dict5["awake"] = true; dict6["awaken"] = true; dict5["award"] = true; dict5["aware"] = true; dict5["awash"] = true; dict4["away"] = true; dict6["aweary"] = true; dict4["awed"] = true; dict6["aweigh"] = true; dict7["aweless"] = true; dict7["awesome"] = true; dict5["awful"] = true; dict7["awfully"] = true; dict6["awheel"] = true; dict6["awhile"] = true; dict5["awing"] = true; dict7["awkward"] = true; dict6["awless"] = true; dict7["awlwort"] = true; dict5["awned"] = true; dict6["awning"] = true; dict7["awnless"] = true; dict4["awny"] = true; dict4["awol"] = true; dict4["awry"] = true; dict6["axenic"] = true; dict5["axial"] = true; dict7["axially"] = true; dict4["axil"] = true; dict5["axile"] = true; dict6["axilla"] = true; dict5["axiom"] = true; dict4["axis"] = true; dict4["axle"] = true; dict7["axolotl"] = true; dict4["axon"] = true; dict6["axonal"] = true; dict5["axone"] = true; dict6["axseed"] = true; dict4["ayah"] = true; dict7["ayapana"] = true; dict7["aye-aye"] = true; dict4["ayin"] = true; dict6["aythya"] = true; dict7["azactam"] = true; dict6["azalea"] = true; dict5["azeri"] = true; dict5["azide"] = true; dict5["azido"] = true; dict7["azimuth"] = true; dict5["azoic"] = true; dict6["azolla"] = true; dict6["azonal"] = true; dict6["azonic"] = true; dict6["azores"] = true; dict5["azote"] = true; dict6["azotic"] = true; dict5["aztec"] = true; dict7["aztecan"] = true; dict5["azure"] = true; dict7["azurite"] = true; dict6["azygos"] = true; dict7["azygous"] = true; dict6["azymia"] = true; dict4["b-52"] = true; dict6["b-girl"] = true; dict7["b-meson"] = true; dict4["b.c."] = true; dict6["b.c.e."] = true; dict4["b.o."] = true; dict6["b.t.u."] = true; dict7["b.th.u."] = true; dict4["baal"] = true; dict4["baas"] = true; dict4["baba"] = true; dict5["babar"] = true; dict7["babassu"] = true; dict7["babbitt"] = true; dict6["babble"] = true; dict7["babbler"] = true; dict4["babe"] = true; dict5["babel"] = true; dict5["babka"] = true; dict5["baboo"] = true; dict6["baboon"] = true; dict4["babu"] = true; dict4["baby"] = true; dict7["babyish"] = true; dict7["babylon"] = true; dict5["bacca"] = true; dict7["baccate"] = true; dict7["bacchic"] = true; dict7["bacchus"] = true; dict5["baccy"] = true; dict4["bach"] = true; dict4["back"] = true; dict6["backed"] = true; dict6["backer"] = true; dict7["backhoe"] = true; dict7["backing"] = true; dict7["backlog"] = true; dict7["backsaw"] = true; dict6["backup"] = true; dict5["bacon"] = true; dict6["badaga"] = true; dict6["baddie"] = true; dict4["bade"] = true; dict5["badge"] = true; dict6["badger"] = true; dict5["badly"] = true; dict7["badness"] = true; dict5["baeda"] = true; dict6["baffle"] = true; dict7["baffled"] = true; dict7["bagasse"] = true; dict6["bagdad"] = true; dict5["bagel"] = true; dict6["bagful"] = true; dict7["baggage"] = true; dict6["bagger"] = true; dict7["bagging"] = true; dict5["baggy"] = true; dict7["baghdad"] = true; dict6["bagman"] = true; dict6["bagnio"] = true; dict7["bagpipe"] = true; dict6["baguet"] = true; dict5["bahai"] = true; dict7["bahaism"] = true; dict7["bahamas"] = true; dict6["bahasa"] = true; dict7["bahrain"] = true; dict7["bahrein"] = true; dict4["baht"] = true; dict4["baic"] = true; dict6["baikal"] = true; dict4["bail"] = true; dict6["bailee"] = true; dict6["bailey"] = true; dict7["bailiff"] = true; dict6["bailor"] = true; dict7["baiomys"] = true; dict7["bairava"] = true; dict7["bairiki"] = true; dict5["bairn"] = true; dict5["baisa"] = true; dict7["baisakh"] = true; dict4["bait"] = true; dict7["baiting"] = true; dict5["baiza"] = true; dict5["baize"] = true; dict4["bake"] = true; dict5["baked"] = true; dict5["baker"] = true; dict6["bakery"] = true; dict6["baking"] = true; dict7["baklava"] = true; dict7["bakshis"] = true; dict4["baku"] = true; dict7["bakunin"] = true; dict7["balaena"] = true; dict7["balagan"] = true; dict7["balance"] = true; dict7["balanus"] = true; dict5["balas"] = true; dict6["balata"] = true; dict7["balaton"] = true; dict6["balboa"] = true; dict7["balcony"] = true; dict4["bald"] = true; dict6["balder"] = true; dict7["balding"] = true; dict6["baldly"] = true; dict5["baldr"] = true; dict7["baldric"] = true; dict7["baldwin"] = true; dict5["baldy"] = true; dict4["bale"] = true; dict6["baleen"] = true; dict7["baleful"] = true; dict7["balfour"] = true; dict4["bali"] = true; dict4["balk"] = true; dict6["balkan"] = true; dict7["balkans"] = true; dict6["balker"] = true; dict7["balking"] = true; dict5["balky"] = true; dict4["ball"] = true; dict6["ballad"] = true; dict7["ballade"] = true; dict7["ballast"] = true; dict6["ballet"] = true; dict7["ballock"] = true; dict7["balloon"] = true; dict6["ballot"] = true; dict7["ballota"] = true; dict7["ballpen"] = true; dict6["ballup"] = true; dict5["bally"] = true; dict4["balm"] = true; dict7["balmily"] = true; dict5["balmy"] = true; dict7["balochi"] = true; dict7["baloney"] = true; dict5["balsa"] = true; dict6["balsam"] = true; dict7["balsamy"] = true; dict6["baltic"] = true; dict7["baluchi"] = true; dict6["balzac"] = true; dict6["bamako"] = true; dict7["bambino"] = true; dict6["bamboo"] = true; dict7["bambusa"] = true; dict5["banal"] = true; dict6["banana"] = true; dict4["band"] = true; dict7["bandage"] = true; dict7["bandana"] = true; dict7["bandbox"] = true; dict7["bandeau"] = true; dict6["banded"] = true; dict7["banding"] = true; dict6["bandit"] = true; dict7["bandlet"] = true; dict7["bandsaw"] = true; dict7["bandung"] = true; dict5["bandy"] = true; dict4["bane"] = true; dict7["baneful"] = true; dict5["banff"] = true; dict4["bang"] = true; dict7["bang-up"] = true; dict6["banger"] = true; dict7["banging"] = true; dict7["bangkok"] = true; dict6["bangla"] = true; dict6["bangle"] = true; dict6["bangor"] = true; dict6["bangui"] = true; dict6["banian"] = true; dict6["banish"] = true; dict5["banjo"] = true; dict6["banjul"] = true; dict4["bank"] = true; dict6["banker"] = true; dict6["bankia"] = true; dict7["banking"] = true; dict5["banks"] = true; dict7["banksia"] = true; dict6["banned"] = true; dict6["banner"] = true; dict7["banning"] = true; dict7["bannock"] = true; dict5["banns"] = true; dict7["banquet"] = true; dict7["banshee"] = true; dict7["banshie"] = true; dict6["bantam"] = true; dict7["banteng"] = true; dict6["banter"] = true; dict7["banting"] = true; dict7["bantoid"] = true; dict5["bantu"] = true; dict6["banyan"] = true; dict6["banzai"] = true; dict6["baobab"] = true; dict6["baphia"] = true; dict7["baptise"] = true; dict7["baptism"] = true; dict7["baptist"] = true; dict7["baptize"] = true; dict6["baraka"] = true; dict6["barany"] = true; dict4["barb"] = true; dict7["barbary"] = true; dict7["barbate"] = true; dict6["barbed"] = true; dict6["barbel"] = true; dict7["barbell"] = true; dict6["barber"] = true; dict6["barbet"] = true; dict5["barbu"] = true; dict7["barbuda"] = true; dict4["bard"] = true; dict5["barde"] = true; dict7["bardeen"] = true; dict6["bardic"] = true; dict4["bare"] = true; dict5["bared"] = true; dict6["barely"] = true; dict4["barf"] = true; dict7["bargain"] = true; dict5["barge"] = true; dict6["bargee"] = true; dict4["bari"] = true; dict5["baric"] = true; dict7["barilla"] = true; dict6["baring"] = true; dict6["barish"] = true; dict6["barite"] = true; dict6["barium"] = true; dict4["bark"] = true; dict7["barkeep"] = true; dict6["barker"] = true; dict7["barkley"] = true; dict5["barky"] = true; dict6["barley"] = true; dict4["barm"] = true; dict7["barmaid"] = true; dict6["barman"] = true; dict5["barmy"] = true; dict4["barn"] = true; dict7["barnful"] = true; dict6["barnum"] = true; dict5["baron"] = true; dict7["baronet"] = true; dict6["barong"] = true; dict6["barony"] = true; dict7["baroque"] = true; dict6["barque"] = true; dict7["barrack"] = true; dict7["barrage"] = true; dict6["barred"] = true; dict6["barrel"] = true; dict7["barrels"] = true; dict6["barren"] = true; dict6["barrie"] = true; dict7["barrier"] = true; dict7["barring"] = true; dict6["barrio"] = true; dict7["barroom"] = true; dict6["barrow"] = true; dict4["bars"] = true; dict7["barstow"] = true; dict4["bart"] = true; dict6["barter"] = true; dict5["barth"] = true; dict6["bartok"] = true; dict6["baruch"] = true; dict5["barye"] = true; dict6["baryon"] = true; dict6["baryta"] = true; dict7["barytes"] = true; dict7["barytic"] = true; dict5["basal"] = true; dict6["basalt"] = true; dict7["bascule"] = true; dict4["base"] = true; dict5["based"] = true; dict5["basel"] = true; dict6["basely"] = true; dict7["basenji"] = true; dict4["bash"] = true; dict7["bashful"] = true; dict5["basia"] = true; dict5["basic"] = true; dict6["basics"] = true; dict6["basify"] = true; dict5["basil"] = true; dict7["basilar"] = true; dict5["basin"] = true; dict7["basinal"] = true; dict7["basined"] = true; dict7["basinet"] = true; dict5["basis"] = true; dict4["bask"] = true; dict6["basket"] = true; dict5["basle"] = true; dict7["basotho"] = true; dict6["basque"] = true; dict5["basra"] = true; dict4["bass"] = true; dict6["basset"] = true; dict6["bassia"] = true; dict7["bassine"] = true; dict7["bassist"] = true; dict5["basso"] = true; dict7["bassoon"] = true; dict4["bast"] = true; dict7["bastard"] = true; dict5["baste"] = true; dict6["baster"] = true; dict7["basting"] = true; dict7["bastion"] = true; dict6["basuco"] = true; dict6["basuto"] = true; dict4["bata"] = true; dict6["bataan"] = true; dict5["batch"] = true; dict4["bate"] = true; dict5["bated"] = true; dict7["batfish"] = true; dict7["batfowl"] = true; dict4["bath"] = true; dict5["bathe"] = true; dict6["bather"] = true; dict7["bathing"] = true; dict6["bathos"] = true; dict7["bathtub"] = true; dict7["bathyal"] = true; dict5["batik"] = true; dict5["batis"] = true; dict7["batiste"] = true; dict6["batman"] = true; dict5["batna"] = true; dict5["baton"] = true; dict4["bats"] = true; dict7["batsman"] = true; dict6["batten"] = true; dict6["batter"] = true; dict7["battery"] = true; dict7["batting"] = true; dict6["battle"] = true; dict7["battler"] = true; dict6["battue"] = true; dict5["batty"] = true; dict7["batwing"] = true; dict6["bauble"] = true; dict4["baud"] = true; dict7["bauhaus"] = true; dict5["baulk"] = true; dict7["baulker"] = true; dict4["baum"] = true; dict7["bauxite"] = true; dict7["bavaria"] = true; dict6["bawbee"] = true; dict4["bawd"] = true; dict7["bawdily"] = true; dict6["bawdry"] = true; dict5["bawdy"] = true; dict4["bawl"] = true; dict6["bawler"] = true; dict7["bawling"] = true; dict4["baya"] = true; dict6["bayard"] = true; dict5["bayat"] = true; dict6["baycol"] = true; dict5["bayer"] = true; dict5["bayes"] = true; dict6["baykal"] = true; dict7["bayonet"] = true; dict7["bayonne"] = true; dict5["bayou"] = true; dict6["bayrut"] = true; dict6["bazaar"] = true; dict5["bazar"] = true; dict7["bazooka"] = true; dict5["beach"] = true; dict6["beacon"] = true; dict4["bead"] = true; dict6["beaded"] = true; dict7["beading"] = true; dict6["beadle"] = true; dict5["beads"] = true; dict5["beady"] = true; dict6["beagle"] = true; dict4["beak"] = true; dict6["beaked"] = true; dict6["beaker"] = true; dict4["beam"] = true; dict7["beaming"] = true; dict7["beamish"] = true; dict5["beamy"] = true; dict4["bean"] = true; dict7["beanbag"] = true; dict6["beaner"] = true; dict6["beanie"] = true; dict5["beano"] = true; dict5["beany"] = true; dict4["bear"] = true; dict7["bearcat"] = true; dict5["beard"] = true; dict7["bearded"] = true; dict6["bearer"] = true; dict7["bearing"] = true; dict7["bearish"] = true; dict5["beast"] = true; dict7["beastly"] = true; dict4["beat"] = true; dict7["beat-up"] = true; dict6["beaten"] = true; dict6["beater"] = true; dict7["beatify"] = true; dict7["beating"] = true; dict7["beatles"] = true; dict7["beatnik"] = true; dict5["beats"] = true; dict4["beau"] = true; dict5["beaut"] = true; dict6["beauty"] = true; dict6["beaver"] = true; dict5["bebop"] = true; dict6["becalm"] = true; dict7["becharm"] = true; dict4["beck"] = true; dict6["becket"] = true; dict7["beckett"] = true; dict7["beckley"] = true; dict6["beckon"] = true; dict7["becloud"] = true; dict6["become"] = true; dict7["bed-hop"] = true; dict4["beda"] = true; dict6["bedamn"] = true; dict6["bedaub"] = true; dict6["bedaze"] = true; dict6["bedbug"] = true; dict6["bedded"] = true; dict6["bedder"] = true; dict7["bedding"] = true; dict4["bede"] = true; dict6["bedeck"] = true; dict7["bedevil"] = true; dict5["bedew"] = true; dict7["bedewed"] = true; dict7["bedfast"] = true; dict6["bedhop"] = true; dict7["bedight"] = true; dict5["bedim"] = true; dict7["bedizen"] = true; dict6["bedlam"] = true; dict7["bedless"] = true; dict7["bedouin"] = true; dict6["bedpan"] = true; dict7["bedpost"] = true; dict7["bedrest"] = true; dict6["bedrid"] = true; dict7["bedrock"] = true; dict7["bedroll"] = true; dict7["bedroom"] = true; dict7["bedside"] = true; dict6["bedsit"] = true; dict7["bedsore"] = true; dict7["bedtime"] = true; dict6["beduin"] = true; dict7["beebalm"] = true; dict5["beech"] = true; dict7["beechen"] = true; dict7["beecher"] = true; dict4["beef"] = true; dict7["beefalo"] = true; dict5["beefy"] = true; dict7["beehive"] = true; dict7["beeline"] = true; dict4["beep"] = true; dict6["beeper"] = true; dict4["beer"] = true; dict5["beery"] = true; dict7["beeswax"] = true; dict4["beet"] = true; dict6["beetle"] = true; dict6["befall"] = true; dict5["befit"] = true; dict5["befog"] = true; dict6["befool"] = true; dict6["before"] = true; dict6["befoul"] = true; dict5["beget"] = true; dict6["beggar"] = true; dict7["beggary"] = true; dict7["begging"] = true; dict6["begild"] = true; dict5["begin"] = true; dict7["begonia"] = true; dict7["begrime"] = true; dict7["beguile"] = true; dict7["beguine"] = true; dict5["begum"] = true; dict6["behalf"] = true; dict6["behave"] = true; dict6["behead"] = true; dict6["behest"] = true; dict6["behind"] = true; dict6["behmen"] = true; dict6["behold"] = true; dict7["behoove"] = true; dict6["behove"] = true; dict7["behrens"] = true; dict7["behring"] = true; dict5["beige"] = true; dict6["beigel"] = true; dict7["beignet"] = true; dict7["beijing"] = true; dict5["being"] = true; dict5["beira"] = true; dict6["beirut"] = true; dict7["bejewel"] = true; dict7["belabor"] = true; dict7["belarus"] = true; dict7["belated"] = true; dict5["belau"] = true; dict5["belay"] = true; dict5["belch"] = true; dict6["beldam"] = true; dict7["beldame"] = true; dict5["belem"] = true; dict7["belfast"] = true; dict6["belfry"] = true; dict7["belgian"] = true; dict7["belgium"] = true; dict5["belie"] = true; dict6["belief"] = true; dict7["believe"] = true; dict6["belike"] = true; dict6["belize"] = true; dict4["bell"] = true; dict7["bellboy"] = true; dict5["belle"] = true; dict7["bellhop"] = true; dict7["bellied"] = true; dict7["belling"] = true; dict7["bellini"] = true; dict6["bellis"] = true; dict7["bellman"] = true; dict6["belloc"] = true; dict6["bellow"] = true; dict7["bellows"] = true; dict5["belly"] = true; dict7["belmont"] = true; dict6["belong"] = true; dict7["beloved"] = true; dict5["below"] = true; dict6["belsen"] = true; dict4["belt"] = true; dict6["belted"] = true; dict7["belting"] = true; dict7["beltway"] = true; dict6["beluga"] = true; dict4["bema"] = true; dict7["bemidji"] = true; dict6["bemire"] = true; dict7["bemisia"] = true; dict6["bemoan"] = true; dict6["bemock"] = true; dict6["bemuse"] = true; dict7["bemused"] = true; dict5["bench"] = true; dict4["bend"] = true; dict6["benday"] = true; dict6["bended"] = true; dict6["bender"] = true; dict7["bending"] = true; dict7["bendopa"] = true; dict5["bends"] = true; dict7["beneath"] = true; dict7["benefic"] = true; dict7["benefit"] = true; dict7["benelux"] = true; dict5["benet"] = true; dict6["bengal"] = true; dict7["bengali"] = true; dict7["benight"] = true; dict6["benign"] = true; dict5["benin"] = true; dict7["benison"] = true; dict5["benne"] = true; dict6["bennet"] = true; dict7["bennett"] = true; dict5["benni"] = true; dict6["bennie"] = true; dict5["benny"] = true; dict4["bent"] = true; dict7["benthal"] = true; dict7["bentham"] = true; dict7["benthic"] = true; dict7["benthos"] = true; dict6["benton"] = true; dict6["benumb"] = true; dict7["benweed"] = true; dict7["benzene"] = true; dict7["benzine"] = true; dict7["benzoic"] = true; dict7["benzoin"] = true; dict6["benzol"] = true; dict6["benzyl"] = true; dict7["beograd"] = true; dict7["beowulf"] = true; dict7["bequest"] = true; dict6["berate"] = true; dict6["berber"] = true; dict7["berbers"] = true; dict5["bercy"] = true; dict7["bereave"] = true; dict6["bereft"] = true; dict5["beret"] = true; dict4["berg"] = true; dict7["bergall"] = true; dict6["bergen"] = true; dict7["bergman"] = true; dict7["bergson"] = true; dict5["beria"] = true; dict6["bering"] = true; dict5["berit"] = true; dict6["berith"] = true; dict4["berk"] = true; dict7["berlage"] = true; dict6["berlin"] = true; dict7["berlioz"] = true; dict4["berm"] = true; dict7["bermuda"] = true; dict4["bern"] = true; dict7["bernard"] = true; dict5["berne"] = true; dict7["bernini"] = true; dict5["beroe"] = true; dict5["berra"] = true; dict7["berried"] = true; dict5["berry"] = true; dict7["berserk"] = true; dict5["berth"] = true; dict5["beryl"] = true; dict7["beseech"] = true; dict6["beseem"] = true; dict5["beset"] = true; dict7["beshrew"] = true; dict7["besides"] = true; dict7["besiege"] = true; dict7["besmear"] = true; dict5["besom"] = true; dict5["besot"] = true; dict7["bespeak"] = true; dict7["bespoke"] = true; dict6["bespot"] = true; dict6["bessel"] = true; dict7["bessera"] = true; dict7["besseya"] = true; dict4["best"] = true; dict7["bestial"] = true; dict6["bestir"] = true; dict6["bestow"] = true; dict7["bestrew"] = true; dict4["beta"] = true; dict7["betaine"] = true; dict5["betel"] = true; dict4["beth"] = true; dict5["bethe"] = true; dict6["bethel"] = true; dict7["bethink"] = true; dict7["bethune"] = true; dict6["betide"] = true; dict7["betimes"] = true; dict6["betise"] = true; dict7["betoken"] = true; dict6["betray"] = true; dict7["betroth"] = true; dict6["better"] = true; dict7["betting"] = true; dict7["bettong"] = true; dict6["bettor"] = true; dict6["betula"] = true; dict7["between"] = true; dict7["betwixt"] = true; dict5["bevel"] = true; dict5["bevin"] = true; dict4["bevy"] = true; dict6["bewail"] = true; dict6["beware"] = true; dict7["bewitch"] = true; dict6["bewray"] = true; dict6["bextra"] = true; dict6["beyond"] = true; dict6["bezant"] = true; dict5["bezel"] = true; dict7["bezique"] = true; dict7["bezzant"] = true; dict6["bhadon"] = true; dict5["bhaga"] = true; dict6["bhakti"] = true; dict5["bhang"] = true; dict6["bharat"] = true; dict6["bhutan"] = true; dict7["bhutani"] = true; dict5["bialy"] = true; dict4["bias"] = true; dict6["biased"] = true; dict7["biaural"] = true; dict6["biaxal"] = true; dict7["biaxate"] = true; dict7["biaxial"] = true; dict6["bibbed"] = true; dict5["bible"] = true; dict7["bibless"] = true; dict5["bibos"] = true; dict6["biceps"] = true; dict6["bicker"] = true; dict7["bicolor"] = true; dict6["bicorn"] = true; dict7["bicorne"] = true; dict7["bicycle"] = true; dict4["bida"] = true; dict6["bidder"] = true; dict7["bidding"] = true; dict5["biddy"] = true; dict4["bide"] = true; dict6["bidens"] = true; dict5["bidet"] = true; dict4["bier"] = true; dict6["bierce"] = true; dict6["biface"] = true; dict4["biff"] = true; dict5["bifid"] = true; dict7["bifilar"] = true; dict7["bifocal"] = true; dict6["biform"] = true; dict6["bigamy"] = true; dict6["bigeye"] = true; dict7["bigfoot"] = true; dict6["bigger"] = true; dict6["biggin"] = true; dict7["biggish"] = true; dict7["bighead"] = true; dict7["bighorn"] = true; dict5["bight"] = true; dict7["bigness"] = true; dict5["bigos"] = true; dict5["bigot"] = true; dict7["bigoted"] = true; dict7["bigotry"] = true; dict6["bigram"] = true; dict6["bigwig"] = true; dict5["bihar"] = true; dict6["bihari"] = true; dict5["bijou"] = true; dict4["bike"] = true; dict6["bikers"] = true; dict6["bikini"] = true; dict5["bilby"] = true; dict4["bile"] = true; dict5["bilge"] = true; dict6["bilges"] = true; dict5["bilgy"] = true; dict7["biliary"] = true; dict7["bilimbi"] = true; dict7["bilious"] = true; dict4["bilk"] = true; dict4["bill"] = true; dict6["billed"] = true; dict6["billet"] = true; dict7["billing"] = true; dict7["billion"] = true; dict6["billow"] = true; dict7["billowy"] = true; dict5["billy"] = true; dict6["billyo"] = true; dict7["billyoh"] = true; dict7["bilobed"] = true; dict6["biloxi"] = true; dict7["bilsted"] = true; dict7["biltong"] = true; dict5["bimbo"] = true; dict7["bimetal"] = true; dict5["bimli"] = true; dict7["bimodal"] = true; dict6["binary"] = true; dict6["binate"] = true; dict4["bind"] = true; dict6["binder"] = true; dict7["bindery"] = true; dict7["binding"] = true; dict4["bine"] = true; dict5["binet"] = true; dict6["binful"] = true; dict5["binge"] = true; dict6["binger"] = true; dict6["bingle"] = true; dict5["bingo"] = true; dict6["bioarm"] = true; dict7["biochip"] = true; dict7["biogeny"] = true; dict5["bioko"] = true; dict7["biology"] = true; dict7["biomass"] = true; dict5["biome"] = true; dict6["bionic"] = true; dict7["bionics"] = true; dict5["biont"] = true; dict6["biopsy"] = true; dict5["biota"] = true; dict7["biotech"] = true; dict6["biotic"] = true; dict6["biotin"] = true; dict7["biotite"] = true; dict7["biotype"] = true; dict5["biped"] = true; dict7["bipedal"] = true; dict7["biplane"] = true; dict7["bipolar"] = true; dict7["biprism"] = true; dict5["birch"] = true; dict7["birchen"] = true; dict4["bird"] = true; dict6["birder"] = true; dict6["birdie"] = true; dict7["biretta"] = true; dict7["biriani"] = true; dict6["birken"] = true; dict4["birl"] = true; dict5["birle"] = true; dict7["birling"] = true; dict4["biro"] = true; dict4["birr"] = true; dict5["birth"] = true; dict7["biryani"] = true; dict7["bisayan"] = true; dict7["bisayas"] = true; dict7["biscuit"] = true; dict4["bise"] = true; dict6["bisect"] = true; dict7["bishkek"] = true; dict6["bishop"] = true; dict6["biskek"] = true; dict7["bismark"] = true; dict7["bismuth"] = true; dict5["bison"] = true; dict6["bisque"] = true; dict6["bissau"] = true; dict6["bister"] = true; dict6["bistre"] = true; dict7["bistred"] = true; dict6["bistro"] = true; dict5["bitch"] = true; dict6["bitchy"] = true; dict4["bite"] = true; dict5["biter"] = true; dict6["biting"] = true; dict5["bitis"] = true; dict6["bitmap"] = true; dict5["bitok"] = true; dict4["bitt"] = true; dict6["bitter"] = true; dict7["bittern"] = true; dict7["bitters"] = true; dict6["bittie"] = true; dict5["bitty"] = true; dict7["bitumen"] = true; dict7["bivalve"] = true; dict7["bivouac"] = true; dict7["bizarre"] = true; dict4["bize"] = true; dict5["bizet"] = true; dict7["bizonal"] = true; dict4["blab"] = true; dict7["blabber"] = true; dict6["blabby"] = true; dict5["black"] = true; dict7["blacken"] = true; dict7["bladder"] = true; dict5["blade"] = true; dict6["bladed"] = true; dict4["blae"] = true; dict4["blah"] = true; dict5["blahs"] = true; dict5["blain"] = true; dict5["blair"] = true; dict5["blake"] = true; dict5["blame"] = true; dict6["blamed"] = true; dict5["blanc"] = true; dict6["blanch"] = true; dict5["bland"] = true; dict7["blandly"] = true; dict5["blank"] = true; dict7["blanket"] = true; dict7["blankly"] = true; dict5["blare"] = true; dict7["blarina"] = true; dict7["blaring"] = true; dict7["blarney"] = true; dict5["blase"] = true; dict5["blast"] = true; dict7["blasted"] = true; dict7["blaster"] = true; dict4["blat"] = true; dict7["blatant"] = true; dict5["blate"] = true; dict7["blather"] = true; dict6["blatta"] = true; dict5["blaze"] = true; dict6["blazer"] = true; dict7["blazing"] = true; dict6["blazon"] = true; dict6["bleach"] = true; dict5["bleak"] = true; dict7["bleakly"] = true; dict5["blear"] = true; dict6["bleary"] = true; dict5["bleat"] = true; dict4["bleb"] = true; dict7["blebbed"] = true; dict6["blebby"] = true; dict5["bleed"] = true; dict7["bleeder"] = true; dict5["bleep"] = true; dict7["blemish"] = true; dict6["blench"] = true; dict5["blend"] = true; dict6["blende"] = true; dict7["blended"] = true; dict7["blender"] = true; dict6["blenny"] = true; dict7["bleriot"] = true; dict5["bless"] = true; dict7["blessed"] = true; dict5["blest"] = true; dict7["blether"] = true; dict6["bletia"] = true; dict4["bleu"] = true; dict7["blewits"] = true; dict5["blida"] = true; dict5["bligh"] = true; dict7["blighia"] = true; dict6["blight"] = true; dict7["blighty"] = true; dict5["blimp"] = true; dict5["blind"] = true; dict7["blinded"] = true; dict7["blinder"] = true; dict7["blindly"] = true; dict5["bling"] = true; dict5["blini"] = true; dict5["blink"] = true; dict7["blinker"] = true; dict6["blinks"] = true; dict6["blintz"] = true; dict7["blintze"] = true; dict5["bliny"] = true; dict4["blip"] = true; dict5["bliss"] = true; dict7["blissus"] = true; dict7["blister"] = true; dict6["blithe"] = true; dict7["blither"] = true; dict5["blitt"] = true; dict5["blitz"] = true; dict6["blixen"] = true; dict5["bloat"] = true; dict7["bloater"] = true; dict4["blob"] = true; dict4["bloc"] = true; dict5["bloch"] = true; dict5["block"] = true; dict7["blocked"] = true; dict7["blocker"] = true; dict6["blocky"] = true; dict4["blog"] = true; dict7["blogger"] = true; dict4["blok"] = true; dict5["bloke"] = true; dict6["blolly"] = true; dict5["blond"] = true; dict6["blonde"] = true; dict5["blood"] = true; dict7["blooded"] = true; dict6["bloody"] = true; dict5["bloom"] = true; dict7["bloomer"] = true; dict7["blooper"] = true; dict7["blossom"] = true; dict4["blot"] = true; dict6["blotch"] = true; dict7["blotchy"] = true; dict7["blotter"] = true; dict6["blotto"] = true; dict6["blouse"] = true; dict4["blow"] = true; dict6["blower"] = true; dict7["blowfly"] = true; dict7["blowgun"] = true; dict7["blowing"] = true; dict7["blowjob"] = true; dict5["blown"] = true; dict7["blowout"] = true; dict6["blowsy"] = true; dict6["blowup"] = true; dict5["blowy"] = true; dict6["blowzy"] = true; dict6["blu-82"] = true; dict4["blub"] = true; dict7["blubber"] = true; dict7["blucher"] = true; dict4["blue"] = true; dict7["bluefin"] = true; dict7["blueing"] = true; dict7["blueish"] = true; dict5["blues"] = true; dict5["bluff"] = true; dict7["bluffer"] = true; dict7["bluffly"] = true; dict6["bluing"] = true; dict6["bluish"] = true; dict7["blunder"] = true; dict5["blunt"] = true; dict7["blunted"] = true; dict7["bluntly"] = true; dict4["blur"] = true; dict5["blurb"] = true; dict7["blurred"] = true; dict6["blurry"] = true; dict5["blurt"] = true; dict5["blush"] = true; dict7["blusher"] = true; dict7["bluster"] = true; dict4["bmdo"] = true; dict4["bmus"] = true; dict6["bo's'n"] = true; dict6["bo'sun"] = true; dict5["boann"] = true; dict4["boar"] = true; dict5["board"] = true; dict7["boarder"] = true; dict6["boards"] = true; dict5["boast"] = true; dict7["boaster"] = true; dict4["boat"] = true; dict6["boater"] = true; dict7["boating"] = true; dict7["boatman"] = true; dict6["bobber"] = true; dict6["bobbin"] = true; dict6["bobble"] = true; dict5["bobby"] = true; dict6["bobcat"] = true; dict7["bobsled"] = true; dict7["bobtail"] = true; dict5["bocce"] = true; dict5["bocci"] = true; dict6["boccie"] = true; dict5["boche"] = true; dict4["bock"] = true; dict4["bode"] = true; dict6["bodega"] = true; dict5["bodge"] = true; dict6["bodice"] = true; dict6["bodied"] = true; dict6["bodily"] = true; dict6["boding"] = true; dict6["bodkin"] = true; dict6["bodoni"] = true; dict4["body"] = true; dict5["boehm"] = true; dict6["boehme"] = true; dict5["boell"] = true; dict7["boeotia"] = true; dict4["boer"] = true; dict5["boeuf"] = true; dict6["boffin"] = true; dict5["boffo"] = true; dict6["bogart"] = true; dict7["bogbean"] = true; dict5["bogey"] = true; dict6["boggle"] = true; dict5["boggy"] = true; dict5["bogie"] = true; dict6["bogmat"] = true; dict6["bogota"] = true; dict5["bogus"] = true; dict4["bogy"] = true; dict7["bohemia"] = true; dict5["bohme"] = true; dict4["bohr"] = true; dict7["bohrium"] = true; dict6["boidae"] = true; dict4["boil"] = true; dict6["boiled"] = true; dict6["boiler"] = true; dict7["boiling"] = true; dict5["boise"] = true; dict6["bokkos"] = true; dict7["bokmaal"] = true; dict6["bokmal"] = true; dict4["bola"] = true; dict7["bolanci"] = true; dict4["bold"] = true; dict6["boldly"] = true; dict4["bole"] = true; dict6["bolero"] = true; dict6["bolete"] = true; dict7["boletus"] = true; dict6["boleyn"] = true; dict6["bolide"] = true; dict7["bolivar"] = true; dict7["bolivia"] = true; dict4["boll"] = true; dict7["bollard"] = true; dict6["bollix"] = true; dict7["bollock"] = true; dict4["bolo"] = true; dict7["bologna"] = true; dict7["boloney"] = true; dict7["bolshie"] = true; dict6["bolshy"] = true; dict7["bolster"] = true; dict4["bolt"] = true; dict5["bolti"] = true; dict5["bolus"] = true; dict7["bolzano"] = true; dict7["bomarea"] = true; dict4["bomb"] = true; dict7["bombard"] = true; dict7["bombast"] = true; dict6["bombax"] = true; dict6["bombay"] = true; dict6["bomber"] = true; dict6["bombie"] = true; dict7["bombina"] = true; dict7["bombing"] = true; dict7["bomblet"] = true; dict6["bombus"] = true; dict6["bombyx"] = true; dict7["bonaire"] = true; dict7["bonanza"] = true; dict6["bonasa"] = true; dict6["bonbon"] = true; dict5["bonce"] = true; dict4["bond"] = true; dict7["bondage"] = true; dict7["bonding"] = true; dict7["bondman"] = true; dict6["bonduc"] = true; dict4["bone"] = true; dict5["boned"] = true; dict7["bonelet"] = true; dict5["boner"] = true; dict5["bones"] = true; dict7["boneset"] = true; dict6["bonete"] = true; dict5["boney"] = true; dict7["bonfire"] = true; dict4["bong"] = true; dict5["bongo"] = true; dict7["bonheur"] = true; dict6["bonito"] = true; dict4["bonk"] = true; dict7["bonkers"] = true; dict4["bonn"] = true; dict6["bonnet"] = true; dict6["bonney"] = true; dict6["bonnie"] = true; dict7["bonnily"] = true; dict5["bonny"] = true; dict6["bonobo"] = true; dict6["bonsai"] = true; dict5["bonus"] = true; dict6["bonxie"] = true; dict4["bony"] = true; dict6["bonzer"] = true; dict7["boo-boo"] = true; dict4["boob"] = true; dict5["booby"] = true; dict6["boodle"] = true; dict6["booger"] = true; dict6["boogie"] = true; dict4["book"] = true; dict6["booked"] = true; dict7["bookend"] = true; dict6["booker"] = true; dict6["bookie"] = true; dict7["booking"] = true; dict7["bookish"] = true; dict7["booklet"] = true; dict7["bookman"] = true; dict5["boole"] = true; dict7["boolean"] = true; dict4["boom"] = true; dict6["boomer"] = true; dict7["booming"] = true; dict4["boon"] = true; dict5["boone"] = true; dict4["boor"] = true; dict7["boorish"] = true; dict5["boost"] = true; dict7["booster"] = true; dict4["boot"] = true; dict6["booted"] = true; dict6["bootee"] = true; dict6["bootes"] = true; dict5["booth"] = true; dict6["bootie"] = true; dict7["bootleg"] = true; dict5["booty"] = true; dict7["booyong"] = true; dict5["booze"] = true; dict6["boozer"] = true; dict7["boozing"] = true; dict5["boozy"] = true; dict6["bopeep"] = true; dict7["boracic"] = true; dict6["borage"] = true; dict6["borago"] = true; dict6["borate"] = true; dict7["borated"] = true; dict5["borax"] = true; dict6["border"] = true; dict4["bore"] = true; dict6["boreal"] = true; dict6["boreas"] = true; dict5["bored"] = true; dict7["boredom"] = true; dict5["borer"] = true; dict6["borges"] = true; dict6["borgia"] = true; dict5["boric"] = true; dict6["boring"] = true; dict4["born"] = true; dict7["bornean"] = true; dict6["borneo"] = true; dict7["bornite"] = true; dict7["borodin"] = true; dict5["boron"] = true; dict7["boronic"] = true; dict7["borough"] = true; dict6["borrow"] = true; dict6["borsch"] = true; dict7["borscht"] = true; dict5["borsh"] = true; dict7["borshch"] = true; dict6["borsht"] = true; dict7["borstal"] = true; dict7["bortsch"] = true; dict6["borzoi"] = true; dict5["bos'n"] = true; dict4["bosc"] = true; dict5["bosch"] = true; dict4["bose"] = true; dict4["bosh"] = true; dict5["bosie"] = true; dict4["bosk"] = true; dict5["bosky"] = true; dict6["bosnia"] = true; dict7["bosnian"] = true; dict5["bosom"] = true; dict7["bosomed"] = true; dict6["bosomy"] = true; dict5["boson"] = true; dict4["boss"] = true; dict7["bossism"] = true; dict5["bossy"] = true; dict6["boston"] = true; dict5["bosun"] = true; dict7["boswell"] = true; dict4["bota"] = true; dict7["botanic"] = true; dict6["botany"] = true; dict5["botch"] = true; dict7["botched"] = true; dict7["botcher"] = true; dict6["botchy"] = true; dict6["botfly"] = true; dict4["both"] = true; dict6["bother"] = true; dict7["botonee"] = true; dict5["botox"] = true; dict6["bottle"] = true; dict7["bottler"] = true; dict6["bottom"] = true; dict7["botulin"] = true; dict7["bouchee"] = true; dict6["boucle"] = true; dict7["boudoir"] = true; dict6["bouffe"] = true; dict5["bough"] = true; dict7["boughed"] = true; dict7["boulder"] = true; dict5["boule"] = true; dict6["boulez"] = true; dict6["boulle"] = true; dict6["bounce"] = true; dict7["bouncer"] = true; dict6["bouncy"] = true; dict5["bound"] = true; dict7["bounded"] = true; dict7["bounden"] = true; dict7["bounder"] = true; dict6["bounds"] = true; dict6["bounty"] = true; dict7["bouquet"] = true; dict7["bourbon"] = true; dict7["bourdon"] = true; dict5["bourn"] = true; dict6["bourne"] = true; dict6["bourse"] = true; dict5["bouse"] = true; dict4["bout"] = true; dict6["bouyei"] = true; dict5["bovid"] = true; dict7["bovidae"] = true; dict7["bovinae"] = true; dict6["bovine"] = true; dict6["bovini"] = true; dict6["bovril"] = true; dict7["bow-tie"] = true; dict7["bow-wow"] = true; dict7["bowdler"] = true; dict5["bowed"] = true; dict5["bowel"] = true; dict6["bowels"] = true; dict5["bower"] = true; dict6["bowery"] = true; dict6["bowfin"] = true; dict7["bowhead"] = true; dict5["bowie"] = true; dict6["bowiea"] = true; dict6["bowing"] = true; dict7["bowknot"] = true; dict4["bowl"] = true; dict7["bowlder"] = true; dict6["bowleg"] = true; dict6["bowler"] = true; dict7["bowlful"] = true; dict7["bowline"] = true; dict7["bowling"] = true; dict5["bowls"] = true; dict6["bowman"] = true; dict5["bowse"] = true; dict6["bowtie"] = true; dict6["boxcar"] = true; dict7["boxcars"] = true; dict5["boxed"] = true; dict5["boxer"] = true; dict6["boxers"] = true; dict7["boxfish"] = true; dict6["boxful"] = true; dict6["boxing"] = true; dict7["boxlike"] = true; dict7["boxwood"] = true; dict4["boxy"] = true; dict7["boycott"] = true; dict7["boyhood"] = true; dict6["boyish"] = true; dict5["boyle"] = true; dict7["boylike"] = true; dict5["boyne"] = true; dict7["bozeman"] = true; dict4["bozo"] = true; dict7["brabble"] = true; dict5["brace"] = true; dict6["braced"] = true; dict6["bracer"] = true; dict7["bracero"] = true; dict6["braces"] = true; dict7["bracing"] = true; dict7["bracken"] = true; dict7["bracket"] = true; dict5["bract"] = true; dict7["bracted"] = true; dict4["brad"] = true; dict7["bradawl"] = true; dict7["bradley"] = true; dict5["brady"] = true; dict4["brae"] = true; dict4["brag"] = true; dict5["braga"] = true; dict5["brage"] = true; dict5["bragg"] = true; dict7["bragger"] = true; dict6["braggy"] = true; dict5["bragi"] = true; dict5["brahe"] = true; dict6["brahma"] = true; dict7["brahman"] = true; dict6["brahmi"] = true; dict7["brahmin"] = true; dict6["brahms"] = true; dict6["brahui"] = true; dict5["braid"] = true; dict7["braided"] = true; dict5["brail"] = true; dict7["braille"] = true; dict5["brain"] = true; dict6["brainy"] = true; dict6["braise"] = true; dict7["braised"] = true; dict5["brake"] = true; dict6["brakes"] = true; dict5["braky"] = true; dict7["braless"] = true; dict5["brama"] = true; dict7["bramble"] = true; dict7["brambly"] = true; dict4["bran"] = true; dict6["branch"] = true; dict7["branchy"] = true; dict5["brand"] = true; dict7["branded"] = true; dict6["brandt"] = true; dict6["brandy"] = true; dict5["brant"] = true; dict6["branta"] = true; dict6["braque"] = true; dict5["brash"] = true; dict7["brashly"] = true; dict7["brasier"] = true; dict6["brasil"] = true; dict6["brasov"] = true; dict5["brass"] = true; dict7["brassia"] = true; dict7["brassie"] = true; dict6["brassy"] = true; dict4["brat"] = true; dict7["brattle"] = true; dict6["bratty"] = true; dict5["braun"] = true; dict7["bravado"] = true; dict5["brave"] = true; dict7["bravely"] = true; dict7["bravery"] = true; dict5["bravo"] = true; dict7["bravura"] = true; dict4["braw"] = true; dict5["brawl"] = true; dict7["brawler"] = true; dict5["brawn"] = true; dict6["brawny"] = true; dict4["bray"] = true; dict5["braze"] = true; dict6["brazen"] = true; dict7["brazier"] = true; dict6["brazil"] = true; dict6["brazos"] = true; dict6["breach"] = true; dict5["bread"] = true; dict7["breadth"] = true; dict5["break"] = true; dict7["breakax"] = true; dict7["breaker"] = true; dict7["breakup"] = true; dict5["bream"] = true; dict6["breast"] = true; dict6["breath"] = true; dict7["breathe"] = true; dict7["breccia"] = true; dict6["brecht"] = true; dict6["breech"] = true; dict5["breed"] = true; dict7["breeder"] = true; dict6["breeze"] = true; dict6["breezy"] = true; dict6["bregma"] = true; dict5["breiz"] = true; dict6["bremen"] = true; dict4["bren"] = true; dict5["brent"] = true; dict7["brescia"] = true; dict7["breslau"] = true; dict5["brest"] = true; dict6["breton"] = true; dict6["breuer"] = true; dict5["breve"] = true; dict6["brevet"] = true; dict7["brevity"] = true; dict4["brew"] = true; dict7["brewage"] = true; dict6["brewer"] = true; dict7["brewery"] = true; dict7["brewing"] = true; dict7["brewpub"] = true; dict5["briar"] = true; dict6["briard"] = true; dict6["briary"] = true; dict5["bribe"] = true; dict6["briber"] = true; dict7["bribery"] = true; dict5["brick"] = true; dict7["brickle"] = true; dict7["brickly"] = true; dict7["bricole"] = true; dict6["bridal"] = true; dict5["bride"] = true; dict6["bridge"] = true; dict7["bridges"] = true; dict7["bridget"] = true; dict6["bridle"] = true; dict7["bridoon"] = true; dict4["brie"] = true; dict5["brief"] = true; dict7["briefly"] = true; dict6["briefs"] = true; dict5["brier"] = true; dict6["briery"] = true; dict4["brig"] = true; dict7["brigade"] = true; dict7["brigand"] = true; dict6["bright"] = true; dict6["brigid"] = true; dict6["brigit"] = true; dict5["brill"] = true; dict4["brim"] = true; dict7["brimful"] = true; dict7["brinded"] = true; dict7["brindle"] = true; dict5["brine"] = true; dict5["bring"] = true; dict7["brinjal"] = true; dict5["brink"] = true; dict7["brinton"] = true; dict5["briny"] = true; dict4["brio"] = true; dict7["brioche"] = true; dict6["briony"] = true; dict7["briquet"] = true; dict4["bris"] = true; dict7["brisant"] = true; dict5["brisk"] = true; dict7["brisken"] = true; dict7["brisket"] = true; dict7["briskly"] = true; dict5["briss"] = true; dict7["bristle"] = true; dict7["bristly"] = true; dict7["bristol"] = true; dict4["brit"] = true; dict7["britain"] = true; dict5["brith"] = true; dict7["british"] = true; dict6["briton"] = true; dict5["brits"] = true; dict5["britt"] = true; dict7["britten"] = true; dict7["brittle"] = true; dict4["brno"] = true; dict6["broach"] = true; dict5["broad"] = true; dict7["broadax"] = true; dict7["broaden"] = true; dict7["broadly"] = true; dict5["broca"] = true; dict7["brocade"] = true; dict7["brocket"] = true; dict6["brogan"] = true; dict7["broglie"] = true; dict6["brogue"] = true; dict7["broider"] = true; dict5["broil"] = true; dict7["broiled"] = true; dict7["broiler"] = true; dict5["broke"] = true; dict6["broken"] = true; dict6["broker"] = true; dict6["brolly"] = true; dict7["bromate"] = true; dict5["brome"] = true; dict6["bromic"] = true; dict7["bromide"] = true; dict7["bromine"] = true; dict6["bromus"] = true; dict5["bronc"] = true; dict7["broncho"] = true; dict6["bronco"] = true; dict6["bronte"] = true; dict5["bronx"] = true; dict6["bronze"] = true; dict7["bronzed"] = true; dict6["bronzy"] = true; dict6["brooch"] = true; dict5["brood"] = true; dict7["brooder"] = true; dict6["broody"] = true; dict5["brook"] = true; dict6["brooke"] = true; dict6["brooks"] = true; dict5["broom"] = true; dict5["broth"] = true; dict7["brothel"] = true; dict7["brother"] = true; dict7["brotula"] = true; dict4["brow"] = true; dict5["brown"] = true; dict6["browne"] = true; dict7["browned"] = true; dict7["brownie"] = true; dict6["browse"] = true; dict7["browser"] = true; dict5["bruce"] = true; dict5["bruch"] = true; dict7["bruchus"] = true; dict7["brucine"] = true; dict7["bruegel"] = true; dict6["bruges"] = true; dict5["bruin"] = true; dict6["bruise"] = true; dict7["bruiser"] = true; dict5["bruit"] = true; dict5["brule"] = true; dict6["brumal"] = true; dict7["brummie"] = true; dict6["brummy"] = true; dict7["brumous"] = true; dict6["brunch"] = true; dict6["brunei"] = true; dict6["brunet"] = true; dict5["brunn"] = true; dict5["bruno"] = true; dict5["brunt"] = true; dict5["brusa"] = true; dict5["brush"] = true; dict7["brushed"] = true; dict7["brushup"] = true; dict6["brushy"] = true; dict5["brusk"] = true; dict7["brusque"] = true; dict4["brut"] = true; dict6["brutal"] = true; dict5["brute"] = true; dict7["brutish"] = true; dict6["brutus"] = true; dict7["bruxism"] = true; dict4["brya"] = true; dict7["bryales"] = true; dict5["bryan"] = true; dict6["bryony"] = true; dict7["bryozoa"] = true; dict5["bryum"] = true; dict6["bsarch"] = true; dict7["bubalus"] = true; dict6["bubble"] = true; dict7["bubbler"] = true; dict6["bubbly"] = true; dict5["buber"] = true; dict4["bubo"] = true; dict7["bubonic"] = true; dict6["buccal"] = true; dict7["buccula"] = true; dict7["buceros"] = true; dict7["buchloe"] = true; dict7["buchner"] = true; dict4["buck"] = true; dict6["bucket"] = true; dict7["buckeye"] = true; dict6["buckle"] = true; dict7["buckler"] = true; dict7["buckram"] = true; dict7["bucksaw"] = true; dict7["bucolic"] = true; dict6["buddha"] = true; dict7["budding"] = true; dict5["buddy"] = true; dict5["budge"] = true; dict6["budget"] = true; dict6["budgie"] = true; dict4["buff"] = true; dict7["buffalo"] = true; dict6["buffer"] = true; dict6["buffet"] = true; dict7["buffoon"] = true; dict4["bufo"] = true; dict7["bugaboo"] = true; dict7["buganda"] = true; dict7["bugbane"] = true; dict7["bugbear"] = true; dict6["bugged"] = true; dict6["bugger"] = true; dict7["buggery"] = true; dict5["buggy"] = true; dict5["bugle"] = true; dict6["bugler"] = true; dict7["bugloss"] = true; dict4["buhl"] = true; dict5["build"] = true; dict7["builder"] = true; dict7["buildup"] = true; dict5["built"] = true; dict7["buirdly"] = true; dict4["bulb"] = true; dict6["bulbar"] = true; dict6["bulbed"] = true; dict6["bulbil"] = true; dict7["bulblet"] = true; dict7["bulbous"] = true; dict6["bulbul"] = true; dict5["bulge"] = true; dict7["bulghur"] = true; dict7["bulging"] = true; dict6["bulgur"] = true; dict5["bulgy"] = true; dict7["bulimia"] = true; dict7["bulimic"] = true; dict4["bulk"] = true; dict5["bulky"] = true; dict4["bull"] = true; dict5["bulla"] = true; dict7["bullace"] = true; dict7["bullate"] = true; dict7["bullbat"] = true; dict7["bulldog"] = true; dict6["bullet"] = true; dict7["bullion"] = true; dict7["bullish"] = true; dict7["bullock"] = true; dict7["bullpen"] = true; dict5["bully"] = true; dict7["bulrush"] = true; dict7["bulwark"] = true; dict6["bumble"] = true; dict7["bumbler"] = true; dict7["bumboat"] = true; dict7["bumelia"] = true; dict4["bumf"] = true; dict6["bummer"] = true; dict4["bump"] = true; dict6["bumper"] = true; dict5["bumph"] = true; dict7["bumpkin"] = true; dict5["bumpy"] = true; dict4["buna"] = true; dict5["bunce"] = true; dict5["bunch"] = true; dict6["bunche"] = true; dict6["bunchy"] = true; dict5["bunco"] = true; dict6["bundle"] = true; dict4["bung"] = true; dict6["bungee"] = true; dict6["bungle"] = true; dict7["bungled"] = true; dict7["bungler"] = true; dict6["bunion"] = true; dict4["bunk"] = true; dict6["bunker"] = true; dict5["bunko"] = true; dict6["bunkum"] = true; dict5["bunny"] = true; dict4["buns"] = true; dict6["bunsen"] = true; dict4["bunt"] = true; dict6["buntal"] = true; dict6["bunter"] = true; dict7["bunting"] = true; dict6["bunuel"] = true; dict6["bunyan"] = true; dict4["buoy"] = true; dict7["buoyant"] = true; dict4["bura"] = true; dict7["burbage"] = true; dict7["burbank"] = true; dict6["burble"] = true; dict6["burbly"] = true; dict6["burbot"] = true; dict6["burden"] = true; dict7["burdock"] = true; dict6["bureau"] = true; dict5["buret"] = true; dict7["burette"] = true; dict4["burg"] = true; dict7["burgeon"] = true; dict6["burger"] = true; dict7["burgess"] = true; dict5["burgh"] = true; dict7["burgher"] = true; dict7["burglar"] = true; dict6["burgle"] = true; dict6["burgoo"] = true; dict6["burial"] = true; dict6["buried"] = true; dict5["burin"] = true; dict4["burk"] = true; dict5["burka"] = true; dict5["burke"] = true; dict6["burked"] = true; dict4["burl"] = true; dict6["burlap"] = true; dict6["burled"] = true; dict5["burly"] = true; dict5["burma"] = true; dict7["burmese"] = true; dict4["burn"] = true; dict6["burned"] = true; dict6["burner"] = true; dict7["burnett"] = true; dict7["burnham"] = true; dict7["burning"] = true; dict7["burnish"] = true; dict7["burnous"] = true; dict5["burns"] = true; dict5["burnt"] = true; dict6["burnup"] = true; dict4["burp"] = true; dict7["burping"] = true; dict5["burqa"] = true; dict4["burr"] = true; dict6["burred"] = true; dict7["burrito"] = true; dict5["burro"] = true; dict6["burrow"] = true; dict5["burry"] = true; dict5["bursa"] = true; dict6["bursal"] = true; dict6["bursar"] = true; dict7["bursary"] = true; dict7["bursera"] = true; dict5["burst"] = true; dict7["burster"] = true; dict4["burt"] = true; dict7["burthen"] = true; dict6["burton"] = true; dict7["burundi"] = true; dict4["bury"] = true; dict7["burying"] = true; dict6["busbar"] = true; dict6["busboy"] = true; dict5["busby"] = true; dict4["bush"] = true; dict6["bushed"] = true; dict6["bushel"] = true; dict7["bushido"] = true; dict7["bushing"] = true; dict7["bushman"] = true; dict7["bushtit"] = true; dict5["bushy"] = true; dict6["busily"] = true; dict4["busk"] = true; dict6["busker"] = true; dict6["buskin"] = true; dict7["busload"] = true; dict6["busman"] = true; dict6["buspar"] = true; dict4["buss"] = true; dict4["bust"] = true; dict7["bust-up"] = true; dict7["bustard"] = true; dict6["busted"] = true; dict6["buster"] = true; dict7["bustier"] = true; dict6["bustle"] = true; dict5["busty"] = true; dict4["busy"] = true; dict6["butane"] = true; dict7["butanol"] = true; dict5["butat"] = true; dict5["butch"] = true; dict7["butcher"] = true; dict5["butea"] = true; dict6["butene"] = true; dict5["buteo"] = true; dict6["butler"] = true; dict4["butt"] = true; dict5["butte"] = true; dict6["butter"] = true; dict7["buttery"] = true; dict7["buttock"] = true; dict6["button"] = true; dict7["buttony"] = true; dict5["butty"] = true; dict5["butut"] = true; dict5["butyl"] = true; dict7["butyric"] = true; dict7["butyrin"] = true; dict5["buxom"] = true; dict7["buxomly"] = true; dict5["buxus"] = true; dict7["buyback"] = true; dict5["buyer"] = true; dict4["buyi"] = true; dict6["buying"] = true; dict6["buyout"] = true; dict4["buzz"] = true; dict7["buzzard"] = true; dict6["buzzer"] = true; dict7["buzzing"] = true; dict5["bvd's"] = true; dict6["by-bid"] = true; dict7["by-blow"] = true; dict7["by-line"] = true; dict6["byblos"] = true; dict7["bycatch"] = true; dict7["bye-bye"] = true; dict6["bygone"] = true; dict5["bylaw"] = true; dict6["byname"] = true; dict6["bypass"] = true; dict6["bypast"] = true; dict6["bypath"] = true; dict6["byplay"] = true; dict4["byrd"] = true; dict4["byre"] = true; dict6["byrnie"] = true; dict6["byroad"] = true; dict5["byron"] = true; dict6["byssus"] = true; dict4["byte"] = true; dict5["byway"] = true; dict6["byword"] = true; dict6["byzant"] = true; dict7["c-clamp"] = true; dict6["c-note"] = true; dict4["c.e."] = true; dict6["c.o.d."] = true; dict6["c.p.u."] = true; dict4["c2h6"] = true; dict5["ca-ca"] = true; dict5["caaba"] = true; dict5["cabal"] = true; dict6["cabala"] = true; dict6["cabana"] = true; dict7["cabaret"] = true; dict7["cabbage"] = true; dict7["cabbala"] = true; dict5["cabby"] = true; dict6["cabell"] = true; dict5["caber"] = true; dict4["cabg"] = true; dict5["cabin"] = true; dict7["cabinet"] = true; dict5["cable"] = true; dict6["cabman"] = true; dict7["cabomba"] = true; dict7["caboose"] = true; dict5["cabot"] = true; dict7["cacajao"] = true; dict7["cacalia"] = true; dict5["cacao"] = true; dict7["cacatua"] = true; dict5["cache"] = true; dict6["cachet"] = true; dict7["cachexy"] = true; dict5["cachi"] = true; dict6["cachou"] = true; dict7["cacicus"] = true; dict7["cacique"] = true; dict6["cackel"] = true; dict6["cackle"] = true; dict7["cackler"] = true; dict6["cackly"] = true; dict7["cacodyl"] = true; dict6["cactus"] = true; dict7["cadaver"] = true; dict6["caddie"] = true; dict7["caddish"] = true; dict5["caddo"] = true; dict7["caddoan"] = true; dict5["caddy"] = true; dict7["cadence"] = true; dict7["cadency"] = true; dict6["cadent"] = true; dict7["cadenza"] = true; dict5["cadet"] = true; dict5["cadge"] = true; dict6["cadger"] = true; dict5["cadiz"] = true; dict7["cadmium"] = true; dict6["cadmus"] = true; dict5["cadra"] = true; dict5["cadre"] = true; dict6["caecal"] = true; dict6["caecum"] = true; dict6["caelum"] = true; dict6["caesar"] = true; dict7["caesium"] = true; dict7["caesura"] = true; dict4["cafe"] = true; dict4["caff"] = true; dict7["caffein"] = true; dict6["caffer"] = true; dict6["caffre"] = true; dict6["caftan"] = true; dict4["cage"] = true; dict5["cager"] = true; dict5["cagey"] = true; dict6["cagily"] = true; dict6["cagney"] = true; dict7["cagoule"] = true; dict4["cagy"] = true; dict6["cahita"] = true; dict6["cahoot"] = true; dict6["caiman"] = true; dict7["caimito"] = true; dict4["cain"] = true; dict7["cairene"] = true; dict7["cairina"] = true; dict5["cairn"] = true; dict7["cairned"] = true; dict5["cairo"] = true; dict7["caisson"] = true; dict7["caitiff"] = true; dict6["caitra"] = true; dict7["cajanus"] = true; dict6["cajole"] = true; dict5["cajun"] = true; dict4["cake"] = true; dict6["cakile"] = true; dict6["calaba"] = true; dict6["calais"] = true; dict7["calamus"] = true; dict5["calan"] = true; dict7["calando"] = true; dict6["calash"] = true; dict6["calced"] = true; dict7["calceus"] = true; dict6["calcic"] = true; dict7["calcify"] = true; dict7["calcine"] = true; dict7["calcite"] = true; dict7["calcium"] = true; dict6["calder"] = true; dict7["caldera"] = true; dict7["caldron"] = true; dict6["calean"] = true; dict7["caleche"] = true; dict4["calf"] = true; dict7["calgary"] = true; dict4["cali"] = true; dict7["caliber"] = true; dict7["calibre"] = true; dict7["caliche"] = true; dict6["calico"] = true; dict5["calif"] = true; dict6["calif."] = true; dict7["caliper"] = true; dict6["caliph"] = true; dict4["calk"] = true; dict6["calkin"] = true; dict4["call"] = true; dict7["call-in"] = true; dict5["calla"] = true; dict6["callas"] = true; dict6["caller"] = true; dict7["calling"] = true; dict7["callous"] = true; dict6["callow"] = true; dict7["calluna"] = true; dict6["callus"] = true; dict4["calm"] = true; dict7["calming"] = true; dict6["calmly"] = true; dict7["calomel"] = true; dict7["caloric"] = true; dict7["calorie"] = true; dict6["calpac"] = true; dict7["calpack"] = true; dict5["calpe"] = true; dict6["calque"] = true; dict6["caltha"] = true; dict7["caltrop"] = true; dict7["calumet"] = true; dict7["calumny"] = true; dict7["calvary"] = true; dict5["calve"] = true; dict6["calvin"] = true; dict7["calving"] = true; dict7["calvino"] = true; dict4["calx"] = true; dict7["calycle"] = true; dict7["calypso"] = true; dict5["calyx"] = true; dict6["camail"] = true; dict5["camas"] = true; dict6["camash"] = true; dict6["camass"] = true; dict6["camber"] = true; dict7["cambial"] = true; dict7["cambium"] = true; dict7["cambria"] = true; dict7["cambric"] = true; dict6["camden"] = true; dict5["camel"] = true; dict7["camelia"] = true; dict7["camelot"] = true; dict7["camelus"] = true; dict5["cameo"] = true; dict6["camera"] = true; dict6["camion"] = true; dict6["camise"] = true; dict6["camlan"] = true; dict6["camlet"] = true; dict4["camo"] = true; dict7["camorra"] = true; dict6["camosh"] = true; dict4["camp"] = true; dict7["campana"] = true; dict6["camper"] = true; dict7["camphor"] = true; dict7["camping"] = true; dict7["campion"] = true; dict7["campong"] = true; dict6["campus"] = true; dict5["campy"] = true; dict5["camus"] = true; dict7["camwood"] = true; dict6["can-do"] = true; dict6["canaan"] = true; dict6["canada"] = true; dict5["canal"] = true; dict7["cananga"] = true; dict6["canape"] = true; dict6["canara"] = true; dict6["canard"] = true; dict6["canary"] = true; dict7["canasta"] = true; dict6["cancan"] = true; dict6["cancel"] = true; dict6["cancer"] = true; dict6["cancun"] = true; dict7["candela"] = true; dict7["candent"] = true; dict6["candid"] = true; dict7["candida"] = true; dict7["candied"] = true; dict6["candle"] = true; dict6["candor"] = true; dict7["candour"] = true; dict5["candy"] = true; dict4["cane"] = true; dict7["canella"] = true; dict7["canetti"] = true; dict6["canful"] = true; dict6["cangue"] = true; dict5["canid"] = true; dict7["canidae"] = true; dict6["canine"] = true; dict6["caning"] = true; dict5["canis"] = true; dict6["canker"] = true; dict5["canna"] = true; dict6["cannae"] = true; dict6["canned"] = true; dict7["cannery"] = true; dict6["cannes"] = true; dict7["cannily"] = true; dict6["cannon"] = true; dict7["cannula"] = true; dict5["canny"] = true; dict5["canoe"] = true; dict6["canola"] = true; dict5["canon"] = true; dict7["canonic"] = true; dict7["canopus"] = true; dict6["canopy"] = true; dict4["cant"] = true; dict7["cantala"] = true; dict7["cantata"] = true; dict6["canted"] = true; dict7["canteen"] = true; dict6["canter"] = true; dict7["canthus"] = true; dict6["cantle"] = true; dict5["canto"] = true; dict6["canton"] = true; dict6["cantor"] = true; dict5["canty"] = true; dict6["canuck"] = true; dict6["canute"] = true; dict6["canvas"] = true; dict7["canvass"] = true; dict6["canyon"] = true; dict7["capable"] = true; dict7["capably"] = true; dict4["cape"] = true; dict5["capek"] = true; dict7["capelan"] = true; dict7["capelin"] = true; dict7["capella"] = true; dict5["caper"] = true; dict5["capet"] = true; dict6["capful"] = true; dict7["capital"] = true; dict7["capitol"] = true; dict5["capiz"] = true; dict6["caplin"] = true; dict4["capo"] = true; dict5["capon"] = true; dict6["capone"] = true; dict6["capote"] = true; dict7["capoten"] = true; dict6["capped"] = true; dict5["capra"] = true; dict5["capri"] = true; dict7["caprice"] = true; dict7["caprine"] = true; dict6["capros"] = true; dict6["capsid"] = true; dict7["capsize"] = true; dict7["capstan"] = true; dict7["capsule"] = true; dict7["captain"] = true; dict7["caption"] = true; dict7["captive"] = true; dict6["captor"] = true; dict7["capture"] = true; dict7["capulin"] = true; dict5["caput"] = true; dict7["carabao"] = true; dict7["caracal"] = true; dict7["caracas"] = true; dict6["carack"] = true; dict7["caracul"] = true; dict6["carafe"] = true; dict7["caramel"] = true; dict7["caranda"] = true; dict6["caranx"] = true; dict5["carat"] = true; dict7["caravan"] = true; dict7["caraway"] = true; dict7["carbide"] = true; dict7["carbine"] = true; dict6["carbon"] = true; dict6["carboy"] = true; dict7["carcase"] = true; dict7["carcass"] = true; dict4["card"] = true; dict6["cardia"] = true; dict7["cardiac"] = true; dict7["cardiff"] = true; dict7["cardium"] = true; dict7["cardoon"] = true; dict5["cards"] = true; dict7["cardura"] = true; dict7["carduus"] = true; dict4["care"] = true; dict6["careen"] = true; dict6["career"] = true; dict7["careful"] = true; dict6["caress"] = true; dict5["caret"] = true; dict7["caretta"] = true; dict5["carew"] = true; dict5["carex"] = true; dict7["carfare"] = true; dict6["carful"] = true; dict5["cargo"] = true; dict6["carhop"] = true; dict7["cariama"] = true; dict5["carib"] = true; dict6["caribe"] = true; dict7["caribou"] = true; dict6["carica"] = true; dict6["caries"] = true; dict6["carina"] = true; dict7["carinal"] = true; dict6["caring"] = true; dict7["carioca"] = true; dict7["carious"] = true; dict7["carissa"] = true; dict7["carjack"] = true; dict4["cark"] = true; dict7["carlina"] = true; dict7["carload"] = true; dict6["carlos"] = true; dict7["carlyle"] = true; dict7["carmine"] = true; dict7["carnage"] = true; dict6["carnal"] = true; dict7["carnify"] = true; dict6["carnot"] = true; dict5["carob"] = true; dict7["caroche"] = true; dict5["carol"] = true; dict7["caroler"] = true; dict7["carolus"] = true; dict5["carom"] = true; dict7["carotid"] = true; dict7["carotin"] = true; dict7["carouse"] = true; dict4["carp"] = true; dict6["carpal"] = true; dict6["carpel"] = true; dict6["carper"] = true; dict6["carpet"] = true; dict7["carping"] = true; dict7["carport"] = true; dict6["carpus"] = true; dict7["carrack"] = true; dict6["carrel"] = true; dict7["carrell"] = true; dict7["carrere"] = true; dict7["carrier"] = true; dict7["carrion"] = true; dict7["carrizo"] = true; dict7["carroll"] = true; dict6["carrot"] = true; dict7["carroty"] = true; dict5["carry"] = true; dict7["carsick"] = true; dict6["carson"] = true; dict4["cart"] = true; dict7["cartage"] = true; dict5["carte"] = true; dict6["cartel"] = true; dict6["carter"] = true; dict7["cartier"] = true; dict7["carting"] = true; dict6["carton"] = true; dict7["cartoon"] = true; dict5["carum"] = true; dict6["caruso"] = true; dict5["carve"] = true; dict6["carved"] = true; dict6["carven"] = true; dict6["carver"] = true; dict7["carving"] = true; dict5["carya"] = true; dict7["caryota"] = true; dict6["casaba"] = true; dict6["casals"] = true; dict6["casava"] = true; dict6["casbah"] = true; dict7["cascade"] = true; dict7["cascara"] = true; dict4["case"] = true; dict7["caseate"] = true; dict5["cased"] = true; dict7["caseful"] = true; dict6["casein"] = true; dict7["caseous"] = true; dict6["casern"] = true; dict4["cash"] = true; dict7["cashbox"] = true; dict6["cashed"] = true; dict6["cashew"] = true; dict7["cashier"] = true; dict6["casing"] = true; dict6["casino"] = true; dict4["cask"] = true; dict6["casket"] = true; dict7["caskful"] = true; dict6["caspar"] = true; dict7["caspase"] = true; dict6["casper"] = true; dict7["caspian"] = true; dict6["casque"] = true; dict7["casquet"] = true; dict7["cassava"] = true; dict6["cassia"] = true; dict6["cassie"] = true; dict7["cassino"] = true; dict7["cassiri"] = true; dict7["cassite"] = true; dict7["cassius"] = true; dict7["cassock"] = true; dict4["cast"] = true; dict5["caste"] = true; dict6["caster"] = true; dict7["castile"] = true; dict7["casting"] = true; dict6["castle"] = true; dict7["castled"] = true; dict6["castor"] = true; dict6["castro"] = true; dict6["casual"] = true; dict7["casuist"] = true; dict7["catalan"] = true; dict7["catalog"] = true; dict7["catalpa"] = true; dict7["catarrh"] = true; dict7["catawba"] = true; dict7["catbird"] = true; dict7["catboat"] = true; dict7["catcall"] = true; dict5["catch"] = true; dict7["catcher"] = true; dict6["catchy"] = true; dict7["catclaw"] = true; dict7["catechu"] = true; dict6["catena"] = true; dict5["cater"] = true; dict7["caterer"] = true; dict7["catfish"] = true; dict6["catgut"] = true; dict5["catha"] = true; dict7["cathari"] = true; dict7["cathars"] = true; dict6["cathay"] = true; dict7["cathaya"] = true; dict7["cathect"] = true; dict6["cather"] = true; dict7["cathode"] = true; dict6["cation"] = true; dict6["catkin"] = true; dict7["catling"] = true; dict7["catmint"] = true; dict6["catnap"] = true; dict6["catnip"] = true; dict6["catsup"] = true; dict7["cattail"] = true; dict7["cattalo"] = true; dict7["cattell"] = true; dict6["cattie"] = true; dict7["cattish"] = true; dict6["cattle"] = true; dict5["catty"] = true; dict7["catwalk"] = true; dict6["caucus"] = true; dict5["cauda"] = true; dict6["caudal"] = true; dict7["caudata"] = true; dict7["caudate"] = true; dict6["caudex"] = true; dict4["caul"] = true; dict7["cauline"] = true; dict5["caulk"] = true; dict7["caulked"] = true; dict5["causa"] = true; dict6["causal"] = true; dict5["cause"] = true; dict7["causing"] = true; dict7["caustic"] = true; dict7["cautery"] = true; dict7["caution"] = true; dict7["cavalla"] = true; dict7["cavalry"] = true; dict4["cave"] = true; dict6["caveat"] = true; dict6["cavell"] = true; dict7["caveman"] = true; dict6["cavern"] = true; dict7["cavetto"] = true; dict5["cavia"] = true; dict6["caviar"] = true; dict7["caviare"] = true; dict5["cavil"] = true; dict7["caviler"] = true; dict6["cavity"] = true; dict6["cavort"] = true; dict5["cavum"] = true; dict4["cavy"] = true; dict6["caxton"] = true; dict7["cayenne"] = true; dict6["cayman"] = true; dict6["cayuga"] = true; dict6["cayuse"] = true; dict7["cazique"] = true; dict4["ccrc"] = true; dict4["cd-r"] = true; dict6["cd-rom"] = true; dict5["cd-wo"] = true; dict4["cdna"] = true; dict5["cease"] = true; dict7["cebidae"] = true; dict4["cebu"] = true; dict6["cebuan"] = true; dict7["cebuano"] = true; dict5["cebus"] = true; dict5["cecal"] = true; dict6["cecity"] = true; dict5["cecum"] = true; dict5["cedar"] = true; dict6["cedarn"] = true; dict4["cede"] = true; dict4["cedi"] = true; dict7["cedilla"] = true; dict6["ceding"] = true; dict7["cedrela"] = true; dict6["cedrus"] = true; dict7["cefobid"] = true; dict6["ceftin"] = true; dict5["ceiba"] = true; dict5["ceibo"] = true; dict7["ceilidh"] = true; dict7["ceiling"] = true; dict7["celebes"] = true; dict6["celery"] = true; dict7["celesta"] = true; dict6["celiac"] = true; dict7["celioma"] = true; dict4["cell"] = true; dict6["cellar"] = true; dict7["cellini"] = true; dict7["cellist"] = true; dict5["cello"] = true; dict5["celom"] = true; dict6["celoma"] = true; dict7["celosia"] = true; dict7["celsius"] = true; dict4["celt"] = true; dict6["celtic"] = true; dict6["celtis"] = true; dict7["celtuce"] = true; dict7["cembalo"] = true; dict6["cement"] = true; dict5["cense"] = true; dict6["censer"] = true; dict6["censor"] = true; dict7["censure"] = true; dict6["census"] = true; dict4["cent"] = true; dict6["cental"] = true; dict7["centare"] = true; dict6["centas"] = true; dict7["centaur"] = true; dict7["centavo"] = true; dict6["center"] = true; dict7["centile"] = true; dict7["centime"] = true; dict7["centimo"] = true; dict7["centner"] = true; dict7["central"] = true; dict6["centre"] = true; dict7["centrex"] = true; dict7["centric"] = true; dict7["centrum"] = true; dict7["century"] = true; dict7["cepheus"] = true; dict7["cepphus"] = true; dict7["ceramic"] = true; dict5["ceras"] = true; dict6["cerate"] = true; dict7["ceratin"] = true; dict6["cercis"] = true; dict4["cere"] = true; dict6["cereal"] = true; dict5["ceres"] = true; dict7["ceresin"] = true; dict6["cereus"] = true; dict5["ceric"] = true; dict7["ceriman"] = true; dict6["cerise"] = true; dict6["cerium"] = true; dict4["cero"] = true; dict6["cerous"] = true; dict4["cert"] = true; dict7["certain"] = true; dict7["certhia"] = true; dict7["certify"] = true; dict7["cerumen"] = true; dict6["ceruse"] = true; dict6["cervid"] = true; dict7["cervine"] = true; dict6["cervix"] = true; dict6["cervus"] = true; dict6["ceryle"] = true; dict6["cesium"] = true; dict7["cession"] = true; dict7["cesspit"] = true; dict7["cestida"] = true; dict7["cestoda"] = true; dict7["cestode"] = true; dict7["cestrum"] = true; dict6["cestum"] = true; dict7["cetacea"] = true; dict7["cetchup"] = true; dict7["cetonia"] = true; dict5["cetus"] = true; dict4["cewa"] = true; dict6["ceylon"] = true; dict7["cezanne"] = true; dict4["cftr"] = true; dict4["ch'i"] = true; dict5["ch'in"] = true; dict6["ch'ing"] = true; dict7["cha-cha"] = true; dict6["chabad"] = true; dict7["chablis"] = true; dict7["chachka"] = true; dict6["chacma"] = true; dict4["chad"] = true; dict6["chadar"] = true; dict7["chaddar"] = true; dict7["chadian"] = true; dict6["chadic"] = true; dict6["chador"] = true; dict6["chaeta"] = true; dict7["chaetal"] = true; dict5["chafe"] = true; dict6["chafed"] = true; dict5["chaff"] = true; dict7["chaffer"] = true; dict6["chaffy"] = true; dict7["chafing"] = true; dict5["chaga"] = true; dict7["chagall"] = true; dict6["chagga"] = true; dict7["chagrin"] = true; dict6["chahta"] = true; dict5["chain"] = true; dict7["chained"] = true; dict6["chains"] = true; dict5["chair"] = true; dict6["chaise"] = true; dict5["chait"] = true; dict5["chaja"] = true; dict7["chalaza"] = true; dict7["chalcid"] = true; dict7["chalcis"] = true; dict7["chaldea"] = true; dict7["chaldee"] = true; dict6["chalet"] = true; dict7["chalice"] = true; dict5["chalk"] = true; dict6["chalky"] = true; dict7["challah"] = true; dict7["challis"] = true; dict7["chalons"] = true; dict7["chamaea"] = true; dict7["chamber"] = true; dict7["chamfer"] = true; dict6["chammy"] = true; dict7["chamois"] = true; dict5["champ"] = true; dict6["chanal"] = true; dict6["chanar"] = true; dict6["chance"] = true; dict7["chancel"] = true; dict7["chancre"] = true; dict6["chancy"] = true; dict6["chandi"] = true; dict5["chang"] = true; dict7["changan"] = true; dict6["change"] = true; dict7["changed"] = true; dict7["changer"] = true; dict7["channel"] = true; dict7["chanoyu"] = true; dict5["chant"] = true; dict7["chanted"] = true; dict7["chanter"] = true; dict7["chantey"] = true; dict7["chantry"] = true; dict6["chanty"] = true; dict5["chaos"] = true; dict7["chaotic"] = true; dict4["chap"] = true; dict7["chapati"] = true; dict7["chapeau"] = true; dict6["chapel"] = true; dict7["chaplet"] = true; dict7["chaplin"] = true; dict7["chapman"] = true; dict7["chapped"] = true; dict7["chapter"] = true; dict4["char"] = true; dict5["chara"] = true; dict7["charade"] = true; dict7["charcot"] = true; dict5["chard"] = true; dict6["charge"] = true; dict7["charged"] = true; dict7["charger"] = true; dict5["chari"] = true; dict7["charily"] = true; dict7["charina"] = true; dict7["chariot"] = true; dict7["charity"] = true; dict7["charles"] = true; dict5["charm"] = true; dict7["charmed"] = true; dict7["charmer"] = true; dict7["charnel"] = true; dict6["charon"] = true; dict5["charr"] = true; dict5["chart"] = true; dict7["charter"] = true; dict5["chary"] = true; dict5["chase"] = true; dict6["chased"] = true; dict6["chaser"] = true; dict6["chasid"] = true; dict5["chasm"] = true; dict6["chasse"] = true; dict7["chassid"] = true; dict7["chassis"] = true; dict6["chaste"] = true; dict7["chasten"] = true; dict4["chat"] = true; dict7["chateau"] = true; dict7["chattel"] = true; dict7["chatter"] = true; dict6["chatty"] = true; dict7["chaucer"] = true; dict6["chauna"] = true; dict6["chavez"] = true; dict4["chaw"] = true; dict5["cheap"] = true; dict7["cheapen"] = true; dict7["cheaply"] = true; dict5["cheat"] = true; dict7["cheater"] = true; dict6["chebab"] = true; dict7["chechen"] = true; dict5["check"] = true; dict7["checked"] = true; dict7["checker"] = true; dict7["checkup"] = true; dict7["cheddar"] = true; dict5["cheek"] = true; dict6["cheeky"] = true; dict5["cheep"] = true; dict5["cheer"] = true; dict7["cheerer"] = true; dict7["cheerio"] = true; dict6["cheery"] = true; dict6["cheese"] = true; dict6["cheesy"] = true; dict7["cheetah"] = true; dict7["cheever"] = true; dict4["chef"] = true; dict7["chekhov"] = true; dict6["chekov"] = true; dict5["chela"] = true; dict7["chelate"] = true; dict7["cheloid"] = true; dict7["chelone"] = true; dict6["chemic"] = true; dict7["chemise"] = true; dict7["chemist"] = true; dict4["chen"] = true; dict7["chennai"] = true; dict6["cheops"] = true; dict6["cheque"] = true; dict7["chequer"] = true; dict7["cherish"] = true; dict7["cheroot"] = true; dict6["cherry"] = true; dict5["chert"] = true; dict6["cherty"] = true; dict6["cherub"] = true; dict7["chervil"] = true; dict5["chess"] = true; dict5["chest"] = true; dict7["chester"] = true; dict6["chesty"] = true; dict6["chetah"] = true; dict7["chetrum"] = true; dict7["cheviot"] = true; dict6["chevre"] = true; dict7["chevron"] = true; dict6["chevvy"] = true; dict5["chevy"] = true; dict4["chew"] = true; dict5["chewa"] = true; dict6["chewer"] = true; dict7["chewing"] = true; dict7["chewink"] = true; dict5["chewy"] = true; dict5["chian"] = true; dict7["chianti"] = true; dict6["chiasm"] = true; dict7["chiasma"] = true; dict4["chic"] = true; dict7["chicago"] = true; dict7["chicane"] = true; dict7["chicano"] = true; dict6["chicha"] = true; dict6["chichi"] = true; dict5["chick"] = true; dict7["chicken"] = true; dict6["chicle"] = true; dict5["chico"] = true; dict7["chicory"] = true; dict6["chicot"] = true; dict5["chide"] = true; dict7["chiding"] = true; dict5["chief"] = true; dict7["chiefly"] = true; dict7["chiffon"] = true; dict7["chigger"] = true; dict7["chignon"] = true; dict6["chigoe"] = true; dict5["child"] = true; dict7["childly"] = true; dict5["chile"] = true; dict7["chilean"] = true; dict5["chili"] = true; dict7["chiliad"] = true; dict5["chill"] = true; dict7["chiller"] = true; dict6["chilli"] = true; dict6["chilly"] = true; dict6["chiloe"] = true; dict7["chiluba"] = true; dict5["chime"] = true; dict7["chimera"] = true; dict7["chimney"] = true; dict5["chimp"] = true; dict4["chin"] = true; dict7["chin-up"] = true; dict5["china"] = true; dict6["chinch"] = true; dict7["chinchy"] = true; dict5["chine"] = true; dict7["chinese"] = true; dict7["chingpo"] = true; dict5["chink"] = true; dict7["chinked"] = true; dict5["chino"] = true; dict7["chinook"] = true; dict6["chintz"] = true; dict7["chintzy"] = true; dict5["chios"] = true; dict4["chip"] = true; dict7["chipper"] = true; dict5["chips"] = true; dict7["chirico"] = true; dict5["chirk"] = true; dict6["chiron"] = true; dict5["chirp"] = true; dict6["chirpy"] = true; dict5["chirr"] = true; dict7["chirrup"] = true; dict6["chisel"] = true; dict7["chislev"] = true; dict4["chit"] = true; dict6["chitin"] = true; dict6["chiton"] = true; dict7["chitter"] = true; dict5["chive"] = true; dict6["chives"] = true; dict6["chivvy"] = true; dict5["chivy"] = true; dict7["chiwere"] = true; dict7["chlamys"] = true; dict7["chloris"] = true; dict4["choc"] = true; dict5["chock"] = true; dict7["choctaw"] = true; dict6["choice"] = true; dict5["choir"] = true; dict5["choke"] = true; dict6["choked"] = true; dict6["choker"] = true; dict6["chokey"] = true; dict7["choking"] = true; dict5["choky"] = true; dict6["choler"] = true; dict7["cholera"] = true; dict7["choline"] = true; dict6["cholla"] = true; dict5["chomp"] = true; dict7["chomsky"] = true; dict4["chon"] = true; dict6["choose"] = true; dict7["chooser"] = true; dict7["choosey"] = true; dict6["choosy"] = true; dict4["chop"] = true; dict6["chopin"] = true; dict7["chopine"] = true; dict7["chopped"] = true; dict7["chopper"] = true; dict6["choppy"] = true; dict6["choral"] = true; dict7["chorale"] = true; dict5["chord"] = true; dict7["chordal"] = true; dict5["chore"] = true; dict6["chorea"] = true; dict6["choric"] = true; dict7["chorine"] = true; dict7["chorion"] = true; dict7["chorizo"] = true; dict7["choroid"] = true; dict7["chortle"] = true; dict6["chorus"] = true; dict6["chosen"] = true; dict4["chou"] = true; dict6["chough"] = true; dict6["chouse"] = true; dict4["chow"] = true; dict7["chowder"] = true; dict6["chrism"] = true; dict7["chrisom"] = true; dict6["christ"] = true; dict6["chroma"] = true; dict6["chrome"] = true; dict7["chronic"] = true; dict4["chub"] = true; dict6["chubby"] = true; dict5["chuck"] = true; dict7["chuckle"] = true; dict7["chuddar"] = true; dict5["chufa"] = true; dict5["chuff"] = true; dict7["chuffed"] = true; dict4["chug"] = true; dict7["chukchi"] = true; dict6["chukka"] = true; dict7["chukker"] = true; dict4["chum"] = true; dict6["chummy"] = true; dict5["chump"] = true; dict6["chunga"] = true; dict5["chunk"] = true; dict6["chunky"] = true; dict7["chunnel"] = true; dict6["church"] = true; dict5["churl"] = true; dict5["churn"] = true; dict5["churr"] = true; dict5["chute"] = true; dict7["chutney"] = true; dict7["chutzpa"] = true; dict7["chuvash"] = true; dict5["chyle"] = true; dict7["chylous"] = true; dict5["chyme"] = true; dict6["cialis"] = true; dict4["ciao"] = true; dict6["ciardi"] = true; dict6["cicada"] = true; dict6["cicala"] = true; dict5["cicer"] = true; dict6["cicero"] = true; dict7["cichlid"] = true; dict7["ciconia"] = true; dict6["cicuta"] = true; dict5["cider"] = true; dict5["cigar"] = true; dict7["cigaret"] = true; dict6["cilial"] = true; dict7["ciliary"] = true; dict7["ciliata"] = true; dict7["ciliate"] = true; dict6["cilium"] = true; dict7["cimabue"] = true; dict5["cimex"] = true; dict5["cinch"] = true; dict7["cinclus"] = true; dict6["cinder"] = true; dict6["cinema"] = true; dict6["cinque"] = true; dict6["cipher"] = true; dict5["cipro"] = true; dict4["cira"] = true; dict7["circaea"] = true; dict5["circe"] = true; dict6["circle"] = true; dict7["circlet"] = true; dict7["circuit"] = true; dict6["circus"] = true; dict5["cirio"] = true; dict6["cirque"] = true; dict7["cirrhus"] = true; dict6["cirrus"] = true; dict7["cirsium"] = true; dict4["cisc"] = true; dict5["cisco"] = true; dict5["cissy"] = true; dict7["cistern"] = true; dict7["cistron"] = true; dict6["cistus"] = true; dict7["citadel"] = true; dict4["cite"] = true; dict6["cither"] = true; dict7["cithern"] = true; dict6["citify"] = true; dict7["citizen"] = true; dict6["citole"] = true; dict7["citrate"] = true; dict6["citric"] = true; dict6["citrin"] = true; dict7["citrine"] = true; dict6["citron"] = true; dict7["citrous"] = true; dict6["citrus"] = true; dict7["cittern"] = true; dict4["city"] = true; dict4["cive"] = true; dict5["civet"] = true; dict5["civic"] = true; dict6["civics"] = true; dict6["civies"] = true; dict5["civil"] = true; dict7["civilly"] = true; dict7["civvies"] = true; dict7["clabber"] = true; dict5["clack"] = true; dict4["clad"] = true; dict5["clade"] = true; dict7["cladode"] = true; dict5["claim"] = true; dict4["clam"] = true; dict7["clamant"] = true; dict7["clamber"] = true; dict6["clammy"] = true; dict6["clamor"] = true; dict7["clamour"] = true; dict5["clamp"] = true; dict5["clams"] = true; dict4["clan"] = true; dict5["clang"] = true; dict7["clanger"] = true; dict7["clangor"] = true; dict5["clank"] = true; dict4["clap"] = true; dict7["clapper"] = true; dict6["claque"] = true; dict6["claret"] = true; dict7["clarify"] = true; dict7["clarion"] = true; dict7["clarity"] = true; dict5["clark"] = true; dict5["claro"] = true; dict5["clary"] = true; dict5["clash"] = true; dict5["clasp"] = true; dict5["class"] = true; dict7["classic"] = true; dict6["classy"] = true; dict5["clast"] = true; dict7["clastic"] = true; dict7["clatter"] = true; dict7["clausal"] = true; dict6["clause"] = true; dict6["claver"] = true; dict7["clavier"] = true; dict6["clavus"] = true; dict4["claw"] = true; dict6["clawed"] = true; dict6["claxon"] = true; dict4["clay"] = true; dict6["clayey"] = true; dict5["clean"] = true; dict7["cleaner"] = true; dict7["cleanly"] = true; dict7["cleanse"] = true; dict7["cleanup"] = true; dict5["clear"] = true; dict7["cleared"] = true; dict7["clearly"] = true; dict5["cleat"] = true; dict6["cleats"] = true; dict6["cleave"] = true; dict7["cleaver"] = true; dict4["clef"] = true; dict5["cleft"] = true; dict4["cleg"] = true; dict5["clegg"] = true; dict7["clemens"] = true; dict7["clement"] = true; dict6["clench"] = true; dict6["cleome"] = true; dict6["clergy"] = true; dict6["cleric"] = true; dict6["clerid"] = true; dict7["clerisy"] = true; dict5["clerk"] = true; dict7["clethra"] = true; dict6["clever"] = true; dict6["clevis"] = true; dict4["clew"] = true; dict5["clews"] = true; dict6["cliche"] = true; dict7["cliched"] = true; dict6["clichy"] = true; dict5["click"] = true; dict6["client"] = true; dict5["cliff"] = true; dict7["climate"] = true; dict6["climax"] = true; dict5["climb"] = true; dict7["climber"] = true; dict5["clime"] = true; dict6["clinch"] = true; dict5["cline"] = true; dict5["cling"] = true; dict6["clinic"] = true; dict6["clinid"] = true; dict5["clink"] = true; dict7["clinker"] = true; dict7["clinton"] = true; dict4["clio"] = true; dict4["clip"] = true; dict7["clip-on"] = true; dict7["clipped"] = true; dict7["clipper"] = true; dict6["clique"] = true; dict4["clit"] = true; dict7["clitter"] = true; dict5["clive"] = true; dict7["clivers"] = true; dict6["cloaca"] = true; dict5["cloak"] = true; dict7["cloaked"] = true; dict7["clobber"] = true; dict6["cloche"] = true; dict5["clock"] = true; dict6["clocks"] = true; dict4["clod"] = true; dict4["clog"] = true; dict7["clogged"] = true; dict6["cloggy"] = true; dict6["clomid"] = true; dict5["clomp"] = true; dict4["clon"] = true; dict6["clonal"] = true; dict5["clone"] = true; dict6["clonic"] = true; dict7["cloning"] = true; dict6["clonus"] = true; dict4["clop"] = true; dict6["clorox"] = true; dict5["close"] = true; dict6["closed"] = true; dict7["closely"] = true; dict6["closer"] = true; dict7["closest"] = true; dict6["closet"] = true; dict7["closeup"] = true; dict7["closing"] = true; dict7["closure"] = true; dict4["clot"] = true; dict7["clotbur"] = true; dict5["cloth"] = true; dict6["clothe"] = true; dict7["clothed"] = true; dict7["clothes"] = true; dict6["clotho"] = true; dict7["clotted"] = true; dict7["cloture"] = true; dict5["cloud"] = true; dict7["clouded"] = true; dict6["cloudy"] = true; dict5["clout"] = true; dict5["clove"] = true; dict6["cloven"] = true; dict6["clover"] = true; dict6["clovis"] = true; dict7["clowder"] = true; dict5["clown"] = true; dict4["cloy"] = true; dict7["cloying"] = true; dict5["cloze"] = true; dict4["club"] = true; dict6["clubby"] = true; dict5["cluck"] = true; dict4["clue"] = true; dict7["clumber"] = true; dict5["clump"] = true; dict6["clumsy"] = true; dict6["clunch"] = true; dict5["clunk"] = true; dict6["clunky"] = true; dict6["clupea"] = true; dict7["clupeid"] = true; dict6["clusia"] = true; dict7["cluster"] = true; dict6["clutch"] = true; dict7["clutter"] = true; dict4["clxv"] = true; dict4["clxx"] = true; dict5["clxxv"] = true; dict5["clxxx"] = true; dict5["clyde"] = true; dict7["clypeus"] = true; dict7["clyster"] = true; dict4["cmbr"] = true; dict6["cnicus"] = true; dict7["cnossos"] = true; dict7["cnossus"] = true; dict4["cnpz"] = true; dict4["cnut"] = true; dict5["co-ed"] = true; dict5["co-op"] = true; dict6["co-opt"] = true; dict7["co-sign"] = true; dict7["co-star"] = true; dict7["co-vary"] = true; dict5["coach"] = true; dict5["coact"] = true; dict4["coal"] = true; dict7["coalbin"] = true; dict7["coalman"] = true; dict7["coalpit"] = true; dict7["coaming"] = true; dict5["coapt"] = true; dict6["coarse"] = true; dict7["coarsen"] = true; dict5["coast"] = true; dict7["coastal"] = true; dict7["coaster"] = true; dict4["coat"] = true; dict6["coated"] = true; dict6["coatee"] = true; dict5["coati"] = true; dict7["coating"] = true; dict4["coax"] = true; dict6["coaxal"] = true; dict6["coaxer"] = true; dict7["coaxial"] = true; dict7["coaxing"] = true; dict6["cobalt"] = true; dict6["cobber"] = true; dict6["cobble"] = true; dict7["cobbler"] = true; dict5["cobia"] = true; dict6["cobnut"] = true; dict5["cobol"] = true; dict5["cobra"] = true; dict6["cobweb"] = true; dict4["coca"] = true; dict6["cocain"] = true; dict7["cocaine"] = true; dict6["coccal"] = true; dict5["cocci"] = true; dict7["coccoid"] = true; dict6["coccus"] = true; dict6["coccyx"] = true; dict7["cochimi"] = true; dict6["cochin"] = true; dict7["cochise"] = true; dict7["cochlea"] = true; dict7["cochran"] = true; dict4["cock"] = true; dict7["cockade"] = true; dict6["cocker"] = true; dict6["cockle"] = true; dict7["cockney"] = true; dict7["cockpit"] = true; dict6["cockup"] = true; dict5["cocky"] = true; dict4["coco"] = true; dict5["cocoa"] = true; dict7["coconut"] = true; dict6["cocoon"] = true; dict6["cocopa"] = true; dict7["cocopah"] = true; dict5["cocos"] = true; dict7["cocotte"] = true; dict7["cocoyam"] = true; dict7["cocteau"] = true; dict5["cocus"] = true; dict7["cocytus"] = true; dict4["coda"] = true; dict6["coddle"] = true; dict7["coddler"] = true; dict4["code"] = true; dict7["codeine"] = true; dict5["coder"] = true; dict5["codex"] = true; dict7["codfish"] = true; dict6["codger"] = true; dict7["codicil"] = true; dict6["codify"] = true; dict6["coding"] = true; dict7["codling"] = true; dict5["codon"] = true; dict4["cody"] = true; dict7["coeliac"] = true; dict6["coelom"] = true; dict7["coequal"] = true; dict6["coerce"] = true; dict7["coereba"] = true; dict6["coeval"] = true; dict7["coevals"] = true; dict7["coexist"] = true; dict6["coffea"] = true; dict6["coffee"] = true; dict6["coffer"] = true; dict6["coffin"] = true; dict7["cogency"] = true; dict6["cogent"] = true; dict6["cogged"] = true; dict6["coggle"] = true; dict6["cognac"] = true; dict7["cognate"] = true; dict7["cognise"] = true; dict7["cognize"] = true; dict7["cohabit"] = true; dict5["cohan"] = true; dict6["cohere"] = true; dict4["cohn"] = true; dict4["coho"] = true; dict5["cohoe"] = true; dict6["cohort"] = true; dict6["cohosh"] = true; dict6["cohune"] = true; dict4["coif"] = true; dict6["coiffe"] = true; dict5["coign"] = true; dict6["coigne"] = true; dict6["coigue"] = true; dict4["coil"] = true; dict6["coiled"] = true; dict7["coiling"] = true; dict4["coin"] = true; dict7["coinage"] = true; dict6["coiner"] = true; dict4["coir"] = true; dict6["coital"] = true; dict7["coition"] = true; dict6["coitus"] = true; dict4["coke"] = true; dict4["cola"] = true; dict7["colbert"] = true; dict7["colchis"] = true; dict4["cold"] = true; dict6["coldly"] = true; dict4["cole"] = true; dict7["colette"] = true; dict6["coleus"] = true; dict5["colic"] = true; dict7["colicky"] = true; dict6["colima"] = true; dict7["colinus"] = true; dict7["colitis"] = true; dict7["collage"] = true; dict6["collar"] = true; dict7["collard"] = true; dict7["collate"] = true; dict7["collect"] = true; dict7["colleen"] = true; dict7["college"] = true; dict6["collet"] = true; dict7["collide"] = true; dict6["collie"] = true; dict7["collier"] = true; dict7["collins"] = true; dict7["colloid"] = true; dict7["collude"] = true; dict5["colly"] = true; dict7["colobus"] = true; dict7["cologne"] = true; dict7["colombo"] = true; dict5["colon"] = true; dict7["colonel"] = true; dict7["colonic"] = true; dict6["colony"] = true; dict5["color"] = true; dict7["colored"] = true; dict6["colors"] = true; dict6["colour"] = true; dict7["colours"] = true; dict4["colt"] = true; dict6["coltan"] = true; dict6["colter"] = true; dict7["coltish"] = true; dict7["coluber"] = true; dict6["colugo"] = true; dict7["columba"] = true; dict7["columbo"] = true; dict6["column"] = true; dict7["colutea"] = true; dict5["colza"] = true; dict4["coma"] = true; dict5["comal"] = true; dict6["comate"] = true; dict4["comb"] = true; dict6["combat"] = true; dict6["combed"] = true; dict6["comber"] = true; dict7["combine"] = true; dict7["combing"] = true; dict5["combo"] = true; dict7["combust"] = true; dict4["come"] = true; dict7["come-on"] = true; dict6["comedo"] = true; dict6["comedy"] = true; dict6["comely"] = true; dict5["comer"] = true; dict5["comet"] = true; dict7["cometic"] = true; dict6["comfit"] = true; dict7["comfort"] = true; dict7["comfrey"] = true; dict5["comfy"] = true; dict5["comic"] = true; dict7["comical"] = true; dict6["coming"] = true; dict6["comint"] = true; dict6["comity"] = true; dict5["comma"] = true; dict7["command"] = true; dict7["commend"] = true; dict7["comment"] = true; dict6["commie"] = true; dict6["commit"] = true; dict6["commix"] = true; dict7["commode"] = true; dict6["common"] = true; dict7["commons"] = true; dict7["commove"] = true; dict7["commune"] = true; dict7["commute"] = true; dict7["comoros"] = true; dict6["comose"] = true; dict4["comp"] = true; dict7["compact"] = true; dict7["company"] = true; dict7["compare"] = true; dict7["compart"] = true; dict7["compass"] = true; dict7["compeer"] = true; dict6["compel"] = true; dict7["compere"] = true; dict7["compete"] = true; dict7["compile"] = true; dict7["complex"] = true; dict7["complin"] = true; dict7["complot"] = true; dict6["comply"] = true; dict7["comport"] = true; dict7["compose"] = true; dict7["compost"] = true; dict7["compote"] = true; dict7["compton"] = true; dict7["compute"] = true; dict7["comrade"] = true; dict5["comte"] = true; dict7["comtism"] = true; dict7["conakry"] = true; dict7["concave"] = true; dict7["conceal"] = true; dict7["concede"] = true; dict7["conceit"] = true; dict7["concept"] = true; dict7["concern"] = true; dict7["concert"] = true; dict5["conch"] = true; dict6["concha"] = true; dict7["concise"] = true; dict7["concoct"] = true; dict7["concord"] = true; dict6["concur"] = true; dict7["concuss"] = true; dict7["condemn"] = true; dict7["condign"] = true; dict5["condo"] = true; dict7["condole"] = true; dict6["condom"] = true; dict7["condone"] = true; dict6["condor"] = true; dict7["conduce"] = true; dict7["conduct"] = true; dict7["conduit"] = true; dict7["condyle"] = true; dict4["cone"] = true; dict7["conessi"] = true; dict5["coney"] = true; dict6["confab"] = true; dict7["confect"] = true; dict6["confer"] = true; dict7["confess"] = true; dict7["confide"] = true; dict7["confine"] = true; dict7["confirm"] = true; dict6["confit"] = true; dict7["conflux"] = true; dict7["conform"] = true; dict7["confuse"] = true; dict7["confute"] = true; dict5["conga"] = true; dict5["conge"] = true; dict7["congeal"] = true; dict6["congee"] = true; dict6["conger"] = true; dict7["congest"] = true; dict7["congius"] = true; dict5["congo"] = true; dict6["congou"] = true; dict5["conic"] = true; dict7["conical"] = true; dict7["conifer"] = true; dict6["conima"] = true; dict6["conium"] = true; dict7["conjoin"] = true; dict7["conjure"] = true; dict7["conjury"] = true; dict4["conk"] = true; dict6["conker"] = true; dict4["conn"] = true; dict7["connate"] = true; dict7["connect"] = true; dict7["connive"] = true; dict7["connors"] = true; dict7["connote"] = true; dict6["conoid"] = true; dict5["conoy"] = true; dict7["conquer"] = true; dict6["conrad"] = true; dict7["consent"] = true; dict7["consign"] = true; dict7["consist"] = true; dict7["console"] = true; dict7["consort"] = true; dict6["consul"] = true; dict7["consult"] = true; dict7["consume"] = true; dict7["contact"] = true; dict7["contain"] = true; dict7["contemn"] = true; dict7["contend"] = true; dict7["content"] = true; dict7["contest"] = true; dict7["context"] = true; dict5["conto"] = true; dict7["contort"] = true; dict7["contour"] = true; dict6["contra"] = true; dict7["contras"] = true; dict7["control"] = true; dict7["contuse"] = true; dict7["convect"] = true; dict7["convene"] = true; dict7["convent"] = true; dict7["convert"] = true; dict6["convex"] = true; dict6["convey"] = true; dict7["convict"] = true; dict7["convoke"] = true; dict6["convoy"] = true; dict4["cony"] = true; dict6["conyza"] = true; dict7["cooccur"] = true; dict4["cook"] = true; dict5["cooke"] = true; dict6["cooked"] = true; dict6["cooker"] = true; dict7["cookery"] = true; dict6["cookie"] = true; dict7["cooking"] = true; dict7["cookout"] = true; dict5["cooky"] = true; dict4["cool"] = true; dict7["coolant"] = true; dict6["cooler"] = true; dict6["coolie"] = true; dict7["cooling"] = true; dict6["coolly"] = true; dict5["cooly"] = true; dict4["coon"] = true; dict7["coondog"] = true; dict7["coontie"] = true; dict4["coop"] = true; dict6["cooper"] = true; dict5["coosa"] = true; dict4["coot"] = true; dict6["cooter"] = true; dict6["cootie"] = true; dict7["copaiba"] = true; dict5["copal"] = true; dict4["cope"] = true; dict6["copeck"] = true; dict7["copehan"] = true; dict7["copepod"] = true; dict6["copier"] = true; dict7["copilot"] = true; dict6["coping"] = true; dict7["copious"] = true; dict7["copland"] = true; dict6["copley"] = true; dict6["copout"] = true; dict6["copper"] = true; dict7["coppery"] = true; dict7["coppice"] = true; dict7["coppola"] = true; dict5["copra"] = true; dict5["copse"] = true; dict4["copt"] = true; dict6["coptic"] = true; dict6["coptis"] = true; dict6["copula"] = true; dict7["copular"] = true; dict4["copy"] = true; dict7["copycat"] = true; dict7["copying"] = true; dict7["copyist"] = true; dict6["coquet"] = true; dict4["cora"] = true; dict7["coracan"] = true; dict7["coracle"] = true; dict7["corakan"] = true; dict5["coral"] = true; dict6["corbel"] = true; dict7["corbett"] = true; dict7["corbina"] = true; dict4["cord"] = true; dict7["cordage"] = true; dict7["cordate"] = true; dict6["corday"] = true; dict6["corded"] = true; dict6["cordia"] = true; dict7["cordial"] = true; dict7["cordite"] = true; dict7["cordoba"] = true; dict6["cordon"] = true; dict7["cordova"] = true; dict5["cords"] = true; dict4["core"] = true; dict6["coreid"] = true; dict7["corelli"] = true; dict5["corer"] = true; dict7["corgard"] = true; dict5["corgi"] = true; dict7["corinth"] = true; dict6["corium"] = true; dict6["corixa"] = true; dict4["cork"] = true; dict7["corkage"] = true; dict6["corked"] = true; dict6["corker"] = true; dict7["corking"] = true; dict5["corky"] = true; dict4["corm"] = true; dict7["cormose"] = true; dict7["cormous"] = true; dict4["corn"] = true; dict7["corncob"] = true; dict6["cornea"] = true; dict7["corneal"] = true; dict6["corned"] = true; dict6["cornel"] = true; dict7["cornell"] = true; dict6["corner"] = true; dict6["cornet"] = true; dict7["corneum"] = true; dict7["cornice"] = true; dict7["cornish"] = true; dict5["cornu"] = true; dict6["cornus"] = true; dict5["corny"] = true; dict7["corokia"] = true; dict7["corolla"] = true; dict6["corona"] = true; dict7["coronal"] = true; dict7["coroner"] = true; dict7["coronet"] = true; dict5["corot"] = true; dict6["corozo"] = true; dict4["corp"] = true; dict5["corps"] = true; dict6["corpse"] = true; dict6["corpus"] = true; dict7["corrade"] = true; dict6["corral"] = true; dict7["correct"] = true; dict7["corrida"] = true; dict6["corrie"] = true; dict7["corrode"] = true; dict7["corrupt"] = true; dict7["corsage"] = true; dict7["corsair"] = true; dict5["corse"] = true; dict6["corset"] = true; dict7["corsica"] = true; dict7["corslet"] = true; dict6["cortef"] = true; dict7["cortege"] = true; dict6["cortes"] = true; dict6["cortex"] = true; dict6["cortez"] = true; dict7["cortina"] = true; dict6["corvee"] = true; dict7["corvine"] = true; dict6["corvus"] = true; dict7["corylus"] = true; dict6["corymb"] = true; dict7["corypha"] = true; dict6["coryza"] = true; dict5["cosec"] = true; dict4["cosh"] = true; dict6["cosher"] = true; dict6["cosign"] = true; dict6["cosily"] = true; dict6["cosine"] = true; dict6["cosmea"] = true; dict6["cosmic"] = true; dict6["cosmid"] = true; dict6["cosmos"] = true; dict4["coss"] = true; dict7["cossack"] = true; dict6["cosset"] = true; dict4["cost"] = true; dict5["costa"] = true; dict6["costal"] = true; dict7["costate"] = true; dict6["costia"] = true; dict7["costing"] = true; dict7["costive"] = true; dict6["costly"] = true; dict5["costs"] = true; dict7["costume"] = true; dict4["cosy"] = true; dict5["cotan"] = true; dict4["cote"] = true; dict7["coterie"] = true; dict7["cotinga"] = true; dict7["cotinus"] = true; dict7["cotonou"] = true; dict7["cottage"] = true; dict6["cottar"] = true; dict6["cotter"] = true; dict7["cottier"] = true; dict6["cotton"] = true; dict7["cottony"] = true; dict6["cottus"] = true; dict6["cotula"] = true; dict6["coucal"] = true; dict5["couch"] = true; dict4["coue"] = true; dict6["cougar"] = true; dict5["cough"] = true; dict7["coulomb"] = true; dict7["coulter"] = true; dict7["council"] = true; dict7["counsel"] = true; dict5["count"] = true; dict7["counter"] = true; dict7["country"] = true; dict6["county"] = true; dict4["coup"] = true; dict5["coupe"] = true; dict6["couple"] = true; dict7["coupled"] = true; dict7["coupler"] = true; dict7["couplet"] = true; dict6["coupon"] = true; dict7["courage"] = true; dict7["courbet"] = true; dict7["courier"] = true; dict7["courlan"] = true; dict6["course"] = true; dict7["courser"] = true; dict5["court"] = true; dict7["courtly"] = true; dict6["cousin"] = true; dict5["couth"] = true; dict7["couthie"] = true; dict6["couthy"] = true; dict7["couture"] = true; dict7["couvade"] = true; dict4["cove"] = true; dict5["coven"] = true; dict5["cover"] = true; dict7["covered"] = true; dict6["covert"] = true; dict5["covet"] = true; dict7["coveted"] = true; dict5["covey"] = true; dict7["coville"] = true; dict6["cowage"] = true; dict6["coward"] = true; dict7["cowbarn"] = true; dict7["cowbell"] = true; dict7["cowbird"] = true; dict6["cowboy"] = true; dict5["cower"] = true; dict7["cowfish"] = true; dict7["cowgirl"] = true; dict7["cowhand"] = true; dict7["cowherb"] = true; dict7["cowherd"] = true; dict7["cowhide"] = true; dict4["cowl"] = true; dict6["cowled"] = true; dict7["cowlick"] = true; dict7["cowling"] = true; dict6["cowman"] = true; dict6["cowpea"] = true; dict7["cowpens"] = true; dict6["cowper"] = true; dict6["cowpie"] = true; dict7["cowpoke"] = true; dict6["cowpox"] = true; dict6["cowrie"] = true; dict5["cowry"] = true; dict4["cows"] = true; dict7["cowshed"] = true; dict7["cowskin"] = true; dict7["cowslip"] = true; dict7["cowtown"] = true; dict5["cox-1"] = true; dict5["cox-2"] = true; dict4["coxa"] = true; dict7["coxcomb"] = true; dict6["coydog"] = true; dict5["coyly"] = true; dict7["coyness"] = true; dict5["coyol"] = true; dict6["coyote"] = true; dict5["coypu"] = true; dict5["cozen"] = true; dict6["cozily"] = true; dict4["cozy"] = true; dict4["crab"] = true; dict7["crabbed"] = true; dict6["crabby"] = true; dict5["crabs"] = true; dict5["crack"] = true; dict7["cracked"] = true; dict7["cracker"] = true; dict7["crackle"] = true; dict6["cracow"] = true; dict6["cradle"] = true; dict5["craft"] = true; dict7["crafter"] = true; dict6["crafty"] = true; dict4["crag"] = true; dict7["cragged"] = true; dict6["craggy"] = true; dict7["craigie"] = true; dict5["crake"] = true; dict4["cram"] = true; dict6["crambe"] = true; dict7["crammer"] = true; dict5["cramp"] = true; dict7["cramped"] = true; dict7["crampon"] = true; dict4["cran"] = true; dict6["cranch"] = true; dict5["crane"] = true; dict7["crangon"] = true; dict7["cranial"] = true; dict7["cranium"] = true; dict5["crank"] = true; dict6["cranky"] = true; dict6["cranny"] = true; dict4["crap"] = true; dict7["crapaud"] = true; dict5["crape"] = true; dict7["crapper"] = true; dict7["crappie"] = true; dict6["crappy"] = true; dict5["craps"] = true; dict5["crash"] = true; dict7["crasher"] = true; dict5["crass"] = true; dict5["crate"] = true; dict6["crater"] = true; dict7["crateva"] = true; dict6["craton"] = true; dict7["craunch"] = true; dict6["cravat"] = true; dict5["crave"] = true; dict6["craved"] = true; dict6["craven"] = true; dict7["craving"] = true; dict4["craw"] = true; dict7["crawdad"] = true; dict5["crawl"] = true; dict7["crawler"] = true; dict4["crax"] = true; dict6["crayon"] = true; dict5["craze"] = true; dict6["crazed"] = true; dict7["crazily"] = true; dict5["crazy"] = true; dict5["creak"] = true; dict6["creaky"] = true; dict5["cream"] = true; dict7["creamer"] = true; dict6["creamy"] = true; dict6["crease"] = true; dict6["create"] = true; dict7["creatin"] = true; dict7["creator"] = true; dict6["creche"] = true; dict5["crecy"] = true; dict4["cred"] = true; dict6["credal"] = true; dict6["credit"] = true; dict7["credits"] = true; dict5["credo"] = true; dict4["cree"] = true; dict5["creed"] = true; dict7["creedal"] = true; dict5["creek"] = true; dict5["creel"] = true; dict5["creep"] = true; dict7["creeper"] = true; dict6["creeps"] = true; dict6["creepy"] = true; dict6["creese"] = true; dict7["cremate"] = true; dict7["cremona"] = true; dict7["crenate"] = true; dict6["crenel"] = true; dict6["creole"] = true; dict5["creon"] = true; dict7["creosol"] = true; dict5["crepe"] = true; dict6["crepis"] = true; dict6["cresol"] = true; dict5["cress"] = true; dict7["cresson"] = true; dict5["crest"] = true; dict7["crested"] = true; dict6["cretan"] = true; dict5["crete"] = true; dict6["cretin"] = true; dict7["crevice"] = true; dict4["crew"] = true; dict6["crewet"] = true; dict7["crewman"] = true; dict4["crex"] = true; dict4["crib"] = true; dict5["crick"] = true; dict7["cricket"] = true; dict5["crier"] = true; dict5["crime"] = true; dict6["crimea"] = true; dict5["crimp"] = true; dict7["crimper"] = true; dict7["crimson"] = true; dict6["cringe"] = true; dict7["cringle"] = true; dict7["crinion"] = true; dict7["crinkle"] = true; dict7["crinkly"] = true; dict7["crinoid"] = true; dict7["criollo"] = true; dict7["cripple"] = true; dict6["crisis"] = true; dict5["crisp"] = true; dict7["crispen"] = true; dict7["crispin"] = true; dict7["crisply"] = true; dict6["crispy"] = true; dict7["cristal"] = true; dict5["crith"] = true; dict6["critic"] = true; dict7["critter"] = true; dict5["crius"] = true; dict5["croak"] = true; dict7["croaker"] = true; dict6["croaky"] = true; dict5["croat"] = true; dict7["croatia"] = true; dict7["crochet"] = true; dict5["crock"] = true; dict7["crocked"] = true; dict7["crocket"] = true; dict6["crocus"] = true; dict7["crocuta"] = true; dict7["croesus"] = true; dict5["croft"] = true; dict7["crofter"] = true; dict5["crohn"] = true; dict5["crone"] = true; dict5["cronk"] = true; dict6["cronus"] = true; dict5["crony"] = true; dict6["cronyn"] = true; dict5["crook"] = true; dict7["crooked"] = true; dict7["crookes"] = true; dict5["croon"] = true; dict7["crooner"] = true; dict4["crop"] = true; dict7["cropped"] = true; dict7["cropper"] = true; dict7["croquet"] = true; dict5["crore"] = true; dict6["crosby"] = true; dict7["crosier"] = true; dict5["cross"] = true; dict6["crosse"] = true; dict7["crossed"] = true; dict7["crossly"] = true; dict6["crotal"] = true; dict6["crotch"] = true; dict6["croton"] = true; dict7["crottal"] = true; dict7["crottle"] = true; dict6["crouch"] = true; dict5["croup"] = true; dict6["croupe"] = true; dict6["croupy"] = true; dict6["crouse"] = true; dict7["crouton"] = true; dict4["crow"] = true; dict7["crowbar"] = true; dict5["crowd"] = true; dict7["crowded"] = true; dict7["crowing"] = true; dict5["crown"] = true; dict7["crowned"] = true; dict7["crozier"] = true; dict7["crucial"] = true; dict7["crucify"] = true; dict4["crud"] = true; dict6["cruddy"] = true; dict5["crude"] = true; dict7["crudely"] = true; dict7["crudity"] = true; dict5["cruel"] = true; dict7["cruelly"] = true; dict7["cruelty"] = true; dict5["cruet"] = true; dict6["cruise"] = true; dict7["cruiser"] = true; dict7["cruller"] = true; dict5["crumb"] = true; dict7["crumble"] = true; dict7["crumbly"] = true; dict6["crummy"] = true; dict5["crump"] = true; dict7["crumpet"] = true; dict7["crumple"] = true; dict6["crunch"] = true; dict7["crupper"] = true; dict6["crural"] = true; dict4["crus"] = true; dict7["crusade"] = true; dict5["cruse"] = true; dict5["crush"] = true; dict7["crushed"] = true; dict7["crusher"] = true; dict5["crust"] = true; dict7["crustal"] = true; dict7["crusted"] = true; dict6["crusty"] = true; dict6["crutch"] = true; dict4["crux"] = true; dict7["crybaby"] = true; dict6["crying"] = true; dict7["cryogen"] = true; dict7["cryonic"] = true; dict5["crypt"] = true; dict7["cryptic"] = true; dict7["crystal"] = true; dict4["csis"] = true; dict5["ctene"] = true; dict7["ctenoid"] = true; dict4["cuba"] = true; dict5["cuban"] = true; dict5["cubby"] = true; dict4["cube"] = true; dict5["cubeb"] = true; dict5["cubic"] = true; dict7["cubical"] = true; dict7["cubicle"] = true; dict6["cubism"] = true; dict6["cubist"] = true; dict5["cubit"] = true; dict7["cubital"] = true; dict7["cubitus"] = true; dict6["cuboid"] = true; dict7["cuckold"] = true; dict6["cuckoo"] = true; dict7["cuculus"] = true; dict7["cucumis"] = true; dict7["cudbear"] = true; dict6["cuddle"] = true; dict6["cuddly"] = true; dict5["cuddy"] = true; dict6["cudgel"] = true; dict7["cudweed"] = true; dict4["cuff"] = true; dict7["cuirass"] = true; dict7["cuisine"] = true; dict6["cuisse"] = true; dict4["cuke"] = true; dict7["culcita"] = true; dict7["culebra"] = true; dict5["culex"] = true; dict4["cull"] = true; dict6["cullis"] = true; dict4["culm"] = true; dict7["culotte"] = true; dict7["culprit"] = true; dict4["cult"] = true; dict7["cultism"] = true; dict7["cultist"] = true; dict7["culture"] = true; dict6["cultus"] = true; dict7["culvert"] = true; dict6["cumana"] = true; dict6["cumber"] = true; dict7["cumbria"] = true; dict7["cumfrey"] = true; dict5["cumin"] = true; dict7["cuminum"] = true; dict7["cumquat"] = true; dict7["cumulus"] = true; dict6["cunaxa"] = true; dict6["cuneal"] = true; dict7["cuneate"] = true; dict6["cuneus"] = true; dict6["cunner"] = true; dict7["cunning"] = true; dict4["cunt"] = true; dict4["cuon"] = true; dict7["cupcake"] = true; dict5["cupel"] = true; dict6["cupful"] = true; dict5["cupid"] = true; dict7["cuplike"] = true; dict6["cupola"] = true; dict5["cuppa"] = true; dict6["cupper"] = true; dict7["cupping"] = true; dict6["cupric"] = true; dict7["cuprite"] = true; dict7["cuprous"] = true; dict7["cupular"] = true; dict6["cupule"] = true; dict7["curable"] = true; dict7["curacao"] = true; dict7["curacoa"] = true; dict6["curacy"] = true; dict6["curare"] = true; dict6["curate"] = true; dict7["curator"] = true; dict4["curb"] = true; dict7["curbing"] = true; dict7["curcuma"] = true; dict4["curd"] = true; dict6["curdle"] = true; dict7["curdled"] = true; dict4["cure"] = true; dict5["cured"] = true; dict5["curet"] = true; dict7["curette"] = true; dict6["curfew"] = true; dict5["curia"] = true; dict5["curie"] = true; dict6["curing"] = true; dict5["curio"] = true; dict7["curiosa"] = true; dict7["curious"] = true; dict6["curium"] = true; dict4["curl"] = true; dict6["curled"] = true; dict6["curler"] = true; dict6["curlew"] = true; dict7["curling"] = true; dict5["curly"] = true; dict7["currant"] = true; dict7["current"] = true; dict7["currier"] = true; dict7["currish"] = true; dict5["curry"] = true; dict5["curse"] = true; dict6["cursed"] = true; dict7["cursive"] = true; dict6["cursor"] = true; dict7["cursory"] = true; dict5["curst"] = true; dict4["curt"] = true; dict7["curtail"] = true; dict7["curtain"] = true; dict6["curtal"] = true; dict6["curtis"] = true; dict7["curtiss"] = true; dict6["curtly"] = true; dict7["curtsey"] = true; dict6["curtsy"] = true; dict5["curve"] = true; dict6["curved"] = true; dict6["curvet"] = true; dict6["curvey"] = true; dict7["curving"] = true; dict5["curvy"] = true; dict5["cusco"] = true; dict6["cuscus"] = true; dict7["cuscuta"] = true; dict6["cushat"] = true; dict6["cushaw"] = true; dict7["cushing"] = true; dict7["cushion"] = true; dict5["cushy"] = true; dict4["cusk"] = true; dict4["cusp"] = true; dict7["cuspate"] = true; dict6["cusped"] = true; dict6["cuspid"] = true; dict4["cuss"] = true; dict6["cussed"] = true; dict7["custard"] = true; dict6["custer"] = true; dict7["custody"] = true; dict6["custom"] = true; dict7["customs"] = true; dict6["cut-in"] = true; dict6["cut-up"] = true; dict7["cutaway"] = true; dict7["cutback"] = true; dict5["cutch"] = true; dict4["cute"] = true; dict6["cutely"] = true; dict7["cuticle"] = true; dict5["cutin"] = true; dict5["cutis"] = true; dict6["cutlas"] = true; dict7["cutlass"] = true; dict6["cutler"] = true; dict7["cutlery"] = true; dict6["cutlet"] = true; dict6["cutoff"] = true; dict6["cutout"] = true; dict6["cutter"] = true; dict7["cutting"] = true; dict6["cuttle"] = true; dict7["cutwork"] = true; dict7["cutworm"] = true; dict6["cuvier"] = true; dict5["cuzco"] = true; dict4["cxlv"] = true; dict4["cxxv"] = true; dict4["cxxx"] = true; dict5["cxxxv"] = true; dict6["cyamus"] = true; dict4["cyan"] = true; dict7["cyanide"] = true; dict7["cyanite"] = true; dict7["cyathea"] = true; dict6["cybele"] = true; dict6["cyborg"] = true; dict5["cycad"] = true; dict5["cycas"] = true; dict5["cycle"] = true; dict6["cyclic"] = true; dict7["cycling"] = true; dict7["cyclist"] = true; dict7["cycloid"] = true; dict7["cyclone"] = true; dict7["cyclops"] = true; dict5["cyder"] = true; dict7["cydonia"] = true; dict6["cygnet"] = true; dict6["cygnus"] = true; dict5["cylix"] = true; dict4["cyma"] = true; dict6["cymbal"] = true; dict6["cymbid"] = true; dict4["cyme"] = true; dict6["cymene"] = true; dict7["cymling"] = true; dict6["cymose"] = true; dict6["cymric"] = true; dict5["cymru"] = true; dict5["cymry"] = true; dict6["cymule"] = true; dict6["cynara"] = true; dict5["cynic"] = true; dict7["cynical"] = true; dict6["cynips"] = true; dict7["cynodon"] = true; dict7["cynomys"] = true; dict7["cynthia"] = true; dict7["cynwulf"] = true; dict4["cyon"] = true; dict7["cyperus"] = true; dict6["cypher"] = true; dict7["cypraea"] = true; dict5["cypre"] = true; dict7["cypress"] = true; dict7["cyprian"] = true; dict7["cypriot"] = true; dict6["cyprus"] = true; dict5["cyril"] = true; dict7["cyrilla"] = true; dict5["cyrus"] = true; dict4["cyst"] = true; dict6["cystic"] = true; dict7["cystine"] = true; dict7["cytisus"] = true; dict5["cytol"] = true; dict7["cytosol"] = true; dict4["czar"] = true; dict7["czarina"] = true; dict7["czarist"] = true; dict5["czech"] = true; dict6["czerny"] = true; dict5["d-day"] = true; dict7["d-layer"] = true; dict4["d.a."] = true; dict4["d.c."] = true; dict6["d.o.a."] = true; dict6["da'wah"] = true; dict4["daba"] = true; dict6["dabble"] = true; dict7["dabbled"] = true; dict7["dabbler"] = true; dict5["dacca"] = true; dict4["dace"] = true; dict6["dacelo"] = true; dict5["dacha"] = true; dict6["dachau"] = true; dict7["dachsie"] = true; dict6["dacite"] = true; dict7["dacitic"] = true; dict6["dacoit"] = true; dict7["dacoity"] = true; dict6["dacron"] = true; dict7["dacryon"] = true; dict6["dactyl"] = true; dict4["dada"] = true; dict7["dadaism"] = true; dict5["daddy"] = true; dict4["dado"] = true; dict6["daedal"] = true; dict6["daemon"] = true; dict5["daffo"] = true; dict5["dafla"] = true; dict4["daft"] = true; dict6["daftly"] = true; dict6["dagame"] = true; dict5["dagan"] = true; dict5["dagda"] = true; dict5["dagga"] = true; dict6["dagger"] = true; dict4["dago"] = true; dict5["dagon"] = true; dict4["dahl"] = true; dict6["dahlia"] = true; dict5["dahna"] = true; dict7["dahomey"] = true; dict6["daikon"] = true; dict4["dail"] = true; dict5["daily"] = true; dict7["daimler"] = true; dict6["daimon"] = true; dict6["dainty"] = true; dict6["dairen"] = true; dict5["dairy"] = true; dict4["dais"] = true; dict5["daisy"] = true; dict5["dakar"] = true; dict6["dakoit"] = true; dict7["dakoity"] = true; dict6["dakota"] = true; dict6["dalasi"] = true; dict4["dale"] = true; dict5["dalea"] = true; dict6["daleth"] = true; dict4["dali"] = true; dict6["dalian"] = true; dict6["dallas"] = true; dict7["dallier"] = true; dict5["dally"] = true; dict7["dalmane"] = true; dict4["dalo"] = true; dict6["dalton"] = true; dict4["dama"] = true; dict6["damage"] = true; dict7["damaged"] = true; dict7["damages"] = true; dict5["damar"] = true; dict6["damask"] = true; dict4["dame"] = true; dict7["damkina"] = true; dict6["dammar"] = true; dict4["damn"] = true; dict6["damned"] = true; dict7["damning"] = true; dict5["damon"] = true; dict7["damosel"] = true; dict7["damozel"] = true; dict4["damp"] = true; dict6["dampen"] = true; dict6["damper"] = true; dict7["dampish"] = true; dict6["damply"] = true; dict6["damsel"] = true; dict6["damson"] = true; dict4["dana"] = true; dict6["danaea"] = true; dict6["danaid"] = true; dict5["danau"] = true; dict6["danaus"] = true; dict5["dance"] = true; dict6["dancer"] = true; dict7["dancing"] = true; dict6["dander"] = true; dict7["dandify"] = true; dict7["dandily"] = true; dict6["dandle"] = true; dict5["dandy"] = true; dict4["dane"] = true; dict6["danger"] = true; dict6["dangla"] = true; dict6["dangle"] = true; dict6["daniel"] = true; dict6["danish"] = true; dict4["dank"] = true; dict7["danmark"] = true; dict7["danseur"] = true; dict5["dante"] = true; dict7["dantean"] = true; dict6["danton"] = true; dict4["danu"] = true; dict6["danube"] = true; dict6["danzig"] = true; dict6["daoism"] = true; dict6["daphne"] = true; dict7["daphnia"] = true; dict6["dapper"] = true; dict6["dapple"] = true; dict7["dappled"] = true; dict7["dapsang"] = true; dict7["dapsone"] = true; dict5["daraf"] = true; dict4["dard"] = true; dict6["dardan"] = true; dict6["dardic"] = true; dict4["dare"] = true; dict6["darfur"] = true; dict4["dari"] = true; dict7["daricon"] = true; dict6["daring"] = true; dict4["dark"] = true; dict6["darken"] = true; dict6["darkey"] = true; dict6["darkie"] = true; dict7["darkish"] = true; dict6["darkly"] = true; dict5["darky"] = true; dict7["darling"] = true; dict7["darmera"] = true; dict4["darn"] = true; dict6["darned"] = true; dict6["darnel"] = true; dict6["darner"] = true; dict7["darning"] = true; dict5["darpa"] = true; dict6["darrow"] = true; dict7["darsana"] = true; dict4["dart"] = true; dict6["darter"] = true; dict5["darts"] = true; dict6["darvon"] = true; dict6["darwin"] = true; dict4["dash"] = true; dict6["dashed"] = true; dict7["dasheen"] = true; dict7["dashiki"] = true; dict7["dashing"] = true; dict6["dassie"] = true; dict7["dastard"] = true; dict7["dasypus"] = true; dict7["dasyure"] = true; dict4["data"] = true; dict7["datable"] = true; dict4["date"] = true; dict5["dated"] = true; dict6["dating"] = true; dict6["dative"] = true; dict6["datril"] = true; dict5["datum"] = true; dict6["datura"] = true; dict4["daub"] = true; dict6["dauber"] = true; dict7["daubing"] = true; dict6["daucus"] = true; dict7["daumier"] = true; dict5["daunt"] = true; dict7["daunted"] = true; dict7["dauphin"] = true; dict5["david"] = true; dict5["davis"] = true; dict5["davit"] = true; dict4["davy"] = true; dict5["davys"] = true; dict5["dawah"] = true; dict6["dawdle"] = true; dict7["dawdler"] = true; dict5["dawes"] = true; dict4["dawn"] = true; dict7["dawning"] = true; dict6["dawson"] = true; dict7["day-old"] = true; dict5["dayan"] = true; dict6["daybed"] = true; dict7["daybook"] = true; dict6["dayboy"] = true; dict7["daycare"] = true; dict6["dayfly"] = true; dict7["daygirl"] = true; dict7["daylily"] = true; dict7["daylong"] = true; dict6["daypro"] = true; dict4["days"] = true; dict7["daystar"] = true; dict7["daytime"] = true; dict6["dayton"] = true; dict4["daze"] = true; dict5["dazed"] = true; dict7["dazedly"] = true; dict6["dazzle"] = true; dict7["dazzled"] = true; dict4["dbms"] = true; dict4["dccp"] = true; dict6["de-ice"] = true; dict6["deacon"] = true; dict4["dead"] = true; dict7["dead-on"] = true; dict6["deaden"] = true; dict7["deadeye"] = true; dict6["deadly"] = true; dict7["deadpan"] = true; dict4["deaf"] = true; dict6["deafen"] = true; dict4["deal"] = true; dict6["dealer"] = true; dict7["dealing"] = true; dict4["dean"] = true; dict7["deanery"] = true; dict4["dear"] = true; dict7["dearest"] = true; dict6["dearie"] = true; dict6["dearly"] = true; dict6["dearth"] = true; dict5["deary"] = true; dict5["death"] = true; dict7["deathly"] = true; dict7["debacle"] = true; dict5["debar"] = true; dict6["debark"] = true; dict6["debase"] = true; dict7["debased"] = true; dict7["debaser"] = true; dict6["debate"] = true; dict7["debater"] = true; dict7["debauch"] = true; dict6["debile"] = true; dict5["debit"] = true; dict7["debitor"] = true; dict6["debone"] = true; dict7["deboned"] = true; dict7["debouch"] = true; dict7["debrief"] = true; dict6["debris"] = true; dict4["debs"] = true; dict4["debt"] = true; dict6["debtor"] = true; dict5["debug"] = true; dict6["debunk"] = true; dict7["debussy"] = true; dict5["debut"] = true; dict6["decade"] = true; dict5["decaf"] = true; dict7["decagon"] = true; dict5["decal"] = true; dict6["decamp"] = true; dict6["decant"] = true; dict7["decapod"] = true; dict7["decatur"] = true; dict5["decay"] = true; dict7["decayed"] = true; dict7["decease"] = true; dict6["deceit"] = true; dict7["deceive"] = true; dict7["decency"] = true; dict6["decent"] = true; dict7["decibel"] = true; dict6["decide"] = true; dict7["decided"] = true; dict7["decidua"] = true; dict6["decile"] = true; dict7["decimal"] = true; dict6["decius"] = true; dict4["deck"] = true; dict6["decker"] = true; dict6["deckle"] = true; dict7["deckled"] = true; dict7["declaim"] = true; dict7["declare"] = true; dict6["declaw"] = true; dict7["decline"] = true; dict4["deco"] = true; dict6["decoct"] = true; dict6["decode"] = true; dict7["decoder"] = true; dict6["decoke"] = true; dict7["decolor"] = true; dict5["decor"] = true; dict7["decorum"] = true; dict5["decoy"] = true; dict6["decree"] = true; dict7["decreed"] = true; dict5["decry"] = true; dict7["decrypt"] = true; dict6["deduce"] = true; dict6["deduct"] = true; dict4["deed"] = true; dict7["deedbox"] = true; dict5["deeds"] = true; dict4["deem"] = true; dict4["deep"] = true; dict6["deepen"] = true; dict6["deeply"] = true; dict4["deer"] = true; dict5["deere"] = true; dict6["deface"] = true; dict6["defame"] = true; dict7["defamer"] = true; dict6["defang"] = true; dict5["defat"] = true; dict7["default"] = true; dict6["defeat"] = true; dict6["defect"] = true; dict7["defence"] = true; dict6["defend"] = true; dict7["defense"] = true; dict5["defer"] = true; dict7["defiant"] = true; dict7["deficit"] = true; dict6["defile"] = true; dict7["defiled"] = true; dict7["defiler"] = true; dict6["define"] = true; dict7["defined"] = true; dict7["deflate"] = true; dict7["deflect"] = true; dict5["defoe"] = true; dict5["defog"] = true; dict6["deform"] = true; dict7["defraud"] = true; dict6["defray"] = true; dict7["defrock"] = true; dict7["defrost"] = true; dict4["deft"] = true; dict6["deftly"] = true; dict7["defunct"] = true; dict6["defuse"] = true; dict4["defy"] = true; dict6["degage"] = true; dict5["degas"] = true; dict7["degauss"] = true; dict7["deglaze"] = true; dict7["degrade"] = true; dict6["degree"] = true; dict6["degust"] = true; dict7["dehisce"] = true; dict6["dehorn"] = true; dict5["deice"] = true; dict6["deicer"] = true; dict7["deictic"] = true; dict6["deific"] = true; dict5["deify"] = true; dict5["deign"] = true; dict6["deimos"] = true; dict5["deism"] = true; dict5["deist"] = true; dict7["deistic"] = true; dict5["deity"] = true; dict6["deixis"] = true; dict6["deject"] = true; dict6["dekker"] = true; dict5["dekko"] = true; dict5["delay"] = true; dict7["delayed"] = true; dict7["delayer"] = true; dict6["delete"] = true; dict4["delf"] = true; dict5["delft"] = true; dict5["delhi"] = true; dict4["deli"] = true; dict7["delibes"] = true; dict7["delible"] = true; dict7["delight"] = true; dict7["delilah"] = true; dict7["delimit"] = true; dict6["delist"] = true; dict6["delius"] = true; dict7["deliver"] = true; dict4["dell"] = true; dict7["delonix"] = true; dict7["delorme"] = true; dict7["delouse"] = true; dict6["delphi"] = true; dict7["delphic"] = true; dict5["delta"] = true; dict7["deltoid"] = true; dict6["delude"] = true; dict6["deluge"] = true; dict6["deluxe"] = true; dict5["delve"] = true; dict7["demagog"] = true; dict6["demand"] = true; dict6["demean"] = true; dict7["demerit"] = true; dict7["demerol"] = true; dict7["demesne"] = true; dict7["demeter"] = true; dict7["demigod"] = true; dict7["demille"] = true; dict6["demise"] = true; dict6["demist"] = true; dict4["demo"] = true; dict5["demob"] = true; dict6["demode"] = true; dict5["demon"] = true; dict7["demonic"] = true; dict6["demote"] = true; dict7["demotic"] = true; dict7["dempsey"] = true; dict7["demulen"] = true; dict5["demur"] = true; dict6["demure"] = true; dict6["denali"] = true; dict6["denary"] = true; dict5["deneb"] = true; dict6["dengue"] = true; dict6["denial"] = true; dict6["denier"] = true; dict5["denim"] = true; dict7["denizen"] = true; dict7["denmark"] = true; dict6["denote"] = true; dict5["dense"] = true; dict7["densely"] = true; dict7["density"] = true; dict4["dent"] = true; dict6["dental"] = true; dict7["dentate"] = true; dict6["dented"] = true; dict6["dentin"] = true; dict7["dentine"] = true; dict7["dentist"] = true; dict7["denture"] = true; dict6["denude"] = true; dict7["denuded"] = true; dict6["denver"] = true; dict4["deny"] = true; dict6["deodar"] = true; dict7["deparia"] = true; dict6["depart"] = true; dict6["depend"] = true; dict6["depict"] = true; dict7["deplane"] = true; dict7["deplete"] = true; dict7["deplore"] = true; dict6["deploy"] = true; dict7["deplume"] = true; dict6["depone"] = true; dict6["deport"] = true; dict6["depose"] = true; dict7["deposer"] = true; dict7["deposit"] = true; dict5["depot"] = true; dict7["deprave"] = true; dict7["depress"] = true; dict7["deprive"] = true; dict5["depth"] = true; dict6["depute"] = true; dict6["deputy"] = true; dict6["derail"] = true; dict6["derain"] = true; dict7["derange"] = true; dict6["derate"] = true; dict5["derby"] = true; dict6["deride"] = true; dict6["derive"] = true; dict7["derived"] = true; dict5["derma"] = true; dict6["dermal"] = true; dict6["dermic"] = true; dict6["dermis"] = true; dict7["derrick"] = true; dict7["derrida"] = true; dict6["derris"] = true; dict4["derv"] = true; dict7["dervish"] = true; dict6["desalt"] = true; dict7["descale"] = true; dict7["descant"] = true; dict7["descend"] = true; dict7["descent"] = true; dict6["descry"] = true; dict6["desert"] = true; dict7["deserts"] = true; dict7["deserve"] = true; dict5["desex"] = true; dict6["design"] = true; dict6["desire"] = true; dict7["desired"] = true; dict6["desist"] = true; dict4["desk"] = true; dict7["deskman"] = true; dict7["desktop"] = true; dict6["desmid"] = true; dict6["desorb"] = true; dict7["despair"] = true; dict7["despise"] = true; dict7["despite"] = true; dict7["despoil"] = true; dict7["despond"] = true; dict6["despot"] = true; dict7["dessert"] = true; dict7["destain"] = true; dict7["destine"] = true; dict7["destiny"] = true; dict7["destroy"] = true; dict7["desyrel"] = true; dict6["detach"] = true; dict6["detail"] = true; dict7["details"] = true; dict6["detain"] = true; dict6["detect"] = true; dict6["detent"] = true; dict7["detente"] = true; dict5["deter"] = true; dict7["deterge"] = true; dict6["detest"] = true; dict6["dethaw"] = true; dict6["detick"] = true; dict6["detour"] = true; dict5["detox"] = true; dict7["detract"] = true; dict7["detrain"] = true; dict7["detroit"] = true; dict6["detusk"] = true; dict5["deuce"] = true; dict6["deuced"] = true; dict7["deutzia"] = true; dict7["devalue"] = true; dict6["devein"] = true; dict7["develop"] = true; dict4["devi"] = true; dict7["deviant"] = true; dict7["deviate"] = true; dict6["device"] = true; dict7["devices"] = true; dict5["devil"] = true; dict7["devilry"] = true; dict7["devious"] = true; dict7["devisal"] = true; dict6["devise"] = true; dict7["devisee"] = true; dict7["deviser"] = true; dict7["devisor"] = true; dict7["devoice"] = true; dict6["devoid"] = true; dict6["devoir"] = true; dict7["devolve"] = true; dict5["devon"] = true; dict6["devote"] = true; dict7["devoted"] = true; dict7["devotee"] = true; dict6["devour"] = true; dict6["devout"] = true; dict7["devries"] = true; dict5["dewar"] = true; dict7["dewdrop"] = true; dict5["dewey"] = true; dict7["deweyan"] = true; dict6["dewlap"] = true; dict4["dewy"] = true; dict6["dexone"] = true; dict6["dexter"] = true; dict7["dextral"] = true; dict7["dextrin"] = true; dict4["dflp"] = true; dict7["dhahran"] = true; dict4["dhak"] = true; dict5["dhaka"] = true; dict4["dhal"] = true; dict6["dharma"] = true; dict5["dhava"] = true; dict5["dhawa"] = true; dict7["dhegiha"] = true; dict5["dhole"] = true; dict5["dhoti"] = true; dict4["dhow"] = true; dict7["diabeta"] = true; dict6["diadem"] = true; dict7["diagram"] = true; dict4["dial"] = true; dict7["dialect"] = true; dict6["dialog"] = true; dict7["dialyse"] = true; dict7["dialyze"] = true; dict4["diam"] = true; dict7["diamine"] = true; dict7["diamond"] = true; dict5["diana"] = true; dict6["diaper"] = true; dict6["diapir"] = true; dict7["diapsid"] = true; dict7["diarchy"] = true; dict7["diarist"] = true; dict5["diary"] = true; dict4["dias"] = true; dict6["diatom"] = true; dict4["diaz"] = true; dict5["diazo"] = true; dict6["dibber"] = true; dict6["dibble"] = true; dict6["dibbuk"] = true; dict7["dibrach"] = true; dict4["dibs"] = true; dict4["dice"] = true; dict5["dicer"] = true; dict7["diceros"] = true; dict5["dicey"] = true; dict4["dick"] = true; dict7["dickens"] = true; dict6["dicker"] = true; dict6["dickey"] = true; dict6["dickie"] = true; dict5["dicky"] = true; dict5["dicot"] = true; dict7["dictate"] = true; dict7["diction"] = true; dict6["dictum"] = true; dict6["didder"] = true; dict6["diddle"] = true; dict7["diddley"] = true; dict6["diddly"] = true; dict7["diderot"] = true; dict6["didion"] = true; dict4["dido"] = true; dict7["dieback"] = true; dict7["diehard"] = true; dict6["diesel"] = true; dict6["diesis"] = true; dict4["diet"] = true; dict7["dietary"] = true; dict6["dieter"] = true; dict7["dieting"] = true; dict6["differ"] = true; dict7["diffuse"] = true; dict6["digest"] = true; dict6["digger"] = true; dict7["digging"] = true; dict7["dighted"] = true; dict5["digit"] = true; dict7["digital"] = true; dict7["dignify"] = true; dict7["dignity"] = true; dict7["digoxin"] = true; dict6["digram"] = true; dict7["digraph"] = true; dict7["digress"] = true; dict4["digs"] = true; dict5["dijon"] = true; dict7["dik-dik"] = true; dict4["dika"] = true; dict4["dike"] = true; dict6["dilate"] = true; dict7["dilater"] = true; dict7["dilator"] = true; dict5["dildo"] = true; dict7["dilemma"] = true; dict4["dill"] = true; dict7["diluent"] = true; dict6["dilute"] = true; dict7["diluted"] = true; dict6["dimash"] = true; dict4["dime"] = true; dict5["dimer"] = true; dict6["dimity"] = true; dict5["dimly"] = true; dict6["dimmed"] = true; dict6["dimmer"] = true; dict7["dimness"] = true; dict6["dimout"] = true; dict6["dimple"] = true; dict6["dimwit"] = true; dict5["dinar"] = true; dict4["dine"] = true; dict5["diner"] = true; dict6["dinero"] = true; dict7["dinesen"] = true; dict7["dinette"] = true; dict4["ding"] = true; dict7["dingbat"] = true; dict5["dinge"] = true; dict6["dinghy"] = true; dict7["dingily"] = true; dict6["dingle"] = true; dict5["dingo"] = true; dict5["dingy"] = true; dict6["dining"] = true; dict4["dink"] = true; dict5["dinka"] = true; dict6["dinkey"] = true; dict5["dinky"] = true; dict6["dinner"] = true; dict4["dint"] = true; dict7["diocese"] = true; dict5["diode"] = true; dict6["diodon"] = true; dict4["diol"] = true; dict7["dionaea"] = true; dict5["dioon"] = true; dict7["diopter"] = true; dict7["dioptre"] = true; dict4["dior"] = true; dict7["diorama"] = true; dict7["diorite"] = true; dict6["diovan"] = true; dict7["dioxide"] = true; dict6["dioxin"] = true; dict7["diploid"] = true; dict7["diploma"] = true; dict6["dipnoi"] = true; dict7["dipogon"] = true; dict7["dipolar"] = true; dict6["dipole"] = true; dict6["dipped"] = true; dict6["dipper"] = true; dict7["dippers"] = true; dict7["diptera"] = true; dict7["diptych"] = true; dict5["dipus"] = true; dict7["dipylon"] = true; dict5["dirac"] = true; dict5["dirca"] = true; dict4["dire"] = true; dict6["direct"] = true; dict7["direful"] = true; dict5["dirge"] = true; dict6["dirham"] = true; dict4["dirk"] = true; dict6["dirndl"] = true; dict4["dirt"] = true; dict7["dirtily"] = true; dict5["dirty"] = true; dict4["disa"] = true; dict7["disable"] = true; dict6["disarm"] = true; dict7["disavow"] = true; dict7["disband"] = true; dict6["disbar"] = true; dict6["disbud"] = true; dict4["disc"] = true; dict7["discant"] = true; dict7["discard"] = true; dict7["discase"] = true; dict7["discern"] = true; dict7["discerp"] = true; dict7["discina"] = true; dict5["disco"] = true; dict7["discoid"] = true; dict7["discord"] = true; dict6["discus"] = true; dict7["discuss"] = true; dict7["disdain"] = true; dict7["disease"] = true; dict7["disgust"] = true; dict4["dish"] = true; dict6["dished"] = true; dict7["dishful"] = true; dict7["dishpan"] = true; dict7["dishrag"] = true; dict5["dishy"] = true; dict7["disjoin"] = true; dict4["disk"] = true; dict7["dislike"] = true; dict6["dismal"] = true; dict6["dismay"] = true; dict7["dismiss"] = true; dict6["disney"] = true; dict7["disobey"] = true; dict6["disown"] = true; dict6["dispel"] = true; dict7["display"] = true; dict7["disport"] = true; dict7["dispose"] = true; dict7["dispute"] = true; dict7["disrobe"] = true; dict7["disrupt"] = true; dict4["diss"] = true; dict7["dissect"] = true; dict7["dissent"] = true; dict7["distaff"] = true; dict6["distal"] = true; dict7["distant"] = true; dict7["distend"] = true; dict7["distich"] = true; dict6["distil"] = true; dict7["distill"] = true; dict7["distort"] = true; dict7["disturb"] = true; dict6["disuse"] = true; dict7["disused"] = true; dict4["dita"] = true; dict5["ditch"] = true; dict6["dither"] = true; dict7["dittany"] = true; dict5["ditto"] = true; dict5["ditty"] = true; dict6["diuril"] = true; dict7["diurnal"] = true; dict4["diva"] = true; dict5["divan"] = true; dict4["dive"] = true; dict5["diver"] = true; dict7["diverge"] = true; dict6["divers"] = true; dict7["diverse"] = true; dict6["divert"] = true; dict6["divest"] = true; dict6["divide"] = true; dict7["divided"] = true; dict7["divider"] = true; dict6["divine"] = true; dict7["diviner"] = true; dict6["diving"] = true; dict7["divisor"] = true; dict7["divorce"] = true; dict5["divot"] = true; dict7["divulge"] = true; dict5["divvy"] = true; dict5["diwan"] = true; dict5["dixie"] = true; dict5["dizen"] = true; dict7["dizzily"] = true; dict5["dizzy"] = true; dict6["djanet"] = true; dict5["djinn"] = true; dict6["djinni"] = true; dict6["djinny"] = true; dict4["dmus"] = true; dict7["dnieper"] = true; dict6["doable"] = true; dict6["dobbin"] = true; dict5["dobra"] = true; dict7["dobrich"] = true; dict6["dobson"] = true; dict6["docent"] = true; dict6["docile"] = true; dict4["dock"] = true; dict7["dockage"] = true; dict6["docker"] = true; dict6["docket"] = true; dict7["docking"] = true; dict6["doctor"] = true; dict6["dodder"] = true; dict7["doddery"] = true; dict6["doddle"] = true; dict5["dodge"] = true; dict6["dodgem"] = true; dict6["dodger"] = true; dict7["dodging"] = true; dict7["dodgson"] = true; dict5["dodgy"] = true; dict4["dodo"] = true; dict6["dodoma"] = true; dict4["doei"] = true; dict4["doer"] = true; dict7["doeskin"] = true; dict4["doff"] = true; dict7["dog-ear"] = true; dict7["dogbane"] = true; dict7["dogcart"] = true; dict4["doge"] = true; dict7["dogfish"] = true; dict6["dogged"] = true; dict6["doggie"] = true; dict7["dogging"] = true; dict5["doggo"] = true; dict5["doggy"] = true; dict5["dogie"] = true; dict6["dogleg"] = true; dict7["doglike"] = true; dict5["dogma"] = true; dict7["dogshit"] = true; dict7["dogsled"] = true; dict7["dogtrot"] = true; dict7["dogwood"] = true; dict4["dogy"] = true; dict4["doha"] = true; dict5["doily"] = true; dict6["doings"] = true; dict4["dojc"] = true; dict5["dolby"] = true; dict5["dolce"] = true; dict4["dole"] = true; dict7["doleful"] = true; dict4["doll"] = true; dict6["dollar"] = true; dict6["dollop"] = true; dict5["dolly"] = true; dict6["dolman"] = true; dict6["dolmas"] = true; dict6["dolmen"] = true; dict7["dolobid"] = true; dict5["dolor"] = true; dict6["dolour"] = true; dict7["dolphin"] = true; dict4["dolt"] = true; dict7["doltish"] = true; dict6["domain"] = true; dict7["dombeya"] = true; dict4["dome"] = true; dict5["domed"] = true; dict6["domine"] = true; dict7["dominee"] = true; dict7["domingo"] = true; dict7["dominic"] = true; dict7["dominie"] = true; dict6["domino"] = true; dict7["dominos"] = true; dict7["dominus"] = true; dict4["dona"] = true; dict5["donar"] = true; dict6["donate"] = true; dict7["donatus"] = true; dict6["donbas"] = true; dict7["donbass"] = true; dict4["done"] = true; dict5["donee"] = true; dict7["donetsk"] = true; dict4["dong"] = true; dict6["dongle"] = true; dict6["donjon"] = true; dict6["donkey"] = true; dict6["donkin"] = true; dict5["donna"] = true; dict5["donne"] = true; dict7["donnean"] = true; dict7["donnian"] = true; dict7["donnish"] = true; dict5["donor"] = true; dict5["donut"] = true; dict7["doo-wop"] = true; dict4["doob"] = true; dict6["doodad"] = true; dict6["doodia"] = true; dict6["doodle"] = true; dict6["doofus"] = true; dict4["doom"] = true; dict6["doomed"] = true; dict4["door"] = true; dict7["doorman"] = true; dict7["doormat"] = true; dict7["doorway"] = true; dict4["dopa"] = true; dict4["dope"] = true; dict5["doped"] = true; dict5["dopey"] = true; dict7["doppler"] = true; dict4["dopy"] = true; dict6["dorado"] = true; dict6["dorian"] = true; dict5["doric"] = true; dict7["doriden"] = true; dict5["doris"] = true; dict4["dork"] = true; dict7["dorking"] = true; dict4["dorm"] = true; dict7["dormant"] = true; dict6["dormer"] = true; dict6["dormie"] = true; dict5["dormy"] = true; dict6["dorsal"] = true; dict6["dorsum"] = true; dict4["dory"] = true; dict6["dosage"] = true; dict4["dose"] = true; dict5["dosed"] = true; dict4["doss"] = true; dict6["dossal"] = true; dict6["dossel"] = true; dict6["dosser"] = true; dict7["dossier"] = true; dict7["dot-com"] = true; dict6["dotage"] = true; dict6["dotard"] = true; dict4["dote"] = true; dict6["doting"] = true; dict6["dotrel"] = true; dict6["dotted"] = true; dict7["dottily"] = true; dict6["dottle"] = true; dict5["dotty"] = true; dict6["douala"] = true; dict6["double"] = true; dict7["doubled"] = true; dict7["doubler"] = true; dict7["doubles"] = true; dict7["doublet"] = true; dict6["doubly"] = true; dict5["doubt"] = true; dict7["doubter"] = true; dict6["douche"] = true; dict5["dough"] = true; dict6["doughy"] = true; dict7["douglas"] = true; dict5["doula"] = true; dict4["dour"] = true; dict5["doura"] = true; dict6["dourah"] = true; dict6["dourly"] = true; dict5["douse"] = true; dict7["dousing"] = true; dict4["dove"] = true; dict7["dovekie"] = true; dict5["dover"] = true; dict6["dovish"] = true; dict7["dowager"] = true; dict7["dowdily"] = true; dict7["dowding"] = true; dict5["dowdy"] = true; dict5["dowel"] = true; dict5["dower"] = true; dict7["dowered"] = true; dict6["dowery"] = true; dict7["dowland"] = true; dict4["down"] = true; dict6["downer"] = true; dict7["downing"] = true; dict5["downy"] = true; dict5["dowry"] = true; dict5["dowse"] = true; dict6["dowser"] = true; dict7["dowsing"] = true; dict7["doxepin"] = true; dict4["doxy"] = true; dict5["doyen"] = true; dict7["doyenne"] = true; dict6["doyley"] = true; dict5["doyly"] = true; dict4["doze"] = true; dict5["dozen"] = true; dict6["dozens"] = true; dict5["dozer"] = true; dict4["dozy"] = true; dict5["dphil"] = true; dict4["dprk"] = true; dict4["drab"] = true; dict5["draba"] = true; dict6["drably"] = true; dict6["drachm"] = true; dict7["drachma"] = true; dict5["draco"] = true; dict7["dracula"] = true; dict5["draft"] = true; dict7["draftee"] = true; dict7["drafter"] = true; dict6["drafty"] = true; dict4["drag"] = true; dict6["dragee"] = true; dict7["dragger"] = true; dict7["draggle"] = true; dict7["dragnet"] = true; dict6["dragon"] = true; dict7["dragoon"] = true; dict5["drain"] = true; dict7["drained"] = true; dict5["drake"] = true; dict4["dram"] = true; dict5["drama"] = true; dict5["drape"] = true; dict6["draped"] = true; dict6["draper"] = true; dict7["drapery"] = true; dict7["drastic"] = true; dict7["draught"] = true; dict4["draw"] = true; dict7["drawbar"] = true; dict6["drawee"] = true; dict6["drawer"] = true; dict7["drawers"] = true; dict7["drawing"] = true; dict5["drawl"] = true; dict7["drawler"] = true; dict5["drawn"] = true; dict4["dray"] = true; dict5["dread"] = true; dict7["dreaded"] = true; dict5["dream"] = true; dict7["dreamed"] = true; dict7["dreamer"] = true; dict6["dreamy"] = true; dict5["drear"] = true; dict6["dreary"] = true; dict5["dreck"] = true; dict6["dredge"] = true; dict7["dredger"] = true; dict4["dreg"] = true; dict5["dregs"] = true; dict7["dreiser"] = true; dict6["drench"] = true; dict7["dresden"] = true; dict5["dress"] = true; dict7["dressed"] = true; dict7["dresser"] = true; dict6["dressy"] = true; dict4["drew"] = true; dict4["drey"] = true; dict7["dreyfus"] = true; dict4["drib"] = true; dict7["dribble"] = true; dict7["driblet"] = true; dict5["dried"] = true; dict5["drier"] = true; dict5["drift"] = true; dict7["drifter"] = true; dict5["drill"] = true; dict7["drilled"] = true; dict5["drily"] = true; dict6["drimys"] = true; dict5["drink"] = true; dict7["drinker"] = true; dict4["drip"] = true; dict6["drippy"] = true; dict5["drive"] = true; dict6["drivel"] = true; dict6["driven"] = true; dict6["driver"] = true; dict7["driving"] = true; dict7["drizzle"] = true; dict7["drizzly"] = true; dict4["drms"] = true; dict6["drogue"] = true; dict5["droll"] = true; dict5["drome"] = true; dict5["drone"] = true; dict7["droning"] = true; dict5["drool"] = true; dict7["drooler"] = true; dict5["droop"] = true; dict6["droopy"] = true; dict4["drop"] = true; dict7["droplet"] = true; dict7["dropout"] = true; dict7["dropper"] = true; dict6["dropsy"] = true; dict7["drosera"] = true; dict7["droshky"] = true; dict6["drosky"] = true; dict5["dross"] = true; dict7["drought"] = true; dict6["drouth"] = true; dict5["drove"] = true; dict6["drover"] = true; dict5["drown"] = true; dict6["drowse"] = true; dict6["drowsy"] = true; dict4["drub"] = true; dict6["drudge"] = true; dict4["drug"] = true; dict7["drugged"] = true; dict7["drugget"] = true; dict5["druid"] = true; dict4["drum"] = true; dict7["drumlin"] = true; dict7["drummer"] = true; dict5["drunk"] = true; dict7["drunken"] = true; dict5["drupe"] = true; dict5["druse"] = true; dict6["drusen"] = true; dict5["druze"] = true; dict7["dry-rot"] = true; dict5["dryad"] = true; dict5["dryas"] = true; dict6["dryden"] = true; dict7["drydock"] = true; dict5["dryer"] = true; dict5["dryly"] = true; dict7["dryness"] = true; dict6["drypis"] = true; dict7["drywall"] = true; dict6["dscdna"] = true; dict4["dtic"] = true; dict4["duad"] = true; dict4["dual"] = true; dict7["dualism"] = true; dict7["dualist"] = true; dict7["duality"] = true; dict5["dubai"] = true; dict6["dubbin"] = true; dict7["dubbing"] = true; dict7["dubiety"] = true; dict7["dubious"] = true; dict6["dublin"] = true; dict7["dubnium"] = true; dict7["dubuque"] = true; dict5["dubya"] = true; dict6["dubyuh"] = true; dict5["ducal"] = true; dict5["ducat"] = true; dict4["duce"] = true; dict7["duchamp"] = true; dict7["duchess"] = true; dict5["duchy"] = true; dict4["duck"] = true; dict7["ducking"] = true; dict7["duckpin"] = true; dict5["ducky"] = true; dict4["duct"] = true; dict7["ductile"] = true; dict7["ductule"] = true; dict4["dude"] = true; dict6["dudeen"] = true; dict7["dudgeon"] = true; dict4["duds"] = true; dict4["duel"] = true; dict6["dueler"] = true; dict7["duelist"] = true; dict7["dueller"] = true; dict6["duenna"] = true; dict4["duet"] = true; dict6["duette"] = true; dict4["duff"] = true; dict6["duffel"] = true; dict6["duffer"] = true; dict6["duffle"] = true; dict4["dufy"] = true; dict6["dugong"] = true; dict6["dugout"] = true; dict5["dukas"] = true; dict4["duke"] = true; dict7["dukedom"] = true; dict6["dulcet"] = true; dict7["dulcify"] = true; dict4["dull"] = true; dict7["dullard"] = true; dict6["dulled"] = true; dict6["dulles"] = true; dict5["dully"] = true; dict5["dulse"] = true; dict6["duluth"] = true; dict4["duly"] = true; dict4["duma"] = true; dict5["dumas"] = true; dict4["dumb"] = true; dict7["dumbass"] = true; dict6["dumbly"] = true; dict6["dumdum"] = true; dict5["dummy"] = true; dict4["dump"] = true; dict6["dumper"] = true; dict7["dumping"] = true; dict5["dumps"] = true; dict5["dumpy"] = true; dict6["dumuzi"] = true; dict6["duncan"] = true; dict5["dunce"] = true; dict7["duncish"] = true; dict4["dune"] = true; dict4["dung"] = true; dict7["dungeon"] = true; dict4["dunk"] = true; dict7["dunkard"] = true; dict6["dunker"] = true; dict7["dunkers"] = true; dict7["dunkirk"] = true; dict6["dunlin"] = true; dict7["dunnock"] = true; dict5["duomo"] = true; dict4["dupe"] = true; dict6["dupery"] = true; dict5["duple"] = true; dict6["duplex"] = true; dict4["dura"] = true; dict7["durable"] = true; dict5["dural"] = true; dict7["duramen"] = true; dict7["durance"] = true; dict7["durango"] = true; dict6["durant"] = true; dict7["durante"] = true; dict7["durazzo"] = true; dict6["durban"] = true; dict6["durbar"] = true; dict5["durer"] = true; dict6["duress"] = true; dict5["durga"] = true; dict6["durham"] = true; dict6["durian"] = true; dict5["durio"] = true; dict6["durion"] = true; dict7["durmast"] = true; dict5["durra"] = true; dict7["durrell"] = true; dict6["durres"] = true; dict5["durum"] = true; dict7["dusanbe"] = true; dict4["duse"] = true; dict4["dusk"] = true; dict5["dusky"] = true; dict4["dust"] = true; dict7["dustbin"] = true; dict6["duster"] = true; dict7["dustman"] = true; dict7["dustmop"] = true; dict7["dustpan"] = true; dict7["dustrag"] = true; dict6["dustup"] = true; dict5["dusty"] = true; dict5["dutch"] = true; dict7["duteous"] = true; dict7["dutiful"] = true; dict4["duty"] = true; dict5["duvet"] = true; dict6["dvorak"] = true; dict5["dwarf"] = true; dict5["dweeb"] = true; dict5["dwell"] = true; dict7["dweller"] = true; dict7["dwindle"] = true; dict4["dyad"] = true; dict6["dyadic"] = true; dict7["dyarchy"] = true; dict5["dyaus"] = true; dict6["dybbuk"] = true; dict4["dyed"] = true; dict6["dyeing"] = true; dict4["dyer"] = true; dict7["dyeweed"] = true; dict7["dyewood"] = true; dict5["dying"] = true; dict7["dyirbal"] = true; dict4["dyke"] = true; dict5["dylan"] = true; dict7["dynamic"] = true; dict6["dynamo"] = true; dict7["dynapen"] = true; dict6["dynast"] = true; dict7["dynasty"] = true; dict4["dyne"] = true; dict7["dysomia"] = true; dict7["dyspnea"] = true; dict7["dysuria"] = true; dict4["e'en"] = true; dict4["e'er"] = true; dict6["e-bomb"] = true; dict6["e-mail"] = true; dict7["e-mycin"] = true; dict4["e.g."] = true; dict6["e.s.p."] = true; dict4["each"] = true; dict6["eacles"] = true; dict6["eadwig"] = true; dict5["eager"] = true; dict7["eagerly"] = true; dict5["eagle"] = true; dict6["eaglet"] = true; dict5["eagre"] = true; dict5["eames"] = true; dict7["earache"] = true; dict7["eardrop"] = true; dict7["eardrum"] = true; dict5["eared"] = true; dict7["earflap"] = true; dict6["earful"] = true; dict7["earhart"] = true; dict4["earl"] = true; dict6["earlap"] = true; dict7["earldom"] = true; dict7["earless"] = true; dict7["earlier"] = true; dict7["earlobe"] = true; dict5["early"] = true; dict7["earmark"] = true; dict7["earmuff"] = true; dict4["earn"] = true; dict6["earned"] = true; dict6["earner"] = true; dict7["earnest"] = true; dict7["earplug"] = true; dict7["earring"] = true; dict7["earshot"] = true; dict5["earth"] = true; dict7["earthen"] = true; dict7["earthly"] = true; dict6["earthy"] = true; dict6["earwax"] = true; dict6["earwig"] = true; dict4["ease"] = true; dict5["eased"] = true; dict5["easel"] = true; dict6["easily"] = true; dict6["easing"] = true; dict4["east"] = true; dict6["easter"] = true; dict7["eastern"] = true; dict7["eastman"] = true; dict4["easy"] = true; dict7["eatable"] = true; dict6["eatage"] = true; dict5["eater"] = true; dict6["eatery"] = true; dict6["eating"] = true; dict4["eats"] = true; dict5["eaves"] = true; dict6["ebbing"] = true; dict7["ebbtide"] = true; dict4["ebit"] = true; dict6["ebitda"] = true; dict5["eblis"] = true; dict5["ebola"] = true; dict4["ebon"] = true; dict7["ebonics"] = true; dict7["ebonise"] = true; dict7["ebonite"] = true; dict7["ebonize"] = true; dict5["ebony"] = true; dict4["ebro"] = true; dict6["ecarte"] = true; dict6["eccles"] = true; dict4["eccm"] = true; dict7["eccrine"] = true; dict7["ecdemic"] = true; dict7["ecdysis"] = true; dict6["ecesis"] = true; dict7["echelon"] = true; dict7["echidna"] = true; dict7["echinus"] = true; dict6["echium"] = true; dict4["echo"] = true; dict6["echoic"] = true; dict7["echoing"] = true; dict4["echt"] = true; dict7["eckhart"] = true; dict6["eclair"] = true; dict5["eclat"] = true; dict7["eclipse"] = true; dict7["eclogue"] = true; dict7["ecology"] = true; dict7["economy"] = true; dict6["ecosoc"] = true; dict4["ecru"] = true; dict7["ecstasy"] = true; dict7["ectasia"] = true; dict7["ectasis"] = true; dict7["ectopia"] = true; dict7["ectopic"] = true; dict7["ecuador"] = true; dict6["eczema"] = true; dict7["edacity"] = true; dict4["edam"] = true; dict4["edda"] = true; dict4["eddo"] = true; dict4["eddy"] = true; dict7["edecrin"] = true; dict5["edema"] = true; dict4["eden"] = true; dict7["edental"] = true; dict6["ederle"] = true; dict5["edgar"] = true; dict4["edge"] = true; dict5["edged"] = true; dict5["edger"] = true; dict6["edging"] = true; dict4["edgy"] = true; dict6["edible"] = true; dict5["edict"] = true; dict7["edifice"] = true; dict7["edified"] = true; dict5["edify"] = true; dict6["edirne"] = true; dict6["edison"] = true; dict4["edit"] = true; dict6["edited"] = true; dict7["editing"] = true; dict7["edition"] = true; dict6["editor"] = true; dict7["edronax"] = true; dict4["edta"] = true; dict7["educate"] = true; dict5["educe"] = true; dict6["edward"] = true; dict7["edwards"] = true; dict5["edwin"] = true; dict4["edwy"] = true; dict5["eelam"] = true; dict7["eellike"] = true; dict7["eelpout"] = true; dict7["eelworm"] = true; dict5["eerie"] = true; dict6["eerily"] = true; dict4["eery"] = true; dict6["efface"] = true; dict6["effect"] = true; dict7["effects"] = true; dict7["effendi"] = true; dict6["effete"] = true; dict6["effigy"] = true; dict6["efflux"] = true; dict6["effort"] = true; dict6["effuse"] = true; dict7["egalite"] = true; dict7["egality"] = true; dict6["egbert"] = true; dict6["egeria"] = true; dict5["egest"] = true; dict5["eggar"] = true; dict6["eggcup"] = true; dict5["egger"] = true; dict7["egghead"] = true; dict6["eggnog"] = true; dict4["eggs"] = true; dict4["egis"] = true; dict6["egoism"] = true; dict6["egoist"] = true; dict7["egotism"] = true; dict7["egotist"] = true; dict7["egotrip"] = true; dict6["egress"] = true; dict5["egret"] = true; dict7["egretta"] = true; dict4["egtk"] = true; dict5["egypt"] = true; dict7["ehrlich"] = true; dict5["eibit"] = true; dict5["eider"] = true; dict7["eidetic"] = true; dict5["eidos"] = true; dict6["eiffel"] = true; dict5["eigen"] = true; dict5["eight"] = true; dict7["eighter"] = true; dict6["eighth"] = true; dict7["eightvo"] = true; dict6["eighty"] = true; dict7["eijkman"] = true; dict7["eimeria"] = true; dict4["eira"] = true; dict4["eire"] = true; dict6["either"] = true; dict5["eject"] = true; dict7["ejector"] = true; dict5["ekman"] = true; dict6["elaeis"] = true; dict4["elam"] = true; dict7["elamite"] = true; dict4["elan"] = true; dict5["eland"] = true; dict6["elanus"] = true; dict6["elaphe"] = true; dict6["elapid"] = true; dict6["elapse"] = true; dict7["elapsed"] = true; dict7["elastic"] = true; dict7["elastin"] = true; dict5["elate"] = true; dict6["elated"] = true; dict6["elater"] = true; dict7["elating"] = true; dict7["elation"] = true; dict6["elavil"] = true; dict4["elbe"] = true; dict5["elbow"] = true; dict5["elder"] = true; dict7["elderly"] = true; dict6["eldest"] = true; dict5["elect"] = true; dict7["elected"] = true; dict7["elector"] = true; dict7["electra"] = true; dict7["elegant"] = true; dict7["elegiac"] = true; dict7["elegise"] = true; dict7["elegist"] = true; dict7["elegize"] = true; dict5["elegy"] = true; dict7["element"] = true; dict5["elemi"] = true; dict7["elephas"] = true; dict7["elevate"] = true; dict6["eleven"] = true; dict5["elfin"] = true; dict6["elfish"] = true; dict7["elflike"] = true; dict5["elgar"] = true; dict4["elia"] = true; dict6["elicit"] = true; dict5["elide"] = true; dict6["elijah"] = true; dict5["elint"] = true; dict7["elinvar"] = true; dict7["eliomys"] = true; dict5["eliot"] = true; dict5["elisa"] = true; dict7["elision"] = true; dict5["elite"] = true; dict7["elitism"] = true; dict7["elitist"] = true; dict6["elixir"] = true; dict7["elkwood"] = true; dict5["ellas"] = true; dict4["elli"] = true; dict7["ellipse"] = true; dict7["ellison"] = true; dict5["ellul"] = true; dict6["elmont"] = true; dict7["elmwood"] = true; dict7["elocute"] = true; dict6["elodea"] = true; dict5["elope"] = true; dict5["elops"] = true; dict6["elsass"] = true; dict6["elspar"] = true; dict6["eluate"] = true; dict5["elude"] = true; dict7["eluding"] = true; dict4["elul"] = true; dict7["elusion"] = true; dict7["elusive"] = true; dict5["elute"] = true; dict7["elution"] = true; dict5["elver"] = true; dict5["elves"] = true; dict5["elvis"] = true; dict6["elvish"] = true; dict6["elymus"] = true; dict7["elysian"] = true; dict7["elysium"] = true; dict7["elytron"] = true; dict5["email"] = true; dict7["emanate"] = true; dict6["embalm"] = true; dict6["embank"] = true; dict7["embargo"] = true; dict6["embark"] = true; dict7["embassy"] = true; dict5["embed"] = true; dict5["ember"] = true; dict6["emblem"] = true; dict6["embody"] = true; dict7["embolic"] = true; dict7["embolus"] = true; dict6["emboss"] = true; dict7["embower"] = true; dict7["embrace"] = true; dict7["embroil"] = true; dict7["embrown"] = true; dict6["embryo"] = true; dict5["emcee"] = true; dict4["emda"] = true; dict5["emeer"] = true; dict5["emend"] = true; dict7["emended"] = true; dict7["emerald"] = true; dict6["emerge"] = true; dict7["emerson"] = true; dict5["emery"] = true; dict7["emeside"] = true; dict6["emesis"] = true; dict6["emetic"] = true; dict7["emetrol"] = true; dict6["emigre"] = true; dict7["emigree"] = true; dict5["emile"] = true; dict6["emilia"] = true; dict7["eminent"] = true; dict4["emir"] = true; dict7["emirate"] = true; dict4["emit"] = true; dict7["emitter"] = true; dict5["emmer"] = true; dict5["emmet"] = true; dict4["emmy"] = true; dict5["emote"] = true; dict7["emotion"] = true; dict7["emotive"] = true; dict6["empale"] = true; dict7["empanel"] = true; dict7["empathy"] = true; dict7["emperor"] = true; dict6["empire"] = true; dict7["empiric"] = true; dict7["empirin"] = true; dict7["emplace"] = true; dict7["emplane"] = true; dict6["employ"] = true; dict7["empower"] = true; dict7["empress"] = true; dict6["emptor"] = true; dict5["empty"] = true; dict7["empyema"] = true; dict7["emulate"] = true; dict7["emulous"] = true; dict6["en-lil"] = true; dict6["enable"] = true; dict5["enact"] = true; dict6["enamel"] = true; dict7["enamine"] = true; dict6["enamor"] = true; dict7["enamour"] = true; dict5["enate"] = true; dict6["enatic"] = true; dict7["enation"] = true; dict6["enbrel"] = true; dict6["encamp"] = true; dict6["encase"] = true; dict7["encased"] = true; dict7["encelia"] = true; dict7["enchain"] = true; dict7["enchant"] = true; dict7["enclave"] = true; dict7["enclose"] = true; dict6["encode"] = true; dict6["encore"] = true; dict7["encrust"] = true; dict7["encrypt"] = true; dict7["end-all"] = true; dict6["endear"] = true; dict5["ended"] = true; dict7["endemic"] = true; dict7["endgame"] = true; dict6["ending"] = true; dict6["endive"] = true; dict7["endless"] = true; dict7["endogen"] = true; dict7["endorse"] = true; dict5["endow"] = true; dict7["endowed"] = true; dict5["endue"] = true; dict6["endure"] = true; dict7["endways"] = true; dict7["endwise"] = true; dict5["enema"] = true; dict5["enemy"] = true; dict7["energid"] = true; dict6["energy"] = true; dict6["enesco"] = true; dict5["enets"] = true; dict7["enfeoff"] = true; dict6["enfold"] = true; dict7["enforce"] = true; dict6["engage"] = true; dict7["engaged"] = true; dict6["engels"] = true; dict6["engild"] = true; dict6["engine"] = true; dict7["england"] = true; dict7["english"] = true; dict6["englut"] = true; dict7["engorge"] = true; dict7["engraft"] = true; dict6["engram"] = true; dict7["engrave"] = true; dict7["engross"] = true; dict6["engulf"] = true; dict7["enhance"] = true; dict7["enhydra"] = true; dict4["enid"] = true; dict6["enigma"] = true; dict6["enjoin"] = true; dict5["enjoy"] = true; dict7["enjoyer"] = true; dict6["enkaid"] = true; dict4["enki"] = true; dict6["enkidu"] = true; dict6["enlace"] = true; dict7["enlarge"] = true; dict5["enlil"] = true; dict6["enlist"] = true; dict7["enliven"] = true; dict6["enmesh"] = true; dict6["enmity"] = true; dict6["ennead"] = true; dict7["ennoble"] = true; dict5["ennui"] = true; dict4["enol"] = true; dict6["enolic"] = true; dict7["enology"] = true; dict6["enosis"] = true; dict6["enough"] = true; dict7["enounce"] = true; dict6["enovid"] = true; dict7["enplane"] = true; dict7["enquire"] = true; dict7["enquiry"] = true; dict6["enrage"] = true; dict7["enraged"] = true; dict6["enrich"] = true; dict6["enrobe"] = true; dict5["enrol"] = true; dict6["enroll"] = true; dict6["ensete"] = true; dict6["ensign"] = true; dict6["ensile"] = true; dict5["ensis"] = true; dict5["ensky"] = true; dict7["enslave"] = true; dict7["ensnare"] = true; dict7["ensnarl"] = true; dict7["ensuant"] = true; dict5["ensue"] = true; dict7["ensuing"] = true; dict6["ensure"] = true; dict6["entail"] = true; dict7["entasis"] = true; dict7["entebbe"] = true; dict7["entelea"] = true; dict7["entente"] = true; dict5["enter"] = true; dict7["enteral"] = true; dict7["enteric"] = true; dict7["enteron"] = true; dict7["enthral"] = true; dict7["enthuse"] = true; dict6["entice"] = true; dict6["entire"] = true; dict7["entitle"] = true; dict6["entity"] = true; dict6["entomb"] = true; dict7["entrain"] = true; dict7["entrant"] = true; dict6["entrap"] = true; dict7["entreat"] = true; dict6["entree"] = true; dict6["entric"] = true; dict7["entropy"] = true; dict7["entrust"] = true; dict5["entry"] = true; dict5["entsi"] = true; dict5["entsy"] = true; dict7["entwine"] = true; dict5["enuki"] = true; dict6["enured"] = true; dict7["envelop"] = true; dict7["envenom"] = true; dict7["envious"] = true; dict7["environ"] = true; dict5["envoi"] = true; dict5["envoy"] = true; dict4["envy"] = true; dict6["enwrap"] = true; dict6["enzyme"] = true; dict6["eocene"] = true; dict6["eolian"] = true; dict5["eolic"] = true; dict6["eolith"] = true; dict6["eonian"] = true; dict5["eosin"] = true; dict7["epacris"] = true; dict6["eparch"] = true; dict7["eparchy"] = true; dict7["epaulet"] = true; dict4["epee"] = true; dict7["epergne"] = true; dict4["epha"] = true; dict5["ephah"] = true; dict7["ephedra"] = true; dict7["ephesus"] = true; dict4["epic"] = true; dict6["epical"] = true; dict7["epicarp"] = true; dict7["epicene"] = true; dict7["epicure"] = true; dict7["epigaea"] = true; dict6["epigon"] = true; dict7["epigone"] = true; dict7["epigram"] = true; dict7["epilate"] = true; dict6["epilog"] = true; dict6["epirus"] = true; dict7["episcia"] = true; dict7["episode"] = true; dict7["episome"] = true; dict7["epistle"] = true; dict7["epitaph"] = true; dict7["epitaxy"] = true; dict7["epithet"] = true; dict7["epitome"] = true; dict7["epitope"] = true; dict7["epizoan"] = true; dict7["epizoic"] = true; dict7["epizoon"] = true; dict5["epoch"] = true; dict7["epochal"] = true; dict5["epona"] = true; dict6["eponym"] = true; dict7["eponymy"] = true; dict4["epos"] = true; dict5["epoxy"] = true; dict5["eprom"] = true; dict7["epsilon"] = true; dict7["epstein"] = true; dict7["equable"] = true; dict7["equably"] = true; dict5["equal"] = true; dict7["equally"] = true; dict7["equanil"] = true; dict6["equate"] = true; dict7["equator"] = true; dict7["equerry"] = true; dict7["equetus"] = true; dict5["equid"] = true; dict7["equidae"] = true; dict6["equine"] = true; dict7["equinox"] = true; dict5["equip"] = true; dict6["equipt"] = true; dict6["equity"] = true; dict5["equus"] = true; dict5["erase"] = true; dict6["eraser"] = true; dict7["erasmus"] = true; dict7["erasure"] = true; dict5["erato"] = true; dict6["erbium"] = true; dict7["ercilla"] = true; dict6["erebus"] = true; dict5["erect"] = true; dict7["erectly"] = true; dict7["eremite"] = true; dict7["erewhon"] = true; dict4["ergo"] = true; dict7["ergodic"] = true; dict5["ergot"] = true; dict7["ergotic"] = true; dict5["erica"] = true; dict4["erie"] = true; dict4["erin"] = true; dict6["eringo"] = true; dict7["erinyes"] = true; dict4["eris"] = true; dict7["eristic"] = true; dict7["eritrea"] = true; dict6["erivan"] = true; dict6["erlang"] = true; dict6["ermine"] = true; dict4["erne"] = true; dict5["ernst"] = true; dict5["erode"] = true; dict6["eroded"] = true; dict7["eroding"] = true; dict7["erodium"] = true; dict6["erolia"] = true; dict4["eros"] = true; dict5["erose"] = true; dict7["erosion"] = true; dict7["erosive"] = true; dict6["erotic"] = true; dict7["erotica"] = true; dict7["erotism"] = true; dict7["errancy"] = true; dict6["errand"] = true; dict6["errant"] = true; dict7["erratic"] = true; dict7["erratum"] = true; dict7["errhine"] = true; dict6["erring"] = true; dict5["error"] = true; dict6["ersatz"] = true; dict4["erse"] = true; dict4["erst"] = true; dict5["eruca"] = true; dict5["eruct"] = true; dict7["erudite"] = true; dict5["erupt"] = true; dict6["erving"] = true; dict7["erwinia"] = true; dict6["eryngo"] = true; dict5["esaki"] = true; dict4["esau"] = true; dict6["escape"] = true; dict7["escaped"] = true; dict7["escapee"] = true; dict6["escarp"] = true; dict6["eschar"] = true; dict7["escheat"] = true; dict6["eschew"] = true; dict7["escolar"] = true; dict6["escort"] = true; dict6["escrow"] = true; dict6["escudo"] = true; dict7["esfahan"] = true; dict7["esidrix"] = true; dict5["esker"] = true; dict6["eskimo"] = true; dict7["esmolol"] = true; dict4["esop"] = true; dict4["esox"] = true; dict6["espana"] = true; dict6["espial"] = true; dict5["espoo"] = true; dict7["espouse"] = true; dict6["esprit"] = true; dict4["espy"] = true; dict7["esquire"] = true; dict5["essay"] = true; dict7["essayer"] = true; dict7["esselen"] = true; dict5["essen"] = true; dict7["essence"] = true; dict6["essene"] = true; dict5["essex"] = true; dict6["estate"] = true; dict6["esteem"] = true; dict5["ester"] = true; dict6["esther"] = true; dict7["esthete"] = true; dict7["estival"] = true; dict7["estonia"] = true; dict7["estriol"] = true; dict7["estrone"] = true; dict7["estrous"] = true; dict6["estrus"] = true; dict7["estuary"] = true; dict7["etagere"] = true; dict6["etamin"] = true; dict7["etamine"] = true; dict4["etc."] = true; dict4["etch"] = true; dict6["etched"] = true; dict6["etcher"] = true; dict7["etching"] = true; dict7["eternal"] = true; dict7["ethanal"] = true; dict6["ethane"] = true; dict7["ethanol"] = true; dict6["ethene"] = true; dict5["ether"] = true; dict5["ethic"] = true; dict7["ethical"] = true; dict6["ethics"] = true; dict7["ethmoid"] = true; dict6["ethnic"] = true; dict6["ethnos"] = true; dict5["ethos"] = true; dict7["ethrane"] = true; dict6["ethril"] = true; dict5["ethyl"] = true; dict6["ethyne"] = true; dict4["etna"] = true; dict7["etonian"] = true; dict7["etropus"] = true; dict7["etruria"] = true; dict5["etude"] = true; dict4["etui"] = true; dict6["etymon"] = true; dict7["eucarya"] = true; dict6["euchre"] = true; dict6["euclid"] = true; dict7["eudemon"] = true; dict7["euderma"] = true; dict6["eugene"] = true; dict7["eugenia"] = true; dict7["eugenic"] = true; dict7["euglena"] = true; dict5["euler"] = true; dict6["eulogy"] = true; dict7["eumeces"] = true; dict7["eumenes"] = true; dict6["eumops"] = true; dict6["eunuch"] = true; dict7["euphony"] = true; dict7["euphory"] = true; dict6["eupnea"] = true; dict7["eupneic"] = true; dict7["eupnoea"] = true; dict7["eurasia"] = true; dict6["eureka"] = true; dict4["euro"] = true; dict6["europa"] = true; dict7["europan"] = true; dict6["europe"] = true; dict7["europol"] = true; dict7["euryale"] = true; dict7["eustoma"] = true; dict7["euterpe"] = true; dict7["evacuee"] = true; dict5["evade"] = true; dict7["evangel"] = true; dict5["evans"] = true; dict7["evasion"] = true; dict7["evasive"] = true; dict4["even"] = true; dict7["evening"] = true; dict5["evenk"] = true; dict6["evenki"] = true; dict6["evenly"] = true; dict5["event"] = true; dict4["ever"] = true; dict7["everest"] = true; dict7["evernia"] = true; dict5["evers"] = true; dict5["evert"] = true; dict5["every"] = true; dict5["evict"] = true; dict7["evident"] = true; dict4["evil"] = true; dict6["evilly"] = true; dict6["evince"] = true; dict5["evoke"] = true; dict6["evoked"] = true; dict6["evolve"] = true; dict6["ewenki"] = true; dict4["ewer"] = true; dict7["ex-wife"] = true; dict6["exabit"] = true; dict7["exabyte"] = true; dict5["exact"] = true; dict6["exacta"] = true; dict7["exactly"] = true; dict6["exacum"] = true; dict5["exalt"] = true; dict7["exalted"] = true; dict4["exam"] = true; dict6["examen"] = true; dict7["examine"] = true; dict7["example"] = true; dict6["exarch"] = true; dict7["exbibit"] = true; dict6["exceed"] = true; dict5["excel"] = true; dict6["except"] = true; dict7["excerpt"] = true; dict6["excess"] = true; dict6["excise"] = true; dict6["excite"] = true; dict7["excited"] = true; dict7["exclaim"] = true; dict7["exclude"] = true; dict7["excreta"] = true; dict7["excrete"] = true; dict6["excuse"] = true; dict7["excused"] = true; dict7["excuser"] = true; dict4["exec"] = true; dict7["execute"] = true; dict7["exegete"] = true; dict6["exempt"] = true; dict5["exert"] = true; dict6["exhale"] = true; dict7["exhaust"] = true; dict7["exhibit"] = true; dict6["exhort"] = true; dict6["exhume"] = true; dict7["exigent"] = true; dict5["exile"] = true; dict6["exilic"] = true; dict5["exist"] = true; dict4["exit"] = true; dict6["exmoor"] = true; dict7["exocarp"] = true; dict6["exocet"] = true; dict5["exode"] = true; dict7["exoderm"] = true; dict6["exodus"] = true; dict7["exogamy"] = true; dict6["exogen"] = true; dict4["exon"] = true; dict6["exotic"] = true; dict7["exotism"] = true; dict6["expand"] = true; dict7["expanse"] = true; dict5["expat"] = true; dict6["expect"] = true; dict5["expel"] = true; dict6["expend"] = true; dict7["expense"] = true; dict6["expert"] = true; dict7["expiate"] = true; dict6["expire"] = true; dict7["expired"] = true; dict6["expiry"] = true; dict7["explain"] = true; dict7["explode"] = true; dict7["exploit"] = true; dict7["explore"] = true; dict4["expo"] = true; dict6["export"] = true; dict6["expose"] = true; dict7["exposed"] = true; dict7["exposit"] = true; dict7["expound"] = true; dict7["express"] = true; dict7["expunge"] = true; dict6["exsert"] = true; dict6["extant"] = true; dict6["extend"] = true; dict6["extent"] = true; dict6["extern"] = true; dict7["extinct"] = true; dict5["extol"] = true; dict6["extort"] = true; dict5["extra"] = true; dict7["extract"] = true; dict7["extreme"] = true; dict7["extropy"] = true; dict7["extrude"] = true; dict7["exudate"] = true; dict5["exude"] = true; dict5["exult"] = true; dict7["exurbia"] = true; dict7["exuviae"] = true; dict7["exuvial"] = true; dict4["eyas"] = true; dict4["eyck"] = true; dict7["eyeball"] = true; dict7["eyebath"] = true; dict7["eyebrow"] = true; dict6["eyecup"] = true; dict4["eyed"] = true; dict7["eyedrop"] = true; dict6["eyeful"] = true; dict7["eyehole"] = true; dict6["eyeish"] = true; dict7["eyelash"] = true; dict7["eyeless"] = true; dict6["eyelet"] = true; dict6["eyelid"] = true; dict7["eyelike"] = true; dict4["eyes"] = true; dict7["eyeshot"] = true; dict7["eyesore"] = true; dict7["eyespot"] = true; dict7["eyewash"] = true; dict4["eyra"] = true; dict4["eyre"] = true; dict5["eyrie"] = true; dict5["eyrir"] = true; dict4["eyry"] = true; dict7["eysenck"] = true; dict4["ezed"] = true; dict7["ezekias"] = true; dict7["ezekiel"] = true; dict4["ezra"] = true; dict7["faberge"] = true; dict6["fabian"] = true; dict7["fabiana"] = true; dict5["fable"] = true; dict6["fabled"] = true; dict6["fabric"] = true; dict6["facade"] = true; dict4["face"] = true; dict5["faced"] = true; dict5["facer"] = true; dict5["facet"] = true; dict7["faceted"] = true; dict5["facia"] = true; dict6["facial"] = true; dict6["facile"] = true; dict6["facing"] = true; dict4["fact"] = true; dict7["faction"] = true; dict7["factoid"] = true; dict6["factor"] = true; dict7["factory"] = true; dict7["factual"] = true; dict6["facula"] = true; dict7["faculty"] = true; dict7["faddily"] = true; dict7["faddish"] = true; dict7["faddist"] = true; dict5["faddy"] = true; dict4["fade"] = true; dict5["faded"] = true; dict7["fadeout"] = true; dict6["fading"] = true; dict4["fado"] = true; dict6["faecal"] = true; dict6["faeces"] = true; dict6["faerie"] = true; dict7["faeroes"] = true; dict5["faery"] = true; dict6["fafnir"] = true; dict7["fagales"] = true; dict6["fagged"] = true; dict6["faggot"] = true; dict5["fagin"] = true; dict5["fagot"] = true; dict5["fagus"] = true; dict4["fahd"] = true; dict7["faience"] = true; dict4["fail"] = true; dict7["failing"] = true; dict6["faille"] = true; dict7["failure"] = true; dict4["fain"] = true; dict5["faint"] = true; dict7["faintly"] = true; dict4["fair"] = true; dict7["fairish"] = true; dict6["fairly"] = true; dict7["fairway"] = true; dict5["fairy"] = true; dict6["faisal"] = true; dict5["faith"] = true; dict4["fake"] = true; dict6["fakeer"] = true; dict5["faker"] = true; dict6["fakery"] = true; dict5["fakir"] = true; dict7["falafel"] = true; dict7["falanga"] = true; dict7["falange"] = true; dict7["falcate"] = true; dict5["falco"] = true; dict6["falcon"] = true; dict7["falkner"] = true; dict4["fall"] = true; dict5["falla"] = true; dict7["fallacy"] = true; dict6["fallal"] = true; dict6["fallen"] = true; dict6["faller"] = true; dict7["falling"] = true; dict7["falloff"] = true; dict6["fallot"] = true; dict7["fallout"] = true; dict6["fallow"] = true; dict5["falls"] = true; dict5["false"] = true; dict7["falsely"] = true; dict6["falsie"] = true; dict7["falsify"] = true; dict7["falsity"] = true; dict6["falter"] = true; dict4["fame"] = true; dict5["famed"] = true; dict6["family"] = true; dict6["famine"] = true; dict6["famish"] = true; dict6["famous"] = true; dict7["famulus"] = true; dict7["fan-jet"] = true; dict7["fanatic"] = true; dict7["fancied"] = true; dict7["fancier"] = true; dict7["fancify"] = true; dict5["fancy"] = true; dict6["fandom"] = true; dict7["fanfare"] = true; dict4["fang"] = true; dict6["fanged"] = true; dict6["fanion"] = true; dict6["fanjet"] = true; dict7["fanlike"] = true; dict6["fanned"] = true; dict5["fanny"] = true; dict7["fantail"] = true; dict6["fantan"] = true; dict7["fantasm"] = true; dict7["fantast"] = true; dict7["fantasy"] = true; dict7["fantods"] = true; dict7["fanweed"] = true; dict7["fanwort"] = true; dict5["faqir"] = true; dict6["faquir"] = true; dict7["far-off"] = true; dict7["far-out"] = true; dict5["farad"] = true; dict7["faraday"] = true; dict7["faraway"] = true; dict4["farc"] = true; dict5["farce"] = true; dict6["fardel"] = true; dict4["fare"] = true; dict5["fargo"] = true; dict6["farina"] = true; dict4["farm"] = true; dict6["farmer"] = true; dict7["farming"] = true; dict7["farness"] = true; dict4["faro"] = true; dict6["faroes"] = true; dict7["faroese"] = true; dict7["farrago"] = true; dict7["farrell"] = true; dict7["farrier"] = true; dict6["farrow"] = true; dict5["farsi"] = true; dict4["fart"] = true; dict7["farther"] = true; dict7["farting"] = true; dict7["fartlek"] = true; dict6["fasces"] = true; dict6["fascia"] = true; dict7["fascism"] = true; dict7["fascist"] = true; dict7["fashion"] = true; dict4["fast"] = true; dict6["fasten"] = true; dict6["faster"] = true; dict7["fastest"] = true; dict7["fasting"] = true; dict5["fatah"] = true; dict5["fatal"] = true; dict7["fatally"] = true; dict7["fatback"] = true; dict4["fate"] = true; dict5["fated"] = true; dict7["fateful"] = true; dict7["fathead"] = true; dict6["father"] = true; dict6["fathom"] = true; dict7["fatigue"] = true; dict6["fatiha"] = true; dict7["fatihah"] = true; dict6["fatima"] = true; dict7["fatimah"] = true; dict6["fatism"] = true; dict7["fatless"] = true; dict7["fatness"] = true; dict5["fatso"] = true; dict6["fatten"] = true; dict7["fattish"] = true; dict7["fattism"] = true; dict5["fatty"] = true; dict7["fatuity"] = true; dict7["fatuous"] = true; dict5["fatwa"] = true; dict6["fatwah"] = true; dict6["faucal"] = true; dict6["fauces"] = true; dict6["faucet"] = true; dict5["fauld"] = true; dict5["fault"] = true; dict6["faulty"] = true; dict4["faun"] = true; dict5["fauna"] = true; dict6["faunus"] = true; dict5["faust"] = true; dict7["faustus"] = true; dict5["fauve"] = true; dict7["fauvism"] = true; dict7["fauvist"] = true; dict4["faux"] = true; dict6["favism"] = true; dict5["favor"] = true; dict7["favored"] = true; dict6["favour"] = true; dict5["favus"] = true; dict6["fawkes"] = true; dict4["fawn"] = true; dict6["fawner"] = true; dict7["fawning"] = true; dict4["faze"] = true; dict5["fazed"] = true; dict4["fdic"] = true; dict6["fealty"] = true; dict4["fear"] = true; dict7["fearful"] = true; dict5["feast"] = true; dict4["feat"] = true; dict7["feather"] = true; dict7["feature"] = true; dict7["febrile"] = true; dict5["fecal"] = true; dict5["feces"] = true; dict7["fechner"] = true; dict6["fecula"] = true; dict6["fecund"] = true; dict7["federal"] = true; dict6["fedora"] = true; dict6["feeble"] = true; dict6["feebly"] = true; dict4["feed"] = true; dict7["feedbag"] = true; dict6["feeder"] = true; dict7["feeding"] = true; dict7["feedlot"] = true; dict4["feel"] = true; dict6["feeler"] = true; dict7["feeling"] = true; dict6["feifer"] = true; dict5["feign"] = true; dict7["feigned"] = true; dict6["feijoa"] = true; dict5["feint"] = true; dict5["feist"] = true; dict6["feisty"] = true; dict7["felafel"] = true; dict7["feldene"] = true; dict7["felicia"] = true; dict5["felid"] = true; dict7["felidae"] = true; dict6["feline"] = true; dict5["felis"] = true; dict4["fell"] = true; dict5["fella"] = true; dict6["fellah"] = true; dict7["fellata"] = true; dict7["fellate"] = true; dict6["feller"] = true; dict7["fellini"] = true; dict6["felloe"] = true; dict6["fellow"] = true; dict5["felly"] = true; dict5["felon"] = true; dict6["felony"] = true; dict7["felspar"] = true; dict4["felt"] = true; dict6["felted"] = true; dict7["felucca"] = true; dict7["felwort"] = true; dict4["fema"] = true; dict6["female"] = true; dict7["femoral"] = true; dict7["femoris"] = true; dict5["femur"] = true; dict5["fence"] = true; dict6["fencer"] = true; dict7["fencing"] = true; dict4["fend"] = true; dict6["fender"] = true; dict7["fenland"] = true; dict6["fennel"] = true; dict6["fennic"] = true; dict6["fenrir"] = true; dict6["fenusa"] = true; dict5["feoff"] = true; dict6["feosol"] = true; dict5["feral"] = true; dict6["ferber"] = true; dict6["fergon"] = true; dict5["feria"] = true; dict6["ferial"] = true; dict6["ferine"] = true; dict6["fermat"] = true; dict7["fermata"] = true; dict7["ferment"] = true; dict5["fermi"] = true; dict7["fermion"] = true; dict7["fermium"] = true; dict4["fern"] = true; dict6["ferned"] = true; dict5["ferny"] = true; dict7["ferrara"] = true; dict6["ferret"] = true; dict6["ferric"] = true; dict7["ferrite"] = true; dict7["ferrous"] = true; dict7["ferrule"] = true; dict5["ferry"] = true; dict7["fertile"] = true; dict6["ferule"] = true; dict7["fervent"] = true; dict6["fervid"] = true; dict6["fervor"] = true; dict7["fervour"] = true; dict6["fescue"] = true; dict4["fess"] = true; dict5["fesse"] = true; dict6["festal"] = true; dict6["fester"] = true; dict7["festive"] = true; dict7["festoon"] = true; dict7["festuca"] = true; dict5["fetal"] = true; dict5["fetch"] = true; dict4["fete"] = true; dict6["fetich"] = true; dict5["fetid"] = true; dict6["fetish"] = true; dict7["fetlock"] = true; dict5["fetor"] = true; dict6["fetter"] = true; dict6["fettle"] = true; dict5["fetus"] = true; dict4["feud"] = true; dict6["feudal"] = true; dict5["fever"] = true; dict7["fevered"] = true; dict5["fewer"] = true; dict6["fewest"] = true; dict7["fewness"] = true; dict7["feynman"] = true; dict5["fhlmc"] = true; dict6["fiance"] = true; dict7["fiancee"] = true; dict6["fiasco"] = true; dict4["fiat"] = true; dict6["fibber"] = true; dict7["fibbing"] = true; dict5["fiber"] = true; dict5["fibre"] = true; dict6["fibril"] = true; dict6["fibrin"] = true; dict7["fibroid"] = true; dict7["fibroma"] = true; dict7["fibrous"] = true; dict6["fibula"] = true; dict4["fica"] = true; dict4["fice"] = true; dict5["fichu"] = true; dict6["fickle"] = true; dict7["fictile"] = true; dict7["fiction"] = true; dict7["fictive"] = true; dict5["ficus"] = true; dict6["fiddle"] = true; dict7["fiddler"] = true; dict6["fidget"] = true; dict7["fidgety"] = true; dict7["fiedler"] = true; dict4["fief"] = true; dict7["fiefdom"] = true; dict5["field"] = true; dict7["fielder"] = true; dict6["fields"] = true; dict5["fiend"] = true; dict6["fierce"] = true; dict7["fierily"] = true; dict5["fiery"] = true; dict6["fiesta"] = true; dict4["fife"] = true; dict4["fifo"] = true; dict7["fifteen"] = true; dict5["fifth"] = true; dict7["fifthly"] = true; dict7["fifties"] = true; dict5["fifty"] = true; dict5["fight"] = true; dict7["fighter"] = true; dict7["figment"] = true; dict7["figural"] = true; dict6["figure"] = true; dict7["figured"] = true; dict7["figurer"] = true; dict7["figwort"] = true; dict4["fiji"] = true; dict6["fijian"] = true; dict5["fijis"] = true; dict6["filago"] = true; dict5["filar"] = true; dict7["filaree"] = true; dict7["filaria"] = true; dict7["filbert"] = true; dict5["filch"] = true; dict4["file"] = true; dict5["filer"] = true; dict5["filet"] = true; dict6["filial"] = true; dict7["filiate"] = true; dict6["filing"] = true; dict4["fill"] = true; dict7["fill-in"] = true; dict5["fille"] = true; dict6["filled"] = true; dict6["filler"] = true; dict6["fillet"] = true; dict7["filling"] = true; dict6["fillip"] = true; dict5["filly"] = true; dict4["film"] = true; dict7["filmdom"] = true; dict6["filmed"] = true; dict7["filming"] = true; dict5["filmy"] = true; dict4["fils"] = true; dict6["filter"] = true; dict5["filth"] = true; dict6["filthy"] = true; dict5["filum"] = true; dict7["fimbria"] = true; dict7["finable"] = true; dict7["finagle"] = true; dict5["final"] = true; dict6["finale"] = true; dict7["finally"] = true; dict7["finance"] = true; dict7["finback"] = true; dict6["fincen"] = true; dict5["finch"] = true; dict4["find"] = true; dict6["finder"] = true; dict7["finding"] = true; dict4["fine"] = true; dict6["finely"] = true; dict5["finer"] = true; dict6["finery"] = true; dict7["finesse"] = true; dict6["finger"] = true; dict6["finial"] = true; dict7["finical"] = true; dict7["finicky"] = true; dict5["finis"] = true; dict6["finish"] = true; dict6["finite"] = true; dict4["fink"] = true; dict7["finland"] = true; dict4["finn"] = true; dict6["finnan"] = true; dict6["finnic"] = true; dict7["finnish"] = true; dict5["fiord"] = true; dict6["fipple"] = true; dict4["fire"] = true; dict7["firearm"] = true; dict7["firebox"] = true; dict7["firebug"] = true; dict5["fired"] = true; dict7["firedog"] = true; dict7["firefly"] = true; dict7["fireman"] = true; dict7["firenze"] = true; dict6["firing"] = true; dict6["firkin"] = true; dict4["firm"] = true; dict6["firmly"] = true; dict5["first"] = true; dict7["firstly"] = true; dict5["firth"] = true; dict4["fisa"] = true; dict4["fisc"] = true; dict6["fiscal"] = true; dict7["fischer"] = true; dict4["fish"] = true; dict6["fisher"] = true; dict7["fishery"] = true; dict7["fisheye"] = true; dict7["fishgig"] = true; dict7["fishily"] = true; dict7["fishing"] = true; dict7["fishnet"] = true; dict5["fishy"] = true; dict7["fissile"] = true; dict7["fission"] = true; dict7["fissure"] = true; dict4["fist"] = true; dict7["fistful"] = true; dict7["fistula"] = true; dict5["fitch"] = true; dict6["fitful"] = true; dict5["fitly"] = true; dict7["fitment"] = true; dict7["fitness"] = true; dict6["fitted"] = true; dict6["fitter"] = true; dict7["fitting"] = true; dict4["five"] = true; dict5["fiver"] = true; dict5["fives"] = true; dict6["fixate"] = true; dict5["fixed"] = true; dict7["fixedly"] = true; dict5["fixer"] = true; dict6["fixing"] = true; dict7["fixings"] = true; dict6["fixity"] = true; dict7["fixture"] = true; dict6["fizgig"] = true; dict4["fizz"] = true; dict7["fizzing"] = true; dict6["fizzle"] = true; dict5["fizzy"] = true; dict5["fjord"] = true; dict4["flab"] = true; dict6["flabby"] = true; dict7["flaccid"] = true; dict5["flack"] = true; dict4["flag"] = true; dict6["flagon"] = true; dict6["flagyl"] = true; dict5["flail"] = true; dict5["flair"] = true; dict4["flak"] = true; dict5["flake"] = true; dict6["flakey"] = true; dict5["flaky"] = true; dict6["flambe"] = true; dict5["flame"] = true; dict6["flamen"] = true; dict7["flaming"] = true; dict4["flan"] = true; dict6["flange"] = true; dict5["flank"] = true; dict7["flanker"] = true; dict7["flannel"] = true; dict4["flap"] = true; dict7["flapper"] = true; dict5["flaps"] = true; dict5["flare"] = true; dict7["flaring"] = true; dict5["flash"] = true; dict7["flasher"] = true; dict6["flashy"] = true; dict5["flask"] = true; dict4["flat"] = true; dict7["flatbed"] = true; dict7["flatcar"] = true; dict7["flatlet"] = true; dict6["flatly"] = true; dict5["flats"] = true; dict7["flatten"] = true; dict7["flatter"] = true; dict7["flattop"] = true; dict6["flatus"] = true; dict6["flaunt"] = true; dict7["flaunty"] = true; dict6["flavin"] = true; dict7["flavone"] = true; dict6["flavor"] = true; dict7["flavour"] = true; dict4["flaw"] = true; dict6["flawed"] = true; dict4["flax"] = true; dict6["flaxen"] = true; dict4["flay"] = true; dict4["flea"] = true; dict7["fleabag"] = true; dict7["fleapit"] = true; dict5["fleck"] = true; dict7["flecked"] = true; dict6["fledge"] = true; dict7["fledged"] = true; dict4["flee"] = true; dict6["fleece"] = true; dict6["fleecy"] = true; dict5["fleer"] = true; dict5["fleet"] = true; dict7["fleetly"] = true; dict7["fleming"] = true; dict7["flemish"] = true; dict6["flense"] = true; dict5["flesh"] = true; dict7["fleshly"] = true; dict6["fleshy"] = true; dict5["fletc"] = true; dict4["flex"] = true; dict7["flexile"] = true; dict7["flexion"] = true; dict6["flexor"] = true; dict7["flexure"] = true; dict5["flick"] = true; dict7["flicker"] = true; dict5["flier"] = true; dict5["flies"] = true; dict6["flight"] = true; dict7["flighty"] = true; dict6["flimsy"] = true; dict6["flinch"] = true; dict5["fling"] = true; dict5["flint"] = true; dict6["flinty"] = true; dict4["flip"] = true; dict7["flipper"] = true; dict5["flirt"] = true; dict4["flit"] = true; dict6["flitch"] = true; dict7["flitter"] = true; dict4["flnc"] = true; dict5["float"] = true; dict7["floater"] = true; dict6["floaty"] = true; dict4["floc"] = true; dict5["flock"] = true; dict7["flodden"] = true; dict4["floe"] = true; dict4["flog"] = true; dict7["flogger"] = true; dict5["flood"] = true; dict7["flooded"] = true; dict5["floor"] = true; dict7["floored"] = true; dict7["floozie"] = true; dict6["floozy"] = true; dict4["flop"] = true; dict6["floppy"] = true; dict5["flora"] = true; dict6["floral"] = true; dict7["floreal"] = true; dict6["floret"] = true; dict6["florey"] = true; dict6["florid"] = true; dict7["florida"] = true; dict6["florin"] = true; dict6["florio"] = true; dict7["florist"] = true; dict5["flory"] = true; dict5["floss"] = true; dict6["flossy"] = true; dict7["flotsam"] = true; dict7["flounce"] = true; dict5["flour"] = true; dict6["floury"] = true; dict5["flout"] = true; dict7["flouter"] = true; dict4["flow"] = true; dict7["flowage"] = true; dict6["flower"] = true; dict7["flowery"] = true; dict7["flowing"] = true; dict4["flub"] = true; dict4["flue"] = true; dict7["fluency"] = true; dict6["fluent"] = true; dict5["fluff"] = true; dict6["fluffy"] = true; dict5["fluid"] = true; dict5["fluke"] = true; dict6["flukey"] = true; dict5["fluky"] = true; dict5["flume"] = true; dict7["flummox"] = true; dict5["flump"] = true; dict5["flunk"] = true; dict7["flunkey"] = true; dict6["flunky"] = true; dict5["fluor"] = true; dict6["flurry"] = true; dict5["flush"] = true; dict7["flushed"] = true; dict7["fluster"] = true; dict5["flute"] = true; dict7["fluting"] = true; dict7["flutist"] = true; dict7["flutter"] = true; dict7["fluvial"] = true; dict4["flux"] = true; dict7["fluxion"] = true; dict6["fly-by"] = true; dict7["flyaway"] = true; dict5["flyer"] = true; dict7["flyfish"] = true; dict6["flying"] = true; dict7["flyleaf"] = true; dict7["flyover"] = true; dict7["flypast"] = true; dict7["flyswat"] = true; dict7["flytrap"] = true; dict6["flyway"] = true; dict4["fmri"] = true; dict4["fnma"] = true; dict4["foal"] = true; dict4["foam"] = true; dict7["foaming"] = true; dict5["foamy"] = true; dict5["focal"] = true; dict7["focally"] = true; dict5["focus"] = true; dict7["focused"] = true; dict6["fodder"] = true; dict5["foehn"] = true; dict6["foeman"] = true; dict6["foetal"] = true; dict6["foetid"] = true; dict6["foetor"] = true; dict6["foetus"] = true; dict7["fogbank"] = true; dict5["fogey"] = true; dict6["fogged"] = true; dict5["foggy"] = true; dict7["foghorn"] = true; dict7["foglamp"] = true; dict4["fogy"] = true; dict7["fogyish"] = true; dict4["fohn"] = true; dict6["foible"] = true; dict4["foil"] = true; dict6["foiled"] = true; dict7["foiling"] = true; dict5["foist"] = true; dict7["folacin"] = true; dict6["folate"] = true; dict4["fold"] = true; dict6["folder"] = true; dict7["folding"] = true; dict7["foldout"] = true; dict7["foliage"] = true; dict7["foliate"] = true; dict5["folie"] = true; dict5["folio"] = true; dict7["foliose"] = true; dict6["folium"] = true; dict4["folk"] = true; dict5["folks"] = true; dict6["folksy"] = true; dict7["follies"] = true; dict6["follow"] = true; dict5["folly"] = true; dict6["foment"] = true; dict5["fomes"] = true; dict6["fomite"] = true; dict5["fomor"] = true; dict4["fond"] = true; dict5["fonda"] = true; dict7["fondant"] = true; dict6["fondle"] = true; dict7["fondler"] = true; dict6["fondly"] = true; dict5["fondu"] = true; dict6["fondue"] = true; dict4["font"] = true; dict7["fonteyn"] = true; dict4["food"] = true; dict6["foodie"] = true; dict4["fool"] = true; dict7["foolery"] = true; dict7["fooling"] = true; dict7["foolish"] = true; dict4["foot"] = true; dict7["footage"] = true; dict6["footed"] = true; dict6["footer"] = true; dict7["footing"] = true; dict6["footle"] = true; dict7["footman"] = true; dict7["footpad"] = true; dict7["foppish"] = true; dict6["forage"] = true; dict7["forager"] = true; dict5["foram"] = true; dict7["foramen"] = true; dict5["foray"] = true; dict7["forbear"] = true; dict6["forbid"] = true; dict5["force"] = true; dict6["forced"] = true; dict7["forceps"] = true; dict4["ford"] = true; dict7["fording"] = true; dict4["fore"] = true; dict7["forearm"] = true; dict7["foredge"] = true; dict6["forego"] = true; dict7["foreign"] = true; dict7["foreleg"] = true; dict7["foreman"] = true; dict7["forepaw"] = true; dict7["foresee"] = true; dict6["forest"] = true; dict7["foretop"] = true; dict7["forever"] = true; dict7["forfeit"] = true; dict7["forfend"] = true; dict5["forge"] = true; dict6["forged"] = true; dict6["forger"] = true; dict7["forgery"] = true; dict6["forget"] = true; dict7["forging"] = true; dict7["forgive"] = true; dict5["forgo"] = true; dict6["forint"] = true; dict4["fork"] = true; dict6["forked"] = true; dict7["forking"] = true; dict7["forlorn"] = true; dict4["form"] = true; dict6["formal"] = true; dict6["format"] = true; dict6["formed"] = true; dict6["former"] = true; dict6["formic"] = true; dict7["formica"] = true; dict6["formol"] = true; dict7["formosa"] = true; dict7["formula"] = true; dict6["fornax"] = true; dict6["fornix"] = true; dict6["forrad"] = true; dict7["forrard"] = true; dict7["forsake"] = true; dict7["forseti"] = true; dict4["fort"] = true; dict6["fortaz"] = true; dict5["forte"] = true; dict5["forth"] = true; dict7["forties"] = true; dict7["fortify"] = true; dict7["fortran"] = true; dict7["fortuna"] = true; dict7["fortune"] = true; dict5["forty"] = true; dict5["forum"] = true; dict7["forward"] = true; dict6["foryml"] = true; dict7["fosamax"] = true; dict7["fosbury"] = true; dict5["fossa"] = true; dict5["fosse"] = true; dict6["fossil"] = true; dict6["foster"] = true; dict4["fots"] = true; dict4["foul"] = true; dict7["foul-up"] = true; dict7["foulard"] = true; dict6["fouled"] = true; dict6["foully"] = true; dict7["foumart"] = true; dict5["found"] = true; dict7["founder"] = true; dict7["foundry"] = true; dict5["fount"] = true; dict4["four"] = true; dict7["fourier"] = true; dict6["fourth"] = true; dict5["fovea"] = true; dict4["fowl"] = true; dict6["fowler"] = true; dict7["foxhole"] = true; dict7["foxhunt"] = true; dict6["foxily"] = true; dict7["foxtail"] = true; dict7["foxtrot"] = true; dict4["foxy"] = true; dict5["foyer"] = true; dict6["fracas"] = true; dict7["fractal"] = true; dict7["fragile"] = true; dict5["frail"] = true; dict7["frailty"] = true; dict6["fraise"] = true; dict5["frame"] = true; dict6["framed"] = true; dict6["framer"] = true; dict7["framing"] = true; dict5["franc"] = true; dict6["france"] = true; dict6["franck"] = true; dict6["franco"] = true; dict7["francoa"] = true; dict5["frank"] = true; dict7["frankly"] = true; dict7["frantic"] = true; dict4["frap"] = true; dict6["frappe"] = true; dict7["frasera"] = true; dict4["frat"] = true; dict4["frau"] = true; dict5["fraud"] = true; dict7["fraught"] = true; dict4["fray"] = true; dict6["frayed"] = true; dict6["frazer"] = true; dict7["frazzle"] = true; dict5["freak"] = true; dict6["freaky"] = true; dict7["freckle"] = true; dict4["free"] = true; dict7["freebee"] = true; dict7["freebie"] = true; dict7["freedom"] = true; dict7["freeing"] = true; dict6["freely"] = true; dict7["freeman"] = true; dict7["freesia"] = true; dict7["freeway"] = true; dict6["freeze"] = true; dict7["freezer"] = true; dict7["fregata"] = true; dict7["freight"] = true; dict7["fremont"] = true; dict6["french"] = true; dict6["frenzy"] = true; dict5["freon"] = true; dict6["fresco"] = true; dict5["fresh"] = true; dict7["freshen"] = true; dict7["fresher"] = true; dict7["freshet"] = true; dict7["freshly"] = true; dict7["fresnel"] = true; dict6["fresno"] = true; dict5["fress"] = true; dict4["fret"] = true; dict7["fretful"] = true; dict7["fretsaw"] = true; dict7["fretted"] = true; dict5["freud"] = true; dict4["frey"] = true; dict5["freya"] = true; dict6["freyja"] = true; dict5["freyr"] = true; dict7["friable"] = true; dict5["friar"] = true; dict6["friary"] = true; dict5["frick"] = true; dict6["friday"] = true; dict6["fridge"] = true; dict5["fried"] = true; dict7["friedan"] = true; dict6["friend"] = true; dict5["frier"] = true; dict5["fries"] = true; dict6["frieze"] = true; dict7["frigate"] = true; dict5["frigg"] = true; dict6["frigga"] = true; dict6["fright"] = true; dict6["frigid"] = true; dict6["frijol"] = true; dict7["frijole"] = true; dict5["frill"] = true; dict7["frilled"] = true; dict6["frilly"] = true; dict6["fringe"] = true; dict7["fringed"] = true; dict6["fringy"] = true; dict7["frisbee"] = true; dict6["frisch"] = true; dict6["frisia"] = true; dict7["frisian"] = true; dict5["frisk"] = true; dict6["frisky"] = true; dict7["frisson"] = true; dict7["fritter"] = true; dict6["friuli"] = true; dict6["frivol"] = true; dict5["frizz"] = true; dict7["frizzle"] = true; dict7["frizzly"] = true; dict6["frizzy"] = true; dict5["frock"] = true; dict7["froebel"] = true; dict4["frog"] = true; dict7["frogbit"] = true; dict7["frogman"] = true; dict6["frolic"] = true; dict5["frond"] = true; dict5["front"] = true; dict7["frontal"] = true; dict5["frore"] = true; dict5["frost"] = true; dict7["frosted"] = true; dict6["frosty"] = true; dict5["froth"] = true; dict6["frothy"] = true; dict7["froward"] = true; dict5["frown"] = true; dict7["frowsty"] = true; dict6["frowsy"] = true; dict6["frowzy"] = true; dict6["frozen"] = true; dict6["frugal"] = true; dict5["fruit"] = true; dict6["fruity"] = true; dict5["frump"] = true; dict6["frumpy"] = true; dict6["frunze"] = true; dict7["frustum"] = true; dict4["frye"] = true; dict5["fryer"] = true; dict6["frying"] = true; dict6["frypan"] = true; dict4["ft-l"] = true; dict4["fthm"] = true; dict7["fucales"] = true; dict5["fuchs"] = true; dict7["fuchsia"] = true; dict6["fucoid"] = true; dict5["fucus"] = true; dict6["fuddle"] = true; dict7["fuddled"] = true; dict5["fudge"] = true; dict5["fuego"] = true; dict4["fuel"] = true; dict6["fueled"] = true; dict7["fueling"] = true; dict7["fuentes"] = true; dict5["fugal"] = true; dict7["fugally"] = true; dict6["fugard"] = true; dict5["fuggy"] = true; dict5["fugly"] = true; dict4["fugo"] = true; dict4["fugu"] = true; dict5["fugue"] = true; dict4["fuji"] = true; dict6["fukien"] = true; dict7["fukuoka"] = true; dict4["fula"] = true; dict5["fulah"] = true; dict6["fulani"] = true; dict5["fulbe"] = true; dict7["fulcrum"] = true; dict6["fulfil"] = true; dict7["fulfill"] = true; dict7["fulgent"] = true; dict6["fulgid"] = true; dict6["fulica"] = true; dict4["full"] = true; dict6["fuller"] = true; dict5["fully"] = true; dict6["fulmar"] = true; dict7["fulsome"] = true; dict6["fulton"] = true; dict7["fumaria"] = true; dict6["fumble"] = true; dict7["fumbler"] = true; dict4["fume"] = true; dict5["fumed"] = true; dict5["fumes"] = true; dict4["fund"] = true; dict6["funded"] = true; dict7["funding"] = true; dict5["funds"] = true; dict6["fundus"] = true; dict7["funeral"] = true; dict7["funfair"] = true; dict6["fungal"] = true; dict5["fungi"] = true; dict6["fungia"] = true; dict7["fungoid"] = true; dict7["fungous"] = true; dict6["fungus"] = true; dict7["funicle"] = true; dict4["funk"] = true; dict5["funka"] = true; dict5["funky"] = true; dict6["funnel"] = true; dict7["funnies"] = true; dict7["funnily"] = true; dict5["funny"] = true; dict6["funrun"] = true; dict5["fuqra"] = true; dict5["furan"] = true; dict6["furane"] = true; dict7["furbish"] = true; dict7["furcate"] = true; dict7["furcula"] = true; dict7["furious"] = true; dict4["furl"] = true; dict6["furled"] = true; dict7["furlike"] = true; dict7["furlong"] = true; dict7["furnace"] = true; dict7["furnish"] = true; dict5["furor"] = true; dict6["furore"] = true; dict6["furred"] = true; dict7["furrier"] = true; dict7["furring"] = true; dict6["furrow"] = true; dict5["furry"] = true; dict7["further"] = true; dict7["furtive"] = true; dict4["fury"] = true; dict5["furze"] = true; dict6["fusain"] = true; dict7["fusanus"] = true; dict7["fuschia"] = true; dict7["fuscous"] = true; dict4["fuse"] = true; dict5["fused"] = true; dict5["fusee"] = true; dict7["fusible"] = true; dict5["fusil"] = true; dict6["fusion"] = true; dict4["fuss"] = true; dict7["fussily"] = true; dict7["fusspot"] = true; dict5["fussy"] = true; dict7["fustian"] = true; dict5["fusty"] = true; dict6["futile"] = true; dict5["futon"] = true; dict6["future"] = true; dict4["fuze"] = true; dict5["fuzee"] = true; dict4["fuzz"] = true; dict6["fuzzed"] = true; dict5["fuzzy"] = true; dict7["g-force"] = true; dict4["g-jo"] = true; dict5["g-man"] = true; dict4["g.i."] = true; dict4["gaap"] = true; dict4["gaba"] = true; dict6["gabble"] = true; dict6["gabbro"] = true; dict5["gabby"] = true; dict7["gabfest"] = true; dict5["gable"] = true; dict6["gabled"] = true; dict5["gabon"] = true; dict5["gabor"] = true; dict7["gabriel"] = true; dict5["gabun"] = true; dict6["gadaba"] = true; dict7["gaddafi"] = true; dict5["gaddi"] = true; dict6["gadfly"] = true; dict6["gadget"] = true; dict7["gadidae"] = true; dict6["gadoid"] = true; dict7["gadsden"] = true; dict5["gadus"] = true; dict4["gaea"] = true; dict4["gael"] = true; dict6["gaelic"] = true; dict4["gaff"] = true; dict5["gaffe"] = true; dict6["gaffer"] = true; dict5["gafsa"] = true; dict4["gaga"] = true; dict7["gagarin"] = true; dict4["gage"] = true; dict6["gaggle"] = true; dict6["gagman"] = true; dict7["gagster"] = true; dict4["gaia"] = true; dict6["gaiety"] = true; dict5["gaily"] = true; dict4["gain"] = true; dict6["gainer"] = true; dict7["gainful"] = true; dict6["gainly"] = true; dict7["gainsay"] = true; dict4["gait"] = true; dict6["gaiter"] = true; dict5["gaius"] = true; dict4["gala"] = true; dict6["galago"] = true; dict7["galahad"] = true; dict5["galan"] = true; dict7["galatea"] = true; dict7["galatia"] = true; dict5["galax"] = true; dict6["galaxy"] = true; dict4["gale"] = true; dict5["galea"] = true; dict6["galega"] = true; dict5["galen"] = true; dict6["galena"] = true; dict7["galeras"] = true; dict6["galere"] = true; dict7["galicia"] = true; dict7["galilee"] = true; dict7["galileo"] = true; dict6["galium"] = true; dict4["gall"] = true; dict7["gallant"] = true; dict6["galled"] = true; dict7["galleon"] = true; dict7["gallery"] = true; dict6["galley"] = true; dict7["gallfly"] = true; dict6["gallia"] = true; dict6["gallic"] = true; dict7["gallina"] = true; dict7["galling"] = true; dict7["gallium"] = true; dict6["gallon"] = true; dict6["gallop"] = true; dict7["gallous"] = true; dict7["gallows"] = true; dict6["gallup"] = true; dict6["gallus"] = true; dict6["galois"] = true; dict6["galoot"] = true; dict6["galore"] = true; dict6["galosh"] = true; dict6["galton"] = true; dict7["galumph"] = true; dict7["galvani"] = true; dict6["galway"] = true; dict5["gamba"] = true; dict6["gambia"] = true; dict7["gambian"] = true; dict7["gambist"] = true; dict6["gambit"] = true; dict6["gamble"] = true; dict7["gambler"] = true; dict7["gamboge"] = true; dict6["gambol"] = true; dict7["gambrel"] = true; dict4["game"] = true; dict7["gamebag"] = true; dict7["gamelan"] = true; dict6["gamely"] = true; dict6["gamete"] = true; dict5["gamey"] = true; dict5["gamin"] = true; dict6["gamine"] = true; dict6["gaming"] = true; dict5["gamma"] = true; dict6["gammon"] = true; dict5["gammy"] = true; dict5["gamow"] = true; dict4["gamp"] = true; dict5["gamut"] = true; dict4["gamy"] = true; dict4["gand"] = true; dict6["gander"] = true; dict6["gandhi"] = true; dict5["ganef"] = true; dict6["ganesa"] = true; dict6["ganesh"] = true; dict7["ganesha"] = true; dict4["gang"] = true; dict7["gangdom"] = true; dict6["ganger"] = true; dict6["ganges"] = true; dict6["gangly"] = true; dict7["gangsaw"] = true; dict7["gangsta"] = true; dict7["gangway"] = true; dict5["ganja"] = true; dict6["gannet"] = true; dict5["ganof"] = true; dict6["ganoid"] = true; dict6["ganoin"] = true; dict7["ganoine"] = true; dict5["gansu"] = true; dict7["gantlet"] = true; dict6["gantry"] = true; dict4["gaol"] = true; dict6["gaoler"] = true; dict4["gape"] = true; dict6["gaping"] = true; dict6["garage"] = true; dict6["garand"] = true; dict4["garb"] = true; dict7["garbage"] = true; dict6["garbed"] = true; dict6["garble"] = true; dict7["garbled"] = true; dict5["garbo"] = true; dict7["garboil"] = true; dict7["gardant"] = true; dict6["garden"] = true; dict7["gardner"] = true; dict7["garfish"] = true; dict6["garget"] = true; dict6["gargle"] = true; dict4["gari"] = true; dict6["garish"] = true; dict7["garland"] = true; dict6["garlic"] = true; dict7["garment"] = true; dict6["garner"] = true; dict6["garnet"] = true; dict7["garnier"] = true; dict7["garnish"] = true; dict7["garonne"] = true; dict7["garotte"] = true; dict7["garpike"] = true; dict6["garret"] = true; dict7["garrick"] = true; dict7["garrote"] = true; dict6["garter"] = true; dict6["garuda"] = true; dict4["gary"] = true; dict6["gasbag"] = true; dict7["gascony"] = true; dict7["gaseous"] = true; dict4["gash"] = true; dict6["gasify"] = true; dict7["gaskell"] = true; dict6["gasket"] = true; dict6["gaskin"] = true; dict6["gasman"] = true; dict7["gasmask"] = true; dict7["gasohol"] = true; dict4["gasp"] = true; dict6["gaspar"] = true; dict7["gassing"] = true; dict5["gassy"] = true; dict7["gastric"] = true; dict7["gastrin"] = true; dict4["gate"] = true; dict6["gateau"] = true; dict5["gates"] = true; dict7["gateway"] = true; dict6["gather"] = true; dict6["gathic"] = true; dict7["gatling"] = true; dict5["gator"] = true; dict4["gatt"] = true; dict6["gauche"] = true; dict6["gaucho"] = true; dict4["gaud"] = true; dict7["gaudery"] = true; dict5["gaudi"] = true; dict7["gaudily"] = true; dict5["gaudy"] = true; dict7["gauffer"] = true; dict5["gauge"] = true; dict7["gauguin"] = true; dict4["gaul"] = true; dict5["gaunt"] = true; dict7["gauntry"] = true; dict4["gaur"] = true; dict5["gauri"] = true; dict5["gauss"] = true; dict7["gautama"] = true; dict5["gauze"] = true; dict5["gauzy"] = true; dict6["gavage"] = true; dict5["gavel"] = true; dict5["gavia"] = true; dict6["gavial"] = true; dict7["gavidae"] = true; dict7["gavotte"] = true; dict6["gawain"] = true; dict4["gawk"] = true; dict6["gawker"] = true; dict5["gawky"] = true; dict4["gawp"] = true; dict5["gayal"] = true; dict5["gayly"] = true; dict7["gayness"] = true; dict4["gaza"] = true; dict7["gazania"] = true; dict4["gaze"] = true; dict6["gazebo"] = true; dict7["gazella"] = true; dict7["gazelle"] = true; dict7["gazette"] = true; dict6["gazump"] = true; dict4["gbit"] = true; dict6["gbu-28"] = true; dict4["gcse"] = true; dict6["gdansk"] = true; dict4["gean"] = true; dict4["gear"] = true; dict7["gearbox"] = true; dict6["geared"] = true; dict7["gearing"] = true; dict7["gearset"] = true; dict5["gecko"] = true; dict7["gee-gee"] = true; dict7["geebung"] = true; dict4["geek"] = true; dict6["geezer"] = true; dict7["gehenna"] = true; dict6["gehrig"] = true; dict6["geiger"] = true; dict6["geisel"] = true; dict6["geisha"] = true; dict7["gelatin"] = true; dict4["geld"] = true; dict6["gelded"] = true; dict7["gelding"] = true; dict5["gelid"] = true; dict5["gelly"] = true; dict4["gelt"] = true; dict6["gemara"] = true; dict6["gemini"] = true; dict5["gemma"] = true; dict6["gemmed"] = true; dict7["gemmule"] = true; dict7["gemonil"] = true; dict7["gemsbok"] = true; dict6["gender"] = true; dict4["gene"] = true; dict7["general"] = true; dict7["generic"] = true; dict7["genesis"] = true; dict5["genet"] = true; dict7["genetic"] = true; dict7["genetta"] = true; dict6["geneva"] = true; dict7["genevan"] = true; dict6["geneve"] = true; dict4["genf"] = true; dict6["genial"] = true; dict5["genic"] = true; dict5["genie"] = true; dict5["genip"] = true; dict6["genipa"] = true; dict7["genipap"] = true; dict7["genista"] = true; dict7["genital"] = true; dict7["genitor"] = true; dict6["genius"] = true; dict5["genoa"] = true; dict7["genoese"] = true; dict7["genoise"] = true; dict6["genome"] = true; dict6["genova"] = true; dict5["genre"] = true; dict4["gens"] = true; dict4["gent"] = true; dict7["genteel"] = true; dict7["gentian"] = true; dict7["gentile"] = true; dict6["gentle"] = true; dict6["gently"] = true; dict6["gentry"] = true; dict4["genu"] = true; dict7["genuine"] = true; dict5["genus"] = true; dict5["geode"] = true; dict7["geodesy"] = true; dict7["geoduck"] = true; dict7["geology"] = true; dict6["geomys"] = true; dict7["geordie"] = true; dict6["george"] = true; dict7["georgia"] = true; dict7["geraint"] = true; dict7["gerbera"] = true; dict7["gerbert"] = true; dict6["gerbil"] = true; dict5["gerea"] = true; dict7["gerenuk"] = true; dict4["germ"] = true; dict6["german"] = true; dict7["germane"] = true; dict7["germany"] = true; dict5["germy"] = true; dict6["gerres"] = true; dict6["gerris"] = true; dict6["gerund"] = true; dict6["geryon"] = true; dict6["gesell"] = true; dict6["gesner"] = true; dict5["gesso"] = true; dict7["gestalt"] = true; dict7["gestapo"] = true; dict7["gestate"] = true; dict7["gesture"] = true; dict6["get-go"] = true; dict4["geta"] = true; dict7["getable"] = true; dict7["getaway"] = true; dict7["getting"] = true; dict5["getup"] = true; dict4["geum"] = true; dict6["gewgaw"] = true; dict6["geyser"] = true; dict5["ghana"] = true; dict7["ghanese"] = true; dict7["ghanian"] = true; dict6["gharry"] = true; dict7["ghastly"] = true; dict4["ghat"] = true; dict6["ghatti"] = true; dict4["ghee"] = true; dict4["gheg"] = true; dict5["ghent"] = true; dict7["gherkin"] = true; dict6["ghetto"] = true; dict7["ghillie"] = true; dict5["ghost"] = true; dict7["ghostly"] = true; dict5["ghoul"] = true; dict7["ghrelin"] = true; dict4["ghrf"] = true; dict5["giant"] = true; dict7["giardia"] = true; dict6["gibber"] = true; dict6["gibbet"] = true; dict6["gibbon"] = true; dict7["gibbose"] = true; dict7["gibbous"] = true; dict5["gibbs"] = true; dict4["gibe"] = true; dict7["gibibit"] = true; dict5["gibit"] = true; dict6["giblet"] = true; dict7["giblets"] = true; dict6["gibran"] = true; dict6["gibson"] = true; dict5["gidar"] = true; dict7["giddily"] = true; dict5["giddy"] = true; dict4["gide"] = true; dict6["gidgee"] = true; dict7["gielgud"] = true; dict4["gift"] = true; dict6["gifted"] = true; dict7["gigabit"] = true; dict6["giggle"] = true; dict7["giggler"] = true; dict4["gigo"] = true; dict6["gigolo"] = true; dict5["gigot"] = true; dict5["gigue"] = true; dict6["gikuyu"] = true; dict4["gila"] = true; dict7["gilbert"] = true; dict4["gild"] = true; dict6["gilded"] = true; dict6["gilder"] = true; dict7["gilding"] = true; dict4["gill"] = true; dict6["gilled"] = true; dict6["gillie"] = true; dict6["gilman"] = true; dict6["gilmer"] = true; dict4["gilt"] = true; dict6["gimbal"] = true; dict5["gimel"] = true; dict6["gimlet"] = true; dict7["gimmick"] = true; dict4["gimp"] = true; dict5["gimpy"] = true; dict5["ginep"] = true; dict6["ginger"] = true; dict7["gingery"] = true; dict7["gingham"] = true; dict7["gingiva"] = true; dict6["gingko"] = true; dict6["ginkgo"] = true; dict7["ginmill"] = true; dict7["ginseng"] = true; dict5["ginzo"] = true; dict6["giotto"] = true; dict5["gipsy"] = true; dict7["giraffa"] = true; dict7["giraffe"] = true; dict6["girard"] = true; dict7["girasol"] = true; dict4["gird"] = true; dict6["girder"] = true; dict6["girdle"] = true; dict7["giriama"] = true; dict4["girl"] = true; dict7["girlish"] = true; dict4["giro"] = true; dict7["gironde"] = true; dict5["girru"] = true; dict5["girth"] = true; dict4["gish"] = true; dict5["gismo"] = true; dict4["gist"] = true; dict4["gita"] = true; dict6["gitana"] = true; dict6["gitano"] = true; dict7["gittern"] = true; dict4["give"] = true; dict5["given"] = true; dict5["giver"] = true; dict6["giving"] = true; dict4["giza"] = true; dict5["gizeh"] = true; dict5["gizmo"] = true; dict7["gizzard"] = true; dict5["glace"] = true; dict7["glacial"] = true; dict7["glacier"] = true; dict4["glad"] = true; dict7["gladden"] = true; dict7["gladdon"] = true; dict5["glade"] = true; dict6["gladly"] = true; dict6["glamor"] = true; dict7["glamour"] = true; dict6["glance"] = true; dict5["gland"] = true; dict5["glans"] = true; dict5["glare"] = true; dict7["glaring"] = true; dict5["glary"] = true; dict6["glaser"] = true; dict7["glasgow"] = true; dict5["glass"] = true; dict7["glassed"] = true; dict7["glasses"] = true; dict6["glassy"] = true; dict5["glaux"] = true; dict5["glaze"] = true; dict6["glazed"] = true; dict6["glazer"] = true; dict7["glazier"] = true; dict5["gleam"] = true; dict5["glean"] = true; dict7["gleaner"] = true; dict5["gleba"] = true; dict5["glebe"] = true; dict4["glee"] = true; dict7["gleeful"] = true; dict5["gleet"] = true; dict4["glen"] = true; dict5["glenn"] = true; dict4["glia"] = true; dict5["glial"] = true; dict4["glib"] = true; dict6["glibly"] = true; dict5["glide"] = true; dict6["glider"] = true; dict7["gliding"] = true; dict7["glimmer"] = true; dict7["glimpse"] = true; dict6["glinka"] = true; dict5["glint"] = true; dict6["glioma"] = true; dict4["glis"] = true; dict7["glisten"] = true; dict7["glister"] = true; dict6["glitch"] = true; dict7["glitter"] = true; dict5["glitz"] = true; dict5["gloam"] = true; dict5["gloat"] = true; dict4["glob"] = true; dict6["global"] = true; dict5["globe"] = true; dict6["globin"] = true; dict7["globose"] = true; dict7["globule"] = true; dict7["glochid"] = true; dict5["glogg"] = true; dict4["glom"] = true; dict5["gloom"] = true; dict6["gloomy"] = true; dict4["glop"] = true; dict7["glorify"] = true; dict5["glory"] = true; dict5["gloss"] = true; dict6["glossa"] = true; dict6["glossy"] = true; dict7["glottal"] = true; dict7["glottis"] = true; dict5["glove"] = true; dict6["gloved"] = true; dict4["glow"] = true; dict6["glower"] = true; dict7["glowing"] = true; dict5["gluck"] = true; dict7["glucose"] = true; dict4["glue"] = true; dict5["glued"] = true; dict5["gluey"] = true; dict4["glug"] = true; dict4["glum"] = true; dict5["glume"] = true; dict6["glumly"] = true; dict5["gluon"] = true; dict4["glut"] = true; dict5["glute"] = true; dict7["gluteal"] = true; dict6["gluten"] = true; dict7["gluteus"] = true; dict7["glutted"] = true; dict7["glutton"] = true; dict7["glycine"] = true; dict6["glycol"] = true; dict5["glyph"] = true; dict5["gnarl"] = true; dict7["gnarled"] = true; dict6["gnarly"] = true; dict5["gnash"] = true; dict4["gnat"] = true; dict4["gnaw"] = true; dict6["gnawer"] = true; dict6["gneiss"] = true; dict6["gnetum"] = true; dict7["gnocchi"] = true; dict5["gnome"] = true; dict6["gnomic"] = true; dict7["gnomish"] = true; dict6["gnomon"] = true; dict6["gnosis"] = true; dict7["gnostic"] = true; dict7["go-cart"] = true; dict7["go-kart"] = true; dict7["go-slow"] = true; dict4["goad"] = true; dict6["goaded"] = true; dict7["goading"] = true; dict4["goal"] = true; dict6["goalie"] = true; dict4["goat"] = true; dict6["goatee"] = true; dict7["goateed"] = true; dict6["gobbet"] = true; dict6["gobble"] = true; dict7["gobbler"] = true; dict4["gobi"] = true; dict5["gobio"] = true; dict6["goblet"] = true; dict6["goblin"] = true; dict4["gobs"] = true; dict4["goby"] = true; dict6["godard"] = true; dict6["goddam"] = true; dict7["goddamn"] = true; dict7["goddard"] = true; dict7["goddess"] = true; dict5["godel"] = true; dict7["godhead"] = true; dict6["godiva"] = true; dict7["godless"] = true; dict7["godlike"] = true; dict5["godly"] = true; dict6["godown"] = true; dict7["godsend"] = true; dict6["godson"] = true; dict7["godunov"] = true; dict6["godwit"] = true; dict4["goer"] = true; dict7["goering"] = true; dict6["goethe"] = true; dict5["gofer"] = true; dict6["goffer"] = true; dict6["goggle"] = true; dict7["goggles"] = true; dict4["gogh"] = true; dict5["gogol"] = true; dict5["going"] = true; dict6["goiter"] = true; dict6["goitre"] = true; dict5["golan"] = true; dict4["gold"] = true; dict7["goldcup"] = true; dict6["golden"] = true; dict7["golding"] = true; dict7["goldman"] = true; dict7["goldoni"] = true; dict7["goldwyn"] = true; dict5["golem"] = true; dict4["golf"] = true; dict6["golfer"] = true; dict7["golfing"] = true; dict5["golgi"] = true; dict7["goliard"] = true; dict7["goliath"] = true; dict6["golosh"] = true; dict4["goma"] = true; dict5["gomel"] = true; dict7["gompers"] = true; dict6["gomuti"] = true; dict5["gonad"] = true; dict7["gonadal"] = true; dict4["gond"] = true; dict5["gondi"] = true; dict7["gondola"] = true; dict4["gone"] = true; dict5["goner"] = true; dict4["gong"] = true; dict7["gongora"] = true; dict5["gonif"] = true; dict6["goniff"] = true; dict6["gonion"] = true; dict5["gonne"] = true; dict5["gonzo"] = true; dict6["goober"] = true; dict4["good"] = true; dict7["good-by"] = true; dict7["goodall"] = true; dict6["goodby"] = true; dict7["goodbye"] = true; dict7["goodish"] = true; dict6["goodly"] = true; dict7["goodman"] = true; dict5["goody"] = true; dict5["gooey"] = true; dict4["goof"] = true; dict5["goofy"] = true; dict6["google"] = true; dict6["googly"] = true; dict6["googol"] = true; dict4["gook"] = true; dict4["goon"] = true; dict6["gooney"] = true; dict6["goonie"] = true; dict5["goony"] = true; dict4["goop"] = true; dict5["goose"] = true; dict6["goosey"] = true; dict5["goosy"] = true; dict6["gopher"] = true; dict5["goral"] = true; dict7["gordian"] = true; dict7["gordius"] = true; dict4["gore"] = true; dict6["gorgas"] = true; dict5["gorge"] = true; dict6["gorger"] = true; dict6["gorget"] = true; dict6["gorgon"] = true; dict7["gorilla"] = true; dict6["goring"] = true; dict5["gorki"] = true; dict6["gorkiy"] = true; dict5["gorky"] = true; dict5["gorse"] = true; dict4["gory"] = true; dict7["goshawk"] = true; dict7["gosling"] = true; dict7["gosmore"] = true; dict6["gospel"] = true; dict7["gospels"] = true; dict6["gossip"] = true; dict7["gossipy"] = true; dict4["goth"] = true; dict6["gothic"] = true; dict7["gothite"] = true; dict7["gouache"] = true; dict5["gouda"] = true; dict5["goudy"] = true; dict5["gouge"] = true; dict6["gouger"] = true; dict6["goujon"] = true; dict7["goulash"] = true; dict5["gould"] = true; dict6["gounod"] = true; dict5["gourd"] = true; dict6["gourde"] = true; dict7["gourmet"] = true; dict4["gout"] = true; dict5["gouty"] = true; dict6["govern"] = true; dict4["gown"] = true; dict6["gowned"] = true; dict4["goya"] = true; dict4["grab"] = true; dict7["grabber"] = true; dict6["grabby"] = true; dict5["grace"] = true; dict6["gracie"] = true; dict7["gracile"] = true; dict7["grackle"] = true; dict7["gracula"] = true; dict4["grad"] = true; dict7["gradate"] = true; dict5["grade"] = true; dict6["graded"] = true; dict6["grader"] = true; dict7["grading"] = true; dict7["gradual"] = true; dict4["graf"] = true; dict5["graft"] = true; dict6["graham"] = true; dict7["grahame"] = true; dict5["grail"] = true; dict5["grain"] = true; dict6["grainy"] = true; dict4["gram"] = true; dict5["grama"] = true; dict6["gramma"] = true; dict7["grammar"] = true; dict6["gramme"] = true; dict6["gramps"] = true; dict7["grampus"] = true; dict4["gran"] = true; dict7["granada"] = true; dict7["granary"] = true; dict5["grand"] = true; dict7["grandad"] = true; dict7["grandee"] = true; dict7["grandly"] = true; dict7["grandma"] = true; dict7["grandpa"] = true; dict6["grange"] = true; dict7["granger"] = true; dict7["granite"] = true; dict7["grannie"] = true; dict6["granny"] = true; dict7["granola"] = true; dict5["grant"] = true; dict7["granted"] = true; dict7["grantee"] = true; dict7["granter"] = true; dict6["granth"] = true; dict7["grantor"] = true; dict7["granule"] = true; dict5["grape"] = true; dict6["grapey"] = true; dict5["graph"] = true; dict7["graphic"] = true; dict7["grapnel"] = true; dict5["grapo"] = true; dict6["grappa"] = true; dict7["grapple"] = true; dict5["grapy"] = true; dict5["grasp"] = true; dict5["grass"] = true; dict6["grassy"] = true; dict5["grate"] = true; dict6["grater"] = true; dict7["gratify"] = true; dict7["grating"] = true; dict6["gratis"] = true; dict5["grave"] = true; dict6["gravel"] = true; dict7["gravely"] = true; dict6["graven"] = true; dict6["graver"] = true; dict6["graves"] = true; dict6["gravid"] = true; dict7["gravida"] = true; dict7["gravity"] = true; dict7["gravure"] = true; dict5["gravy"] = true; dict4["gray"] = true; dict7["grayhen"] = true; dict7["grayish"] = true; dict7["graylag"] = true; dict6["grayly"] = true; dict4["graz"] = true; dict5["graze"] = true; dict6["grazed"] = true; dict7["grazier"] = true; dict7["grazing"] = true; dict6["grease"] = true; dict7["greased"] = true; dict7["greaser"] = true; dict6["greasy"] = true; dict5["great"] = true; dict7["greater"] = true; dict7["greatly"] = true; dict6["greave"] = true; dict7["greaves"] = true; dict5["grebe"] = true; dict7["grecian"] = true; dict5["greco"] = true; dict6["greece"] = true; dict5["greed"] = true; dict6["greedy"] = true; dict5["greek"] = true; dict7["greeley"] = true; dict5["green"] = true; dict6["greene"] = true; dict7["greenly"] = true; dict6["greens"] = true; dict5["greet"] = true; dict7["greeter"] = true; dict7["gregory"] = true; dict7["greisen"] = true; dict7["gremlin"] = true; dict7["grenada"] = true; dict7["grenade"] = true; dict7["gresham"] = true; dict7["gretzky"] = true; dict6["grewia"] = true; dict4["grey"] = true; dict6["greyed"] = true; dict7["greyhen"] = true; dict7["greyish"] = true; dict7["greylag"] = true; dict6["greyly"] = true; dict7["gri-gri"] = true; dict5["grias"] = true; dict4["grid"] = true; dict7["griddle"] = true; dict5["grief"] = true; dict5["grieg"] = true; dict6["grieve"] = true; dict7["griever"] = true; dict7["griffin"] = true; dict7["griffon"] = true; dict7["grifter"] = true; dict6["grigri"] = true; dict5["grill"] = true; dict6["grille"] = true; dict7["grilled"] = true; dict4["grim"] = true; dict7["grimace"] = true; dict5["grime"] = true; dict6["grimly"] = true; dict5["grimm"] = true; dict5["grimy"] = true; dict4["grin"] = true; dict5["grind"] = true; dict7["grinder"] = true; dict7["grindle"] = true; dict6["gringo"] = true; dict7["grinner"] = true; dict5["griot"] = true; dict4["grip"] = true; dict5["gripe"] = true; dict6["gripes"] = true; dict7["griping"] = true; dict6["grippe"] = true; dict4["gris"] = true; dict6["grisly"] = true; dict6["grison"] = true; dict5["grist"] = true; dict7["gristle"] = true; dict7["gristly"] = true; dict4["grit"] = true; dict5["grits"] = true; dict6["gritty"] = true; dict6["grivet"] = true; dict7["grizzle"] = true; dict7["grizzly"] = true; dict5["groak"] = true; dict5["groan"] = true; dict7["groaner"] = true; dict5["groat"] = true; dict6["groats"] = true; dict6["grocer"] = true; dict7["grocery"] = true; dict4["grog"] = true; dict6["groggy"] = true; dict7["grogram"] = true; dict5["groin"] = true; dict4["grok"] = true; dict7["grommet"] = true; dict7["gromyko"] = true; dict5["groom"] = true; dict7["groomed"] = true; dict6["groove"] = true; dict7["grooved"] = true; dict7["groover"] = true; dict6["groovy"] = true; dict5["grope"] = true; dict7["groping"] = true; dict7["gropius"] = true; dict5["gross"] = true; dict7["grossly"] = true; dict5["grosz"] = true; dict4["grot"] = true; dict7["grotius"] = true; dict6["grotto"] = true; dict6["grotty"] = true; dict6["grouch"] = true; dict7["groucho"] = true; dict7["grouchy"] = true; dict6["ground"] = true; dict7["grounds"] = true; dict5["group"] = true; dict7["grouped"] = true; dict7["grouper"] = true; dict7["groupie"] = true; dict6["grouse"] = true; dict5["grout"] = true; dict5["grove"] = true; dict6["grovel"] = true; dict6["groves"] = true; dict4["grow"] = true; dict6["grower"] = true; dict7["growing"] = true; dict5["growl"] = true; dict7["growler"] = true; dict5["grown"] = true; dict7["grownup"] = true; dict6["growth"] = true; dict6["groyne"] = true; dict6["grozny"] = true; dict7["groznyy"] = true; dict4["grub"] = true; dict6["grubby"] = true; dict6["grudge"] = true; dict5["gruel"] = true; dict5["gruff"] = true; dict7["gruffly"] = true; dict6["grugru"] = true; dict7["gruidae"] = true; dict7["grumble"] = true; dict5["grume"] = true; dict7["grummet"] = true; dict7["grumose"] = true; dict7["grumous"] = true; dict5["grump"] = true; dict6["grumpy"] = true; dict6["grunge"] = true; dict6["grungy"] = true; dict5["grunt"] = true; dict7["grunter"] = true; dict7["gruntle"] = true; dict4["grus"] = true; dict7["gruyere"] = true; dict7["gryphon"] = true; dict4["gspc"] = true; dict6["guaiac"] = true; dict6["guaira"] = true; dict4["guam"] = true; dict5["guama"] = true; dict4["guan"] = true; dict7["guanaco"] = true; dict7["guanine"] = true; dict5["guano"] = true; dict4["guar"] = true; dict7["guarani"] = true; dict5["guard"] = true; dict7["guarded"] = true; dict5["guava"] = true; dict7["guayule"] = true; dict7["gubbins"] = true; dict4["guck"] = true; dict7["gudgeon"] = true; dict6["guenon"] = true; dict7["guerdon"] = true; dict7["guereza"] = true; dict5["guess"] = true; dict7["guesser"] = true; dict5["guest"] = true; dict7["guevara"] = true; dict7["guevina"] = true; dict4["guff"] = true; dict6["guffaw"] = true; dict6["guggle"] = true; dict6["guiana"] = true; dict4["guib"] = true; dict5["guide"] = true; dict6["guided"] = true; dict7["guiding"] = true; dict5["guild"] = true; dict7["guilder"] = true; dict5["guile"] = true; dict5["guilt"] = true; dict6["guilty"] = true; dict6["guimpe"] = true; dict6["guinea"] = true; dict7["guinean"] = true; dict5["guise"] = true; dict6["guitar"] = true; dict7["gujarat"] = true; dict7["gujerat"] = true; dict4["gula"] = true; dict5["gulag"] = true; dict5["gulch"] = true; dict6["gulden"] = true; dict4["gulf"] = true; dict4["gull"] = true; dict6["gullet"] = true; dict5["gully"] = true; dict4["gulo"] = true; dict4["gulp"] = true; dict6["gulper"] = true; dict7["gulping"] = true; dict4["gulu"] = true; dict6["gulyas"] = true; dict7["gum-lac"] = true; dict5["gumbo"] = true; dict7["gumboil"] = true; dict7["gumdrop"] = true; dict5["gumma"] = true; dict6["gummed"] = true; dict7["gumming"] = true; dict7["gummite"] = true; dict5["gummy"] = true; dict7["gumshoe"] = true; dict7["gumweed"] = true; dict7["gumwood"] = true; dict7["gunboat"] = true; dict7["gunfire"] = true; dict6["gunite"] = true; dict4["gunk"] = true; dict7["gunlock"] = true; dict6["gunman"] = true; dict6["gunnel"] = true; dict6["gunner"] = true; dict7["gunnery"] = true; dict5["gunny"] = true; dict7["gunplay"] = true; dict7["gunshot"] = true; dict7["gunwale"] = true; dict5["guppy"] = true; dict6["gurgle"] = true; dict6["gurkha"] = true; dict7["gurnard"] = true; dict6["gurney"] = true; dict4["guru"] = true; dict4["gush"] = true; dict6["gusher"] = true; dict7["gushing"] = true; dict5["gushy"] = true; dict6["gusset"] = true; dict4["gust"] = true; dict5["gusto"] = true; dict5["gusty"] = true; dict7["guthrie"] = true; dict7["gutless"] = true; dict4["guts"] = true; dict5["gutsy"] = true; dict6["gutter"] = true; dict6["guttle"] = true; dict6["guvnor"] = true; dict6["guyana"] = true; dict5["guyot"] = true; dict6["guzzle"] = true; dict7["guzzler"] = true; dict7["gwydion"] = true; dict4["gwyn"] = true; dict5["gwynn"] = true; dict4["gybe"] = true; dict7["gymnast"] = true; dict7["gymnura"] = true; dict7["gymslip"] = true; dict5["gynne"] = true; dict6["gynura"] = true; dict4["gyps"] = true; dict6["gypsum"] = true; dict5["gypsy"] = true; dict5["gyral"] = true; dict6["gyrate"] = true; dict4["gyre"] = true; dict4["gyro"] = true; dict5["gyrus"] = true; dict4["gywn"] = true; dict6["h-bomb"] = true; dict4["h.p."] = true; dict5["ha-ha"] = true; dict5["haart"] = true; dict7["haastia"] = true; dict7["habacuc"] = true; dict5["haber"] = true; dict5["habit"] = true; dict7["habitat"] = true; dict7["habited"] = true; dict7["habitue"] = true; dict7["habitus"] = true; dict5["hacek"] = true; dict7["hachure"] = true; dict4["hack"] = true; dict7["hackbut"] = true; dict6["hackee"] = true; dict6["hacker"] = true; dict6["hackle"] = true; dict7["hackles"] = true; dict7["hackney"] = true; dict7["hacksaw"] = true; dict5["hadal"] = true; dict7["haddock"] = true; dict6["hadean"] = true; dict5["hades"] = true; dict6["hadith"] = true; dict4["hadj"] = true; dict5["hadji"] = true; dict7["hadrian"] = true; dict6["hadron"] = true; dict7["haeckel"] = true; dict4["haem"] = true; dict6["haemal"] = true; dict6["haemic"] = true; dict7["hafnium"] = true; dict4["haft"] = true; dict6["hagada"] = true; dict7["haganah"] = true; dict6["hagbut"] = true; dict7["hagfish"] = true; dict7["haggada"] = true; dict6["haggai"] = true; dict7["haggard"] = true; dict6["haggis"] = true; dict6["haggle"] = true; dict7["haggler"] = true; dict4["hahn"] = true; dict7["hahnium"] = true; dict5["haick"] = true; dict5["haida"] = true; dict5["haifa"] = true; dict4["haik"] = true; dict5["haiku"] = true; dict4["hail"] = true; dict4["hair"] = true; dict7["haircut"] = true; dict6["hairdo"] = true; dict6["haired"] = true; dict7["hairnet"] = true; dict7["hairpin"] = true; dict5["hairy"] = true; dict5["haiti"] = true; dict7["haitian"] = true; dict4["haji"] = true; dict4["hajj"] = true; dict5["hajji"] = true; dict4["hake"] = true; dict5["hakea"] = true; dict6["hakeem"] = true; dict6["hakham"] = true; dict5["hakim"] = true; dict5["hakka"] = true; dict5["halab"] = true; dict7["halacha"] = true; dict6["halaka"] = true; dict7["halakah"] = true; dict5["halal"] = true; dict7["halberd"] = true; dict7["halcion"] = true; dict7["halcyon"] = true; dict7["haldane"] = true; dict6["haldea"] = true; dict6["haldol"] = true; dict4["hale"] = true; dict7["halenia"] = true; dict5["haler"] = true; dict7["halesia"] = true; dict6["halevy"] = true; dict5["haley"] = true; dict4["half"] = true; dict7["halfway"] = true; dict7["halibut"] = true; dict6["halide"] = true; dict7["halifax"] = true; dict6["halite"] = true; dict7["halitus"] = true; dict4["hall"] = true; dict6["hallah"] = true; dict5["halle"] = true; dict6["hallel"] = true; dict6["halley"] = true; dict6["halloo"] = true; dict6["hallow"] = true; dict6["hallux"] = true; dict7["hallway"] = true; dict4["halm"] = true; dict5["halma"] = true; dict4["halo"] = true; dict7["halogen"] = true; dict5["halon"] = true; dict4["hals"] = true; dict4["halt"] = true; dict6["halter"] = true; dict7["haltere"] = true; dict7["halting"] = true; dict5["halve"] = true; dict7["halyard"] = true; dict5["haman"] = true; dict5["hamas"] = true; dict6["hamate"] = true; dict7["hamburg"] = true; dict4["hame"] = true; dict7["hamelia"] = true; dict7["hamelin"] = true; dict6["hameln"] = true; dict7["hamitic"] = true; dict6["hamlet"] = true; dict6["hammer"] = true; dict7["hammett"] = true; dict7["hamming"] = true; dict7["hammock"] = true; dict5["hammy"] = true; dict6["hamper"] = true; dict7["hampton"] = true; dict7["hamster"] = true; dict6["hamsun"] = true; dict7["hancock"] = true; dict4["hand"] = true; dict7["handbag"] = true; dict7["handbow"] = true; dict7["handcar"] = true; dict6["handed"] = true; dict6["handel"] = true; dict7["handful"] = true; dict7["handgun"] = true; dict7["handily"] = true; dict6["handle"] = true; dict7["handled"] = true; dict7["handler"] = true; dict7["handoff"] = true; dict7["handout"] = true; dict5["hands"] = true; dict7["handsaw"] = true; dict7["handset"] = true; dict5["handy"] = true; dict4["hang"] = true; dict7["hang-up"] = true; dict6["hangar"] = true; dict7["hangdog"] = true; dict6["hanger"] = true; dict7["hanging"] = true; dict7["hangman"] = true; dict7["hangout"] = true; dict4["hani"] = true; dict4["hank"] = true; dict6["hanker"] = true; dict6["hankey"] = true; dict6["hankie"] = true; dict5["hanks"] = true; dict5["hanky"] = true; dict5["hanoi"] = true; dict7["hanover"] = true; dict7["hansard"] = true; dict6["hansom"] = true; dict7["hanukah"] = true; dict7["hanuman"] = true; dict5["haoma"] = true; dict7["hapless"] = true; dict7["haploid"] = true; dict5["haply"] = true; dict6["happen"] = true; dict7["happily"] = true; dict5["happy"] = true; dict6["haptic"] = true; dict6["harare"] = true; dict6["harass"] = true; dict6["harbor"] = true; dict7["harbour"] = true; dict4["hard"] = true; dict7["hard-on"] = true; dict6["harden"] = true; dict7["harding"] = true; dict6["hardly"] = true; dict7["hardpan"] = true; dict7["hardtop"] = true; dict5["hardy"] = true; dict4["hare"] = true; dict6["haredi"] = true; dict6["hareem"] = true; dict7["harelip"] = true; dict5["harem"] = true; dict7["haricot"] = true; dict7["harijan"] = true; dict4["hark"] = true; dict6["harken"] = true; dict6["harlem"] = true; dict6["harlot"] = true; dict6["harlow"] = true; dict4["harm"] = true; dict7["harmful"] = true; dict7["harmony"] = true; dict7["harness"] = true; dict4["harp"] = true; dict6["harper"] = true; dict6["harpia"] = true; dict7["harpist"] = true; dict5["harpo"] = true; dict7["harpoon"] = true; dict5["harpy"] = true; dict7["harried"] = true; dict7["harrier"] = true; dict6["harris"] = true; dict6["harrod"] = true; dict6["harrow"] = true; dict5["harry"] = true; dict5["harsh"] = true; dict7["harshen"] = true; dict7["harshly"] = true; dict4["hart"] = true; dict5["harte"] = true; dict7["hartley"] = true; dict7["harvard"] = true; dict7["harvest"] = true; dict6["harvey"] = true; dict5["hasek"] = true; dict4["hash"] = true; dict7["hashish"] = true; dict5["hasid"] = true; dict7["hasidic"] = true; dict7["hasidim"] = true; dict6["haslet"] = true; dict4["hasp"] = true; dict6["hassam"] = true; dict6["hassel"] = true; dict6["hassid"] = true; dict7["hassium"] = true; dict6["hassle"] = true; dict7["hassock"] = true; dict7["hastate"] = true; dict5["haste"] = true; dict6["hasten"] = true; dict7["hastily"] = true; dict5["hasty"] = true; dict7["hatband"] = true; dict6["hatbox"] = true; dict5["hatch"] = true; dict7["hatched"] = true; dict7["hatchel"] = true; dict7["hatchet"] = true; dict4["hate"] = true; dict5["hated"] = true; dict7["hateful"] = true; dict5["hater"] = true; dict6["hatful"] = true; dict7["hatiora"] = true; dict7["hatless"] = true; dict6["hatpin"] = true; dict7["hatrack"] = true; dict6["hatred"] = true; dict6["hatted"] = true; dict6["hatter"] = true; dict7["hauberk"] = true; dict7["haughty"] = true; dict4["haul"] = true; dict7["haulage"] = true; dict6["hauler"] = true; dict7["haulier"] = true; dict7["hauling"] = true; dict5["haulm"] = true; dict6["haunch"] = true; dict5["haunt"] = true; dict7["haunted"] = true; dict5["hausa"] = true; dict6["hausen"] = true; dict6["haussa"] = true; dict7["hautboy"] = true; dict7["hauteur"] = true; dict6["havana"] = true; dict4["have"] = true; dict5["havel"] = true; dict5["haven"] = true; dict5["havoc"] = true; dict7["haw-haw"] = true; dict7["hawai'i"] = true; dict6["hawaii"] = true; dict6["hawala"] = true; dict4["hawk"] = true; dict7["hawkbit"] = true; dict6["hawker"] = true; dict7["hawking"] = true; dict7["hawkins"] = true; dict7["hawkish"] = true; dict7["hawkyns"] = true; dict7["haworth"] = true; dict5["hawse"] = true; dict6["hawser"] = true; dict7["haycock"] = true; dict5["haydn"] = true; dict5["hayek"] = true; dict5["hayes"] = true; dict7["hayfork"] = true; dict6["haying"] = true; dict7["hayloft"] = true; dict6["haymow"] = true; dict7["hayrack"] = true; dict7["hayrick"] = true; dict6["hayrig"] = true; dict4["hays"] = true; dict7["hayseed"] = true; dict5["hayti"] = true; dict7["haywire"] = true; dict7["haywood"] = true; dict5["hazan"] = true; dict6["hazard"] = true; dict4["haze"] = true; dict5["hazel"] = true; dict6["hazily"] = true; dict7["hazlitt"] = true; dict6["hazmat"] = true; dict4["hazy"] = true; dict4["hcfc"] = true; dict4["hdtv"] = true; dict7["he-goat"] = true; dict6["he-man"] = true; dict4["head"] = true; dict7["head-on"] = true; dict6["headed"] = true; dict6["header"] = true; dict7["headful"] = true; dict7["heading"] = true; dict7["headman"] = true; dict7["headpin"] = true; dict7["headset"] = true; dict7["headway"] = true; dict5["heady"] = true; dict4["heal"] = true; dict6["healed"] = true; dict6["healer"] = true; dict7["healing"] = true; dict6["health"] = true; dict7["healthy"] = true; dict4["heap"] = true; dict5["heaps"] = true; dict4["hear"] = true; dict5["heard"] = true; dict6["hearer"] = true; dict7["hearing"] = true; dict7["hearken"] = true; dict7["hearsay"] = true; dict6["hearse"] = true; dict6["hearst"] = true; dict5["heart"] = true; dict7["hearten"] = true; dict6["hearth"] = true; dict6["hearts"] = true; dict6["hearty"] = true; dict4["heat"] = true; dict6["heated"] = true; dict6["heater"] = true; dict5["heath"] = true; dict7["heathen"] = true; dict7["heather"] = true; dict7["heating"] = true; dict6["heaume"] = true; dict5["heave"] = true; dict6["heaven"] = true; dict7["heavens"] = true; dict6["heaver"] = true; dict6["heaves"] = true; dict7["heavily"] = true; dict7["heaving"] = true; dict5["heavy"] = true; dict6["hebbel"] = true; dict4["hebe"] = true; dict5["hebei"] = true; dict7["hebraic"] = true; dict6["hebrew"] = true; dict7["hebrews"] = true; dict6["hecate"] = true; dict5["hecht"] = true; dict6["heckle"] = true; dict7["heckler"] = true; dict7["hectare"] = true; dict6["hectic"] = true; dict6["hector"] = true; dict7["hedeoma"] = true; dict6["hedera"] = true; dict5["hedge"] = true; dict6["hedged"] = true; dict6["hedger"] = true; dict7["hedging"] = true; dict6["hedjaz"] = true; dict7["hedonic"] = true; dict7["hee-haw"] = true; dict4["heed"] = true; dict7["heedful"] = true; dict4["heel"] = true; dict4["hefa"] = true; dict4["heft"] = true; dict5["hefty"] = true; dict6["hegari"] = true; dict5["hegel"] = true; dict7["hegemon"] = true; dict6["hegira"] = true; dict6["heifer"] = true; dict6["height"] = true; dict7["heights"] = true; dict7["heilong"] = true; dict7["heimdal"] = true; dict7["heinous"] = true; dict5["heinz"] = true; dict4["heir"] = true; dict7["heiress"] = true; dict5["heist"] = true; dict5["hejaz"] = true; dict6["hejira"] = true; dict4["hela"] = true; dict4["held"] = true; dict5["helen"] = true; dict6["helena"] = true; dict6["heliac"] = true; dict7["helical"] = true; dict7["helicon"] = true; dict6["helios"] = true; dict6["helium"] = true; dict5["helix"] = true; dict4["hell"] = true; dict7["hellcat"] = true; dict7["hellene"] = true; dict6["heller"] = true; dict7["helleri"] = true; dict7["hellion"] = true; dict7["hellish"] = true; dict7["hellman"] = true; dict5["hello"] = true; dict4["helm"] = true; dict6["helmet"] = true; dict7["heloise"] = true; dict5["helot"] = true; dict4["help"] = true; dict6["helper"] = true; dict7["helpful"] = true; dict7["helping"] = true; dict5["helve"] = true; dict7["helxine"] = true; dict5["hemal"] = true; dict7["hematal"] = true; dict7["hematic"] = true; dict7["hematin"] = true; dict4["heme"] = true; dict5["hemic"] = true; dict5["hemin"] = true; dict6["heming"] = true; dict7["hemline"] = true; dict7["hemlock"] = true; dict7["hemofil"] = true; dict4["hemp"] = true; dict6["hempen"] = true; dict7["henbane"] = true; dict6["henbit"] = true; dict5["hence"] = true; dict7["hencoop"] = true; dict7["hendrix"] = true; dict5["henna"] = true; dict5["henry"] = true; dict6["henson"] = true; dict7["heparin"] = true; dict7["hepatic"] = true; dict7["hepburn"] = true; dict6["heptad"] = true; dict7["heptane"] = true; dict4["hera"] = true; dict6["herald"] = true; dict5["herat"] = true; dict4["herb"] = true; dict7["herbage"] = true; dict6["herbal"] = true; dict7["herbart"] = true; dict7["herbert"] = true; dict4["herd"] = true; dict6["herder"] = true; dict4["here"] = true; dict6["hereby"] = true; dict6["herein"] = true; dict6["hereof"] = true; dict6["herero"] = true; dict6["heresy"] = true; dict7["heretic"] = true; dict6["hereto"] = true; dict7["heritor"] = true; dict4["herm"] = true; dict6["herman"] = true; dict7["hermann"] = true; dict6["hermes"] = true; dict6["hermit"] = true; dict6["hernia"] = true; dict4["hero"] = true; dict5["herod"] = true; dict6["heroic"] = true; dict7["heroics"] = true; dict6["heroin"] = true; dict7["heroine"] = true; dict7["heroism"] = true; dict5["heron"] = true; dict7["heronry"] = true; dict6["herpes"] = true; dict4["herr"] = true; dict7["herrick"] = true; dict7["herring"] = true; dict7["hershey"] = true; dict6["hertha"] = true; dict5["hertz"] = true; dict7["heshvan"] = true; dict6["hesiod"] = true; dict4["hess"] = true; dict5["hesse"] = true; dict7["hessian"] = true; dict6["hestia"] = true; dict4["heth"] = true; dict5["hevea"] = true; dict6["hevesy"] = true; dict5["hewer"] = true; dict4["hewn"] = true; dict5["hexad"] = true; dict7["hexagon"] = true; dict6["hexane"] = true; dict7["hexapod"] = true; dict5["hexed"] = true; dict6["hexose"] = true; dict6["heyday"] = true; dict5["heyse"] = true; dict7["heyward"] = true; dict5["hi-fi"] = true; dict7["hi-tech"] = true; dict6["hiatus"] = true; dict7["hibachi"] = true; dict7["hibbing"] = true; dict6["hiccup"] = true; dict4["hick"] = true; dict6["hickey"] = true; dict7["hickock"] = true; dict7["hickory"] = true; dict7["hidatsa"] = true; dict6["hidden"] = true; dict4["hide"] = true; dict7["hideous"] = true; dict7["hideout"] = true; dict6["hiding"] = true; dict6["hiemal"] = true; dict6["higgle"] = true; dict4["high"] = true; dict7["high-up"] = true; dict7["highboy"] = true; dict6["higher"] = true; dict6["highly"] = true; dict7["highway"] = true; dict4["higi"] = true; dict5["hijab"] = true; dict6["hijack"] = true; dict5["hijaz"] = true; dict7["hijinks"] = true; dict4["hike"] = true; dict5["hiker"] = true; dict6["hiking"] = true; dict5["hilar"] = true; dict7["hilbert"] = true; dict4["hill"] = true; dict7["hillary"] = true; dict6["hillel"] = true; dict7["hillock"] = true; dict7["hilltop"] = true; dict5["hilly"] = true; dict4["hilo"] = true; dict4["hilt"] = true; dict5["hilum"] = true; dict5["hilus"] = true; dict7["himmler"] = true; dict7["hinault"] = true; dict4["hind"] = true; dict6["hinder"] = true; dict7["hindgut"] = true; dict5["hindi"] = true; dict6["hindoo"] = true; dict5["hindu"] = true; dict5["hinge"] = true; dict5["hinny"] = true; dict4["hint"] = true; dict7["hip-hop"] = true; dict7["hipbone"] = true; dict7["hipless"] = true; dict7["hipline"] = true; dict6["hipped"] = true; dict6["hippie"] = true; dict7["hippies"] = true; dict5["hippo"] = true; dict5["hippy"] = true; dict7["hipster"] = true; dict7["hircine"] = true; dict4["hire"] = true; dict5["hired"] = true; dict5["hirer"] = true; dict7["hirsute"] = true; dict6["hirudo"] = true; dict7["hirundo"] = true; dict6["hispid"] = true; dict4["hiss"] = true; dict6["hisser"] = true; dict7["hissing"] = true; dict7["histone"] = true; dict7["history"] = true; dict5["hitch"] = true; dict6["hither"] = true; dict6["hitler"] = true; dict7["hitless"] = true; dict6["hitman"] = true; dict6["hitter"] = true; dict7["hitting"] = true; dict7["hittite"] = true; dict4["hive"] = true; dict5["hives"] = true; dict5["hmong"] = true; dict6["ho-hum"] = true; dict6["hoagie"] = true; dict5["hoagy"] = true; dict4["hoar"] = true; dict5["hoard"] = true; dict7["hoarder"] = true; dict6["hoarse"] = true; dict5["hoary"] = true; dict7["hoatzin"] = true; dict4["hoax"] = true; dict6["hoaxer"] = true; dict6["hobart"] = true; dict6["hobbes"] = true; dict6["hobbit"] = true; dict6["hobble"] = true; dict7["hobbler"] = true; dict5["hobbs"] = true; dict5["hobby"] = true; dict7["hobnail"] = true; dict6["hobnob"] = true; dict4["hobo"] = true; dict4["hock"] = true; dict6["hockey"] = true; dict7["hodeida"] = true; dict5["hoder"] = true; dict7["hodgkin"] = true; dict6["hodman"] = true; dict4["hodr"] = true; dict5["hodur"] = true; dict7["hoecake"] = true; dict6["hoenir"] = true; dict5["hoffa"] = true; dict7["hoffman"] = true; dict7["hog-tie"] = true; dict5["hogan"] = true; dict7["hogarth"] = true; dict7["hogback"] = true; dict7["hogfish"] = true; dict4["hogg"] = true; dict6["hogged"] = true; dict6["hogget"] = true; dict7["hoggish"] = true; dict7["hogwash"] = true; dict7["hogweed"] = true; dict7["hoheria"] = true; dict6["hohhot"] = true; dict5["hoist"] = true; dict7["hoister"] = true; dict4["hoka"] = true; dict5["hokan"] = true; dict5["hokey"] = true; dict5["hokum"] = true; dict7["hokusai"] = true; dict7["holbein"] = true; dict6["holcus"] = true; dict4["hold"] = true; dict7["holdall"] = true; dict6["holder"] = true; dict7["holding"] = true; dict7["holdout"] = true; dict6["holdup"] = true; dict4["hole"] = true; dict5["holey"] = true; dict7["holibut"] = true; dict7["holiday"] = true; dict6["holism"] = true; dict5["holla"] = true; dict7["holland"] = true; dict6["holler"] = true; dict5["hollo"] = true; dict6["holloa"] = true; dict6["hollow"] = true; dict5["holly"] = true; dict6["holmes"] = true; dict7["holmium"] = true; dict7["holonym"] = true; dict7["holster"] = true; dict4["holy"] = true; dict6["homage"] = true; dict7["homarus"] = true; dict6["hombre"] = true; dict7["homburg"] = true; dict4["home"] = true; dict7["homeboy"] = true; dict5["homel"] = true; dict6["homely"] = true; dict5["homer"] = true; dict7["homeric"] = true; dict5["homey"] = true; dict6["homily"] = true; dict7["hominal"] = true; dict6["homing"] = true; dict7["hominid"] = true; dict6["hominy"] = true; dict6["hommos"] = true; dict4["homo"] = true; dict6["homona"] = true; dict7["homonym"] = true; dict4["homy"] = true; dict6["homyel"] = true; dict6["honcho"] = true; dict5["hondo"] = true; dict4["hone"] = true; dict6["honest"] = true; dict7["honesty"] = true; dict5["honey"] = true; dict7["honeyed"] = true; dict7["honiara"] = true; dict6["honied"] = true; dict4["honk"] = true; dict6["honker"] = true; dict6["honkey"] = true; dict6["honkie"] = true; dict5["honky"] = true; dict5["honor"] = true; dict7["honored"] = true; dict7["honoree"] = true; dict6["honour"] = true; dict7["honours"] = true; dict6["honshu"] = true; dict6["hoo-ha"] = true; dict7["hoo-hah"] = true; dict5["hooch"] = true; dict4["hood"] = true; dict7["hoodlum"] = true; dict6["hoodoo"] = true; dict5["hooey"] = true; dict4["hoof"] = true; dict6["hoofed"] = true; dict6["hoofer"] = true; dict7["hoofing"] = true; dict4["hook"] = true; dict6["hookah"] = true; dict5["hooke"] = true; dict6["hooked"] = true; dict6["hooker"] = true; dict7["hooking"] = true; dict5["hooks"] = true; dict6["hookup"] = true; dict5["hooky"] = true; dict4["hoop"] = true; dict6["hoopla"] = true; dict6["hoopoe"] = true; dict6["hoopoo"] = true; dict5["hoops"] = true; dict6["hooray"] = true; dict7["hoosgow"] = true; dict7["hoosier"] = true; dict4["hoot"] = true; dict6["hootch"] = true; dict6["hooter"] = true; dict6["hooved"] = true; dict6["hoover"] = true; dict4["hope"] = true; dict7["hopeful"] = true; dict5["hopeh"] = true; dict5["hopei"] = true; dict5["hoper"] = true; dict4["hopi"] = true; dict7["hopkins"] = true; dict6["hopper"] = true; dict6["hopple"] = true; dict4["hops"] = true; dict7["hopsack"] = true; dict6["horace"] = true; dict6["horary"] = true; dict5["horde"] = true; dict7["hordeum"] = true; dict7["horizon"] = true; dict7["hormone"] = true; dict4["horn"] = true; dict5["horne"] = true; dict6["horned"] = true; dict6["hornet"] = true; dict6["horney"] = true; dict7["hornist"] = true; dict5["horny"] = true; dict6["horrid"] = true; dict7["horrify"] = true; dict6["horror"] = true; dict5["horse"] = true; dict5["horst"] = true; dict5["horta"] = true; dict5["horus"] = true; dict7["hosanna"] = true; dict4["hose"] = true; dict5["hosea"] = true; dict6["hosier"] = true; dict7["hosiery"] = true; dict7["hospice"] = true; dict4["host"] = true; dict5["hosta"] = true; dict7["hostage"] = true; dict6["hostel"] = true; dict7["hostess"] = true; dict7["hostile"] = true; dict7["hostler"] = true; dict7["hot-dog"] = true; dict7["hot-rod"] = true; dict6["hotbed"] = true; dict6["hotbox"] = true; dict7["hotcake"] = true; dict6["hotdog"] = true; dict5["hotei"] = true; dict5["hotel"] = true; dict7["hotfoot"] = true; dict4["hoth"] = true; dict7["hothead"] = true; dict5["hothr"] = true; dict5["hotly"] = true; dict7["hotness"] = true; dict6["hotpot"] = true; dict7["hotshot"] = true; dict7["hotspot"] = true; dict7["hotspur"] = true; dict7["hottish"] = true; dict6["houdah"] = true; dict7["houdini"] = true; dict7["houhere"] = true; dict7["hoummos"] = true; dict5["hound"] = true; dict4["hour"] = true; dict5["houri"] = true; dict6["hourly"] = true; dict5["hours"] = true; dict5["house"] = true; dict7["housing"] = true; dict7["housman"] = true; dict7["houston"] = true; dict5["hovea"] = true; dict5["hovel"] = true; dict5["hover"] = true; dict6["howard"] = true; dict6["howdah"] = true; dict5["howdy"] = true; dict4["howe"] = true; dict7["howells"] = true; dict7["however"] = true; dict4["howl"] = true; dict6["howler"] = true; dict7["howling"] = true; dict4["hoya"] = true; dict6["hoyden"] = true; dict5["hoyle"] = true; dict5["hrolf"] = true; dict7["hryvnia"] = true; dict5["hsian"] = true; dict5["hsv-1"] = true; dict5["hsv-2"] = true; dict5["hsv-i"] = true; dict6["hsv-ii"] = true; dict6["htlv-1"] = true; dict4["html"] = true; dict4["http"] = true; dict7["hualpai"] = true; dict6["huambo"] = true; dict7["hubbard"] = true; dict6["hubble"] = true; dict6["hubbub"] = true; dict5["hubby"] = true; dict6["hubcap"] = true; dict5["hubel"] = true; dict6["hubris"] = true; dict4["huck"] = true; dict6["huddle"] = true; dict7["huddled"] = true; dict7["huddler"] = true; dict6["hudood"] = true; dict6["hudson"] = true; dict5["hudud"] = true; dict7["hueless"] = true; dict4["huff"] = true; dict7["huffily"] = true; dict7["huffing"] = true; dict7["huffish"] = true; dict5["huffy"] = true; dict4["huge"] = true; dict6["hugely"] = true; dict6["hugger"] = true; dict7["hugging"] = true; dict7["huggins"] = true; dict6["hughes"] = true; dict4["hugo"] = true; dict6["huitre"] = true; dict4["huji"] = true; dict4["hula"] = true; dict4["hulk"] = true; dict7["hulking"] = true; dict5["hulky"] = true; dict4["hull"] = true; dict5["hullo"] = true; dict6["hulsea"] = true; dict7["hum-vee"] = true; dict5["human"] = true; dict6["humane"] = true; dict7["humanly"] = true; dict6["humans"] = true; dict6["humate"] = true; dict6["humber"] = true; dict6["humble"] = true; dict7["humbled"] = true; dict6["humbly"] = true; dict6["humbug"] = true; dict7["humdrum"] = true; dict4["hume"] = true; dict7["humerus"] = true; dict5["humic"] = true; dict5["humid"] = true; dict6["humify"] = true; dict5["humin"] = true; dict6["hummer"] = true; dict7["humming"] = true; dict7["hummock"] = true; dict6["hummus"] = true; dict5["humor"] = true; dict7["humoral"] = true; dict6["humour"] = true; dict6["humous"] = true; dict4["hump"] = true; dict6["humped"] = true; dict7["humulin"] = true; dict7["humulus"] = true; dict5["humus"] = true; dict6["humvee"] = true; dict5["hunan"] = true; dict5["hunch"] = true; dict7["hunched"] = true; dict7["hundred"] = true; dict7["hungary"] = true; dict6["hunger"] = true; dict6["hungry"] = true; dict4["hunk"] = true; dict6["hunker"] = true; dict4["hunt"] = true; dict6["hunted"] = true; dict6["hunter"] = true; dict7["hunting"] = true; dict4["hupa"] = true; dict6["hurdle"] = true; dict7["hurdler"] = true; dict7["hurdles"] = true; dict4["hurl"] = true; dict6["hurler"] = true; dict7["hurling"] = true; dict5["hurok"] = true; dict5["huron"] = true; dict6["hurrah"] = true; dict7["hurried"] = true; dict5["hurry"] = true; dict4["hurt"] = true; dict7["hurtful"] = true; dict7["hurting"] = true; dict6["hurtle"] = true; dict6["husain"] = true; dict6["husayn"] = true; dict7["husband"] = true; dict4["hush"] = true; dict6["hushed"] = true; dict7["hushing"] = true; dict4["husk"] = true; dict7["huskily"] = true; dict7["husking"] = true; dict5["husky"] = true; dict4["huss"] = true; dict6["hussar"] = true; dict7["hussein"] = true; dict7["husserl"] = true; dict7["hussite"] = true; dict5["hussy"] = true; dict6["hustle"] = true; dict7["hustler"] = true; dict6["huston"] = true; dict5["hutch"] = true; dict7["hutment"] = true; dict6["hutton"] = true; dict4["hutu"] = true; dict7["hutzpah"] = true; dict6["huxley"] = true; dict7["huygens"] = true; dict6["hyades"] = true; dict6["hyaena"] = true; dict6["hyalin"] = true; dict7["hyaline"] = true; dict7["hyaloid"] = true; dict7["hyazyme"] = true; dict6["hybrid"] = true; dict7["hydatid"] = true; dict6["hydnum"] = true; dict5["hydra"] = true; dict7["hydrant"] = true; dict7["hydrate"] = true; dict6["hydric"] = true; dict7["hydride"] = true; dict7["hydroid"] = true; dict7["hydrops"] = true; dict7["hydrous"] = true; dict7["hydroxy"] = true; dict6["hydrus"] = true; dict5["hyena"] = true; dict6["hygeia"] = true; dict7["hygiene"] = true; dict4["hyla"] = true; dict7["hylidae"] = true; dict5["hymen"] = true; dict7["hymenal"] = true; dict5["hymie"] = true; dict4["hymn"] = true; dict6["hymnal"] = true; dict7["hymnary"] = true; dict7["hymnody"] = true; dict5["hyoid"] = true; dict7["hypatia"] = true; dict4["hype"] = true; dict7["hyperon"] = true; dict5["hypha"] = true; dict7["hyphema"] = true; dict6["hyphen"] = true; dict7["hypnoid"] = true; dict6["hypnos"] = true; dict4["hypo"] = true; dict7["hyponym"] = true; dict7["hypoxia"] = true; dict7["hypoxis"] = true; dict5["hyrax"] = true; dict5["hyson"] = true; dict6["hyssop"] = true; dict6["hytrin"] = true; dict6["i-beam"] = true; dict4["i.d."] = true; dict4["i.e."] = true; dict6["i.e.d."] = true; dict4["i.q."] = true; dict6["i.w.w."] = true; dict4["iaea"] = true; dict4["iago"] = true; dict4["iamb"] = true; dict6["iambic"] = true; dict6["iambus"] = true; dict5["ianfu"] = true; dict7["iapetus"] = true; dict6["ibadan"] = true; dict6["ibda-c"] = true; dict6["iberia"] = true; dict7["iberian"] = true; dict6["iberis"] = true; dict5["ibert"] = true; dict4["ibex"] = true; dict5["ibid."] = true; dict6["ibidem"] = true; dict4["ibis"] = true; dict7["ibrahim"] = true; dict4["ibrd"] = true; dict5["ibsen"] = true; dict5["icaco"] = true; dict4["icao"] = true; dict6["icarus"] = true; dict4["icbm"] = true; dict7["iceberg"] = true; dict7["iceboat"] = true; dict6["icebox"] = true; dict6["icecap"] = true; dict7["icefall"] = true; dict7["iceland"] = true; dict6["iceman"] = true; dict7["icepick"] = true; dict7["icetray"] = true; dict5["ichor"] = true; dict6["icicle"] = true; dict5["icily"] = true; dict7["iciness"] = true; dict5["icing"] = true; dict4["icky"] = true; dict4["icon"] = true; dict6["iconic"] = true; dict4["icsh"] = true; dict5["ictal"] = true; dict7["icteria"] = true; dict7["icteric"] = true; dict7["icterus"] = true; dict5["ictic"] = true; dict7["ictonyx"] = true; dict5["ictus"] = true; dict5["idaho"] = true; dict7["idahoan"] = true; dict4["iddm"] = true; dict4["idea"] = true; dict5["ideal"] = true; dict7["ideally"] = true; dict6["ideate"] = true; dict4["ides"] = true; dict6["idesia"] = true; dict6["idiocy"] = true; dict5["idiom"] = true; dict5["idiot"] = true; dict7["idiotic"] = true; dict4["idle"] = true; dict5["idler"] = true; dict6["idling"] = true; dict4["idly"] = true; dict4["idol"] = true; dict7["idolise"] = true; dict7["idolize"] = true; dict4["idun"] = true; dict4["idyl"] = true; dict5["idyll"] = true; dict7["idyllic"] = true; dict4["iffy"] = true; dict4["igbo"] = true; dict5["igigi"] = true; dict5["igloo"] = true; dict4["iglu"] = true; dict7["igneous"] = true; dict6["ignite"] = true; dict7["ignited"] = true; dict7["igniter"] = true; dict7["ignitor"] = true; dict7["ignoble"] = true; dict7["ignobly"] = true; dict6["ignore"] = true; dict7["ignored"] = true; dict6["iguana"] = true; dict7["iguania"] = true; dict7["iguanid"] = true; dict7["iguassu"] = true; dict6["iguazu"] = true; dict6["ijssel"] = true; dict7["ijtihad"] = true; dict4["ikon"] = true; dict5["ilama"] = true; dict7["ileitis"] = true; dict5["ileum"] = true; dict5["ileus"] = true; dict4["ilex"] = true; dict5["iliac"] = true; dict5["iliad"] = true; dict7["iliamna"] = true; dict5["ilion"] = true; dict5["ilium"] = true; dict7["ill-fed"] = true; dict7["ill-use"] = true; dict7["illampu"] = true; dict7["illegal"] = true; dict7["illicit"] = true; dict7["illness"] = true; dict7["illogic"] = true; dict6["illume"] = true; dict7["illyria"] = true; dict5["ilmen"] = true; dict7["ilosone"] = true; dict4["ilxx"] = true; dict5["ilxxx"] = true; dict5["image"] = true; dict7["imagery"] = true; dict7["imagine"] = true; dict7["imaging"] = true; dict7["imagism"] = true; dict5["imago"] = true; dict4["imam"] = true; dict6["imaret"] = true; dict5["imaum"] = true; dict7["imavate"] = true; dict7["imbauba"] = true; dict5["imbed"] = true; dict6["imbibe"] = true; dict7["imbiber"] = true; dict6["imbrue"] = true; dict5["imbue"] = true; dict5["imide"] = true; dict7["imitate"] = true; dict7["immense"] = true; dict7["immerse"] = true; dict5["immix"] = true; dict7["immoral"] = true; dict6["immune"] = true; dict6["immure"] = true; dict6["impact"] = true; dict6["impair"] = true; dict6["impala"] = true; dict6["impale"] = true; dict7["impanel"] = true; dict6["impart"] = true; dict7["impasse"] = true; dict7["impasto"] = true; dict7["impeach"] = true; dict6["impede"] = true; dict7["impeded"] = true; dict5["impel"] = true; dict6["impend"] = true; dict7["imperil"] = true; dict7["impetus"] = true; dict7["impiety"] = true; dict7["impinge"] = true; dict7["impious"] = true; dict6["impish"] = true; dict7["implant"] = true; dict7["implike"] = true; dict7["implode"] = true; dict7["implore"] = true; dict5["imply"] = true; dict6["import"] = true; dict6["impose"] = true; dict7["imposed"] = true; dict6["impost"] = true; dict7["impound"] = true; dict7["impress"] = true; dict7["imprint"] = true; dict7["improve"] = true; dict6["impugn"] = true; dict7["impulse"] = true; dict6["impure"] = true; dict6["impute"] = true; dict6["imuran"] = true; dict7["in-joke"] = true; dict6["in-law"] = true; dict7["in-situ"] = true; dict7["in-tray"] = true; dict7["inachis"] = true; dict5["inane"] = true; dict7["inanely"] = true; dict7["inanity"] = true; dict6["inanna"] = true; dict5["inapt"] = true; dict7["inboard"] = true; dict6["inborn"] = true; dict7["inbound"] = true; dict6["inbred"] = true; dict7["inbuilt"] = true; dict4["inca"] = true; dict5["incan"] = true; dict6["incase"] = true; dict7["incased"] = true; dict7["incense"] = true; dict6["incest"] = true; dict4["inch"] = true; dict7["incheon"] = true; dict6["inchon"] = true; dict6["incise"] = true; dict7["incised"] = true; dict7["incisor"] = true; dict6["incite"] = true; dict7["inciter"] = true; dict7["incline"] = true; dict7["inclose"] = true; dict7["include"] = true; dict6["income"] = true; dict7["inconel"] = true; dict7["incrust"] = true; dict7["incubus"] = true; dict5["incur"] = true; dict5["incus"] = true; dict6["indaba"] = true; dict6["indeed"] = true; dict6["indene"] = true; dict6["indent"] = true; dict7["inderal"] = true; dict5["index"] = true; dict7["indexer"] = true; dict5["india"] = true; dict6["indian"] = true; dict7["indiana"] = true; dict5["indic"] = true; dict6["indict"] = true; dict5["indie"] = true; dict7["indigen"] = true; dict6["indigo"] = true; dict6["indite"] = true; dict6["indium"] = true; dict7["indocin"] = true; dict6["indoor"] = true; dict7["indoors"] = true; dict7["indorse"] = true; dict5["indra"] = true; dict7["indrawn"] = true; dict5["indri"] = true; dict6["indris"] = true; dict6["induce"] = true; dict7["induced"] = true; dict7["inducer"] = true; dict6["induct"] = true; dict5["indue"] = true; dict7["indulge"] = true; dict5["indus"] = true; dict7["indwell"] = true; dict5["inept"] = true; dict7["ineptly"] = true; dict5["inert"] = true; dict7["inertia"] = true; dict7["inexact"] = true; dict6["infamy"] = true; dict7["infancy"] = true; dict6["infant"] = true; dict7["infarct"] = true; dict6["infect"] = true; dict5["infer"] = true; dict7["inferno"] = true; dict6["infest"] = true; dict7["infidel"] = true; dict7["infield"] = true; dict6["infirm"] = true; dict5["infix"] = true; dict7["inflame"] = true; dict7["inflate"] = true; dict7["inflect"] = true; dict7["inflict"] = true; dict6["inflow"] = true; dict6["influx"] = true; dict4["info"] = true; dict6["inform"] = true; dict5["infra"] = true; dict7["infract"] = true; dict6["infuse"] = true; dict4["inga"] = true; dict4["inge"] = true; dict7["ingenue"] = true; dict5["inger"] = true; dict6["ingest"] = true; dict7["ingesta"] = true; dict5["ingot"] = true; dict7["ingraft"] = true; dict7["ingrain"] = true; dict7["ingrate"] = true; dict6["ingres"] = true; dict7["ingress"] = true; dict7["ingrian"] = true; dict7["ingroup"] = true; dict7["ingrown"] = true; dict6["inguen"] = true; dict7["inhabit"] = true; dict6["inhale"] = true; dict7["inhaler"] = true; dict6["inhere"] = true; dict7["inherit"] = true; dict7["inhibit"] = true; dict7["inhuman"] = true; dict6["inhume"] = true; dict7["inhumed"] = true; dict5["inion"] = true; dict7["initial"] = true; dict6["inject"] = true; dict5["injun"] = true; dict6["injure"] = true; dict7["injured"] = true; dict6["injury"] = true; dict7["ink-jet"] = true; dict4["inka"] = true; dict7["inkblot"] = true; dict5["inkle"] = true; dict7["inkling"] = true; dict6["inkpad"] = true; dict6["inkpot"] = true; dict7["inkwell"] = true; dict4["inky"] = true; dict4["inla"] = true; dict6["inlaid"] = true; dict6["inland"] = true; dict5["inlay"] = true; dict5["inlet"] = true; dict7["inmarry"] = true; dict6["inmate"] = true; dict6["inmost"] = true; dict7["innards"] = true; dict6["innate"] = true; dict5["inner"] = true; dict6["inning"] = true; dict7["innings"] = true; dict6["inocor"] = true; dict7["inosine"] = true; dict6["inpour"] = true; dict5["input"] = true; dict7["inquest"] = true; dict7["inquire"] = true; dict7["inquiry"] = true; dict6["inroad"] = true; dict6["inrush"] = true; dict6["insane"] = true; dict6["insect"] = true; dict7["insecta"] = true; dict6["insert"] = true; dict5["inset"] = true; dict7["inshore"] = true; dict6["inside"] = true; dict7["insider"] = true; dict7["insight"] = true; dict7["insipid"] = true; dict6["insist"] = true; dict7["insofar"] = true; dict6["insole"] = true; dict6["inspan"] = true; dict7["inspect"] = true; dict7["inspire"] = true; dict4["inst"] = true; dict6["instal"] = true; dict7["install"] = true; dict7["instant"] = true; dict6["instar"] = true; dict7["instead"] = true; dict6["instep"] = true; dict6["instil"] = true; dict7["instill"] = true; dict7["insular"] = true; dict7["insulin"] = true; dict6["insult"] = true; dict6["insure"] = true; dict7["insured"] = true; dict7["insurer"] = true; dict6["intact"] = true; dict6["intake"] = true; dict7["integer"] = true; dict6["intend"] = true; dict7["intense"] = true; dict6["intent"] = true; dict5["inter"] = true; dict7["interim"] = true; dict6["intern"] = true; dict7["interne"] = true; dict4["inti"] = true; dict6["intima"] = true; dict7["intimal"] = true; dict6["intone"] = true; dict7["intoned"] = true; dict5["intro"] = true; dict7["introit"] = true; dict6["intron"] = true; dict7["intrude"] = true; dict7["intrust"] = true; dict6["intuit"] = true; dict5["inuit"] = true; dict5["inula"] = true; dict6["inulin"] = true; dict6["inunct"] = true; dict5["inure"] = true; dict6["inured"] = true; dict7["inutile"] = true; dict6["invade"] = true; dict7["invader"] = true; dict7["invalid"] = true; dict5["invar"] = true; dict7["inveigh"] = true; dict6["invent"] = true; dict7["inverse"] = true; dict6["invert"] = true; dict6["invest"] = true; dict7["invidia"] = true; dict6["invite"] = true; dict7["invitee"] = true; dict7["invoice"] = true; dict6["invoke"] = true; dict7["involve"] = true; dict6["inward"] = true; dict7["inwards"] = true; dict7["inweave"] = true; dict6["iodide"] = true; dict5["iodin"] = true; dict6["iodine"] = true; dict6["iodise"] = true; dict7["iodised"] = true; dict6["iodize"] = true; dict7["iodized"] = true; dict6["ionate"] = true; dict7["ionesco"] = true; dict5["ionia"] = true; dict6["ionian"] = true; dict5["ionic"] = true; dict6["ionise"] = true; dict7["ionised"] = true; dict6["ionize"] = true; dict7["ionized"] = true; dict4["iota"] = true; dict4["iowa"] = true; dict5["iowan"] = true; dict5["ioway"] = true; dict6["ipecac"] = true; dict6["ipidae"] = true; dict4["ipod"] = true; dict7["ipomoea"] = true; dict5["ipsus"] = true; dict4["irak"] = true; dict5["iraki"] = true; dict4["iran"] = true; dict5["irani"] = true; dict7["iranian"] = true; dict4["iraq"] = true; dict5["iraqi"] = true; dict5["irate"] = true; dict7["irately"] = true; dict6["ireful"] = true; dict7["ireland"] = true; dict5["irena"] = true; dict6["irenic"] = true; dict7["iresine"] = true; dict6["iridic"] = true; dict7["iridium"] = true; dict4["iris"] = true; dict5["irish"] = true; dict6["iritic"] = true; dict6["iritis"] = true; dict7["irksome"] = true; dict4["iron"] = true; dict6["ironed"] = true; dict6["ironic"] = true; dict7["ironing"] = true; dict7["ironist"] = true; dict7["ironman"] = true; dict5["irons"] = true; dict5["irony"] = true; dict6["irrupt"] = true; dict6["irtish"] = true; dict6["irtysh"] = true; dict5["irula"] = true; dict6["irving"] = true; dict5["isaac"] = true; dict6["isaiah"] = true; dict6["isatis"] = true; dict6["ischia"] = true; dict7["ischium"] = true; dict5["isere"] = true; dict6["iseult"] = true; dict7["isfahan"] = true; dict7["ishmael"] = true; dict6["ishtar"] = true; dict4["isis"] = true; dict6["iskcon"] = true; dict5["islam"] = true; dict7["islamic"] = true; dict6["island"] = true; dict5["islay"] = true; dict4["isle"] = true; dict5["islet"] = true; dict7["ismaili"] = true; dict6["isobar"] = true; dict7["isoetes"] = true; dict7["isogamy"] = true; dict6["isogon"] = true; dict7["isogone"] = true; dict7["isogram"] = true; dict6["isohel"] = true; dict7["isolate"] = true; dict6["isolde"] = true; dict6["isomer"] = true; dict6["isopod"] = true; dict7["isopoda"] = true; dict7["isoptin"] = true; dict7["isordil"] = true; dict7["isotope"] = true; dict6["israel"] = true; dict7["israeli"] = true; dict5["issue"] = true; dict6["issuer"] = true; dict7["issuing"] = true; dict5["issus"] = true; dict7["isthmus"] = true; dict7["isuprel"] = true; dict6["isurus"] = true; dict6["italia"] = true; dict7["italian"] = true; dict6["italic"] = true; dict5["italy"] = true; dict4["itch"] = true; dict7["itching"] = true; dict5["itchy"] = true; dict4["item"] = true; dict7["itemise"] = true; dict7["itemize"] = true; dict7["iterate"] = true; dict6["ithaca"] = true; dict6["ithaki"] = true; dict6["ithunn"] = true; dict6["ivanov"] = true; dict4["ives"] = true; dict5["ivied"] = true; dict5["ivory"] = true; dict4["ivry"] = true; dict4["ixia"] = true; dict6["ixodes"] = true; dict6["ixodid"] = true; dict4["iyar"] = true; dict5["iyyar"] = true; dict7["izanagi"] = true; dict7["izanami"] = true; dict4["izar"] = true; dict5["izmir"] = true; dict6["izzard"] = true; dict6["jabber"] = true; dict7["jabbing"] = true; dict6["jabiru"] = true; dict5["jabot"] = true; dict7["jacamar"] = true; dict7["jacinth"] = true; dict4["jack"] = true; dict6["jackal"] = true; dict7["jackass"] = true; dict7["jackdaw"] = true; dict6["jacket"] = true; dict7["jackpot"] = true; dict5["jacks"] = true; dict7["jackson"] = true; dict5["jacob"] = true; dict6["jacobi"] = true; dict7["jacobin"] = true; dict6["jacobs"] = true; dict7["jaconet"] = true; dict7["jaculus"] = true; dict4["jade"] = true; dict5["jaded"] = true; dict7["jadeite"] = true; dict6["jaeger"] = true; dict5["jafar"] = true; dict5["jaffa"] = true; dict6["jaffar"] = true; dict7["jagatai"] = true; dict7["jaggary"] = true; dict6["jagged"] = true; dict6["jagger"] = true; dict7["jaggery"] = true; dict5["jaggy"] = true; dict5["jagua"] = true; dict6["jaguar"] = true; dict6["jahvey"] = true; dict6["jahweh"] = true; dict4["jail"] = true; dict6["jailed"] = true; dict6["jailer"] = true; dict6["jailor"] = true; dict4["jain"] = true; dict7["jainism"] = true; dict7["jainist"] = true; dict7["jakarta"] = true; dict5["jakes"] = true; dict6["jalopy"] = true; dict7["jamaica"] = true; dict4["jamb"] = true; dict7["jambeau"] = true; dict6["jambon"] = true; dict6["jambos"] = true; dict7["jambosa"] = true; dict5["james"] = true; dict7["jamison"] = true; dict6["jamjar"] = true; dict6["jammed"] = true; dict6["jammer"] = true; dict7["jammies"] = true; dict7["jamming"] = true; dict7["jampack"] = true; dict6["jampan"] = true; dict6["jampot"] = true; dict6["jangle"] = true; dict6["jangly"] = true; dict7["janitor"] = true; dict6["jansen"] = true; dict7["january"] = true; dict5["janus"] = true; dict5["japan"] = true; dict4["jape"] = true; dict6["japery"] = true; dict7["japheth"] = true; dict6["jarful"] = true; dict6["jargon"] = true; dict7["jargoon"] = true; dict7["jarrell"] = true; dict7["jarring"] = true; dict7["jasmine"] = true; dict5["jason"] = true; dict6["jasper"] = true; dict7["jaspers"] = true; dict6["jassid"] = true; dict4["jati"] = true; dict5["jaunt"] = true; dict6["jaunty"] = true; dict4["java"] = true; dict5["javan"] = true; dict7["javelin"] = true; dict5["jawan"] = true; dict7["jawbone"] = true; dict5["jawed"] = true; dict7["jawfish"] = true; dict7["jawless"] = true; dict7["jaybird"] = true; dict7["jaywalk"] = true; dict4["jazz"] = true; dict7["jazzman"] = true; dict5["jazzy"] = true; dict4["jdam"] = true; dict7["jealous"] = true; dict4["jean"] = true; dict7["jed'dah"] = true; dict6["jeddah"] = true; dict4["jeep"] = true; dict4["jeer"] = true; dict6["jeerer"] = true; dict7["jeering"] = true; dict7["jeffers"] = true; dict5["jehad"] = true; dict7["jehovah"] = true; dict6["jejune"] = true; dict7["jejunum"] = true; dict4["jell"] = true; dict6["jell-o"] = true; dict7["jellaba"] = true; dict6["jelled"] = true; dict7["jellied"] = true; dict7["jellify"] = true; dict5["jello"] = true; dict5["jelly"] = true; dict5["jemmy"] = true; dict4["jena"] = true; dict6["jenner"] = true; dict6["jennet"] = true; dict5["jenny"] = true; dict6["jensen"] = true; dict6["jerboa"] = true; dict7["jerevan"] = true; dict5["jerez"] = true; dict7["jericho"] = true; dict4["jerk"] = true; dict6["jerker"] = true; dict7["jerkily"] = true; dict6["jerkin"] = true; dict7["jerking"] = true; dict5["jerky"] = true; dict6["jerome"] = true; dict5["jerry"] = true; dict6["jersey"] = true; dict4["jest"] = true; dict6["jester"] = true; dict7["jesting"] = true; dict6["jesuit"] = true; dict5["jesus"] = true; dict4["jeth"] = true; dict6["jetsam"] = true; dict7["jetting"] = true; dict5["jetty"] = true; dict6["jevons"] = true; dict7["jewbush"] = true; dict5["jewel"] = true; dict7["jeweled"] = true; dict7["jeweler"] = true; dict7["jewelry"] = true; dict6["jewess"] = true; dict7["jewfish"] = true; dict6["jewish"] = true; dict7["jewison"] = true; dict5["jewry"] = true; dict7["jezebel"] = true; dict4["jhvh"] = true; dict4["jiao"] = true; dict7["jibboom"] = true; dict4["jibe"] = true; dict5["jidda"] = true; dict6["jiddah"] = true; dict5["jiffy"] = true; dict7["jigaboo"] = true; dict6["jigger"] = true; dict6["jiggle"] = true; dict6["jigsaw"] = true; dict5["jihad"] = true; dict6["jihadi"] = true; dict7["jillion"] = true; dict4["jilt"] = true; dict6["jilted"] = true; dict7["jimenez"] = true; dict7["jimmies"] = true; dict5["jimmy"] = true; dict7["jinghpo"] = true; dict6["jingle"] = true; dict6["jingly"] = true; dict5["jingo"] = true; dict5["jinja"] = true; dict5["jinks"] = true; dict6["jinnah"] = true; dict6["jinnee"] = true; dict5["jinni"] = true; dict4["jinx"] = true; dict6["jinxed"] = true; dict5["jiqui"] = true; dict4["jird"] = true; dict5["jirga"] = true; dict7["jirrbal"] = true; dict6["jitney"] = true; dict6["jitter"] = true; dict7["jitters"] = true; dict7["jittery"] = true; dict4["jive"] = true; dict7["joachim"] = true; dict6["jobber"] = true; dict7["jobbery"] = true; dict7["jobless"] = true; dict7["jocasta"] = true; dict4["jock"] = true; dict6["jockey"] = true; dict6["jocose"] = true; dict6["jocote"] = true; dict7["jocular"] = true; dict6["jocund"] = true; dict7["jodhpur"] = true; dict4["joel"] = true; dict7["joewood"] = true; dict6["joffre"] = true; dict7["joffrey"] = true; dict6["jogger"] = true; dict7["jogging"] = true; dict6["joggle"] = true; dict4["john"] = true; dict6["johnny"] = true; dict5["johns"] = true; dict7["johnson"] = true; dict4["join"] = true; dict6["joined"] = true; dict6["joiner"] = true; dict7["joinery"] = true; dict7["joining"] = true; dict5["joint"] = true; dict7["jointed"] = true; dict7["jointer"] = true; dict7["jointly"] = true; dict5["joist"] = true; dict4["joke"] = true; dict5["joker"] = true; dict6["joking"] = true; dict6["joliet"] = true; dict6["joliot"] = true; dict7["jolliet"] = true; dict7["jollify"] = true; dict7["jollity"] = true; dict5["jolly"] = true; dict6["jolson"] = true; dict4["jolt"] = true; dict6["jolted"] = true; dict7["jolting"] = true; dict5["jolty"] = true; dict5["jonah"] = true; dict5["jones"] = true; dict4["jong"] = true; dict7["jonquil"] = true; dict6["jonson"] = true; dict4["jook"] = true; dict6["joplin"] = true; dict5["joppa"] = true; dict6["jordan"] = true; dict5["jorum"] = true; dict6["joseph"] = true; dict4["josh"] = true; dict6["joshua"] = true; dict4["joss"] = true; dict6["jostle"] = true; dict5["josue"] = true; dict6["jotter"] = true; dict7["jotting"] = true; dict5["jotun"] = true; dict6["jotunn"] = true; dict5["joule"] = true; dict6["jounce"] = true; dict7["journal"] = true; dict7["journey"] = true; dict5["joust"] = true; dict4["jove"] = true; dict6["jovial"] = true; dict6["jovian"] = true; dict6["jowett"] = true; dict4["jowl"] = true; dict5["jowly"] = true; dict5["joyce"] = true; dict6["joyful"] = true; dict7["joyless"] = true; dict6["joyous"] = true; dict7["joyride"] = true; dict6["juarez"] = true; dict7["jubilee"] = true; dict4["juda"] = true; dict6["judaea"] = true; dict5["judah"] = true; dict6["judaic"] = true; dict7["judaica"] = true; dict7["judaism"] = true; dict5["judas"] = true; dict6["judder"] = true; dict4["jude"] = true; dict5["judea"] = true; dict5["judge"] = true; dict6["judges"] = true; dict7["judging"] = true; dict6["judith"] = true; dict4["judo"] = true; dict6["jugale"] = true; dict6["jugful"] = true; dict6["juggle"] = true; dict7["juggler"] = true; dict7["juglans"] = true; dict7["jugular"] = true; dict5["juice"] = true; dict6["juicer"] = true; dict5["juicy"] = true; dict7["jujitsu"] = true; dict4["juju"] = true; dict6["jujube"] = true; dict7["jujutsu"] = true; dict4["juke"] = true; dict7["jukebox"] = true; dict5["julep"] = true; dict6["julian"] = true; dict4["july"] = true; dict6["jumbal"] = true; dict6["jumble"] = true; dict7["jumbled"] = true; dict5["jumbo"] = true; dict6["jument"] = true; dict4["jump"] = true; dict6["jumper"] = true; dict7["jumping"] = true; dict5["jumpy"] = true; dict5["junco"] = true; dict6["juncus"] = true; dict4["june"] = true; dict6["juneau"] = true; dict4["jung"] = true; dict7["jungian"] = true; dict6["jungle"] = true; dict6["jungly"] = true; dict6["junior"] = true; dict7["juniper"] = true; dict4["junk"] = true; dict6["junker"] = true; dict7["junkers"] = true; dict6["junket"] = true; dict6["junkie"] = true; dict5["junky"] = true; dict4["juno"] = true; dict5["junta"] = true; dict5["junto"] = true; dict6["jupati"] = true; dict6["jupaty"] = true; dict7["jupiter"] = true; dict5["jural"] = true; dict7["juridic"] = true; dict6["jurist"] = true; dict5["juror"] = true; dict4["jury"] = true; dict7["juryman"] = true; dict7["jussieu"] = true; dict4["just"] = true; dict7["justice"] = true; dict7["justify"] = true; dict6["justly"] = true; dict4["jute"] = true; dict6["jutish"] = true; dict7["jutland"] = true; dict7["jutting"] = true; dict7["juvenal"] = true; dict7["jylland"] = true; dict4["jynx"] = true; dict5["k-lor"] = true; dict6["k-lyte"] = true; dict7["k-meson"] = true; dict4["k.e."] = true; dict5["kaaba"] = true; dict6["kabala"] = true; dict7["kabbala"] = true; dict5["kabob"] = true; dict7["kabolin"] = true; dict5["kabul"] = true; dict4["kach"] = true; dict6["kachin"] = true; dict7["kachina"] = true; dict5["kadai"] = true; dict7["kadikoy"] = true; dict6["kaffir"] = true; dict5["kafir"] = true; dict6["kafiri"] = true; dict5["kafka"] = true; dict7["kafocin"] = true; dict6["kaftan"] = true; dict6["kahlua"] = true; dict4["kahn"] = true; dict4["kail"] = true; dict7["kainite"] = true; dict6["kaiser"] = true; dict7["kakatoe"] = true; dict4["kaki"] = true; dict4["kale"] = true; dict7["kalemia"] = true; dict4["kali"] = true; dict6["kalian"] = true; dict5["kalif"] = true; dict7["kalinin"] = true; dict6["kaliph"] = true; dict5["kalka"] = true; dict5["kalki"] = true; dict6["kalmia"] = true; dict6["kalpac"] = true; dict6["kaluga"] = true; dict7["kam-sui"] = true; dict7["kam-tai"] = true; dict4["kama"] = true; dict5["kamba"] = true; dict6["kameez"] = true; dict5["kamet"] = true; dict4["kami"] = true; dict5["kamia"] = true; dict7["kampala"] = true; dict7["kampong"] = true; dict5["kanaf"] = true; dict7["kananga"] = true; dict6["kanara"] = true; dict7["kanawha"] = true; dict7["kanchil"] = true; dict5["kandy"] = true; dict7["kannada"] = true; dict5["kansa"] = true; dict6["kansan"] = true; dict6["kansas"] = true; dict5["kansu"] = true; dict4["kant"] = true; dict7["kantian"] = true; dict7["kantrex"] = true; dict5["kanzu"] = true; dict6["kaolin"] = true; dict7["kaoline"] = true; dict4["kaon"] = true; dict7["kapeika"] = true; dict4["kaph"] = true; dict5["kapok"] = true; dict5["kappa"] = true; dict7["kapsiki"] = true; dict6["kapuka"] = true; dict5["kaput"] = true; dict7["karachi"] = true; dict7["karakul"] = true; dict7["karaoke"] = true; dict5["karat"] = true; dict6["karate"] = true; dict7["karbala"] = true; dict7["karelia"] = true; dict5["karen"] = true; dict7["karenic"] = true; dict7["karloff"] = true; dict5["karma"] = true; dict5["karok"] = true; dict6["karpov"] = true; dict6["kartik"] = true; dict6["karyon"] = true; dict5["kasai"] = true; dict6["kasbah"] = true; dict5["kasha"] = true; dict6["kashag"] = true; dict7["kashmir"] = true; dict7["kassite"] = true; dict7["kastler"] = true; dict5["katar"] = true; dict6["katari"] = true; dict7["katsina"] = true; dict7["katydid"] = true; dict5["kauai"] = true; dict7["kaufman"] = true; dict6["kaunas"] = true; dict6["kaunda"] = true; dict5["kauri"] = true; dict5["kaury"] = true; dict4["kava"] = true; dict6["kavrin"] = true; dict6["kawaka"] = true; dict5["kayak"] = true; dict4["kayo"] = true; dict6["kayoed"] = true; dict5["kazak"] = true; dict6["kazakh"] = true; dict5["kazan"] = true; dict5["kazoo"] = true; dict4["kbit"] = true; dict4["kean"] = true; dict6["keaton"] = true; dict5["keats"] = true; dict5["kebab"] = true; dict5["keble"] = true; dict6["kechua"] = true; dict7["kechuan"] = true; dict4["keel"] = true; dict6["keeled"] = true; dict7["keelson"] = true; dict4["keen"] = true; dict6["keenly"] = true; dict4["keep"] = true; dict6["keeper"] = true; dict7["keeping"] = true; dict6["keflex"] = true; dict6["keflin"] = true; dict6["keftab"] = true; dict6["kegful"] = true; dict7["keister"] = true; dict6["kekchi"] = true; dict6["kekule"] = true; dict6["keller"] = true; dict7["kellogg"] = true; dict5["kelly"] = true; dict6["keloid"] = true; dict4["kelp"] = true; dict6["kelpie"] = true; dict5["kelpy"] = true; dict4["kelt"] = true; dict6["kelter"] = true; dict6["kelvin"] = true; dict5["kempt"] = true; dict5["kenaf"] = true; dict7["kenalog"] = true; dict6["kendal"] = true; dict7["kendall"] = true; dict7["kendrew"] = true; dict6["kennan"] = true; dict7["kennedy"] = true; dict6["kennel"] = true; dict7["kenning"] = true; dict4["keno"] = true; dict4["kent"] = true; dict6["kentan"] = true; dict7["kentish"] = true; dict5["kenya"] = true; dict6["kenyan"] = true; dict7["kenyata"] = true; dict6["keokuk"] = true; dict4["kepi"] = true; dict6["kepler"] = true; dict4["kept"] = true; dict4["kera"] = true; dict7["keratin"] = true; dict4["kerb"] = true; dict7["kerbala"] = true; dict7["kerbela"] = true; dict6["kerion"] = true; dict4["kern"] = true; dict6["kernel"] = true; dict7["kernite"] = true; dict7["kerouac"] = true; dict7["kerugma"] = true; dict7["kerygma"] = true; dict5["kesey"] = true; dict7["kestrel"] = true; dict7["ketalar"] = true; dict5["ketch"] = true; dict7["ketchup"] = true; dict6["ketone"] = true; dict6["ketose"] = true; dict7["ketosis"] = true; dict6["kettle"] = true; dict7["ketubim"] = true; dict7["keycard"] = true; dict5["keyed"] = true; dict7["keyhole"] = true; dict7["keyless"] = true; dict6["keynes"] = true; dict7["keynote"] = true; dict6["keypad"] = true; dict7["khadafy"] = true; dict7["khaddar"] = true; dict5["khadi"] = true; dict5["khaki"] = true; dict6["khakis"] = true; dict6["khalif"] = true; dict6["khalka"] = true; dict7["khalkha"] = true; dict6["khalsa"] = true; dict5["khama"] = true; dict7["khamsin"] = true; dict6["khamti"] = true; dict4["khan"] = true; dict7["khanate"] = true; dict6["khanty"] = true; dict7["kharkiv"] = true; dict7["kharkov"] = true; dict4["khat"] = true; dict5["khaya"] = true; dict7["khedive"] = true; dict7["khepera"] = true; dict7["khesari"] = true; dict6["khimar"] = true; dict5["khios"] = true; dict5["khmer"] = true; dict7["khoisan"] = true; dict5["khoum"] = true; dict6["khowar"] = true; dict5["khuen"] = true; dict5["khufu"] = true; dict7["khukuri"] = true; dict5["kiaat"] = true; dict5["kiang"] = true; dict7["kibbitz"] = true; dict6["kibble"] = true; dict7["kibbutz"] = true; dict4["kibe"] = true; dict7["kibibit"] = true; dict5["kibit"] = true; dict6["kibitz"] = true; dict6["kibosh"] = true; dict7["kichaga"] = true; dict6["kichai"] = true; dict4["kick"] = true; dict6["kicker"] = true; dict7["kicking"] = true; dict7["kickoff"] = true; dict4["kidd"] = true; dict5["kiddy"] = true; dict6["kidnap"] = true; dict6["kidney"] = true; dict7["kidskin"] = true; dict4["kiev"] = true; dict6["kigali"] = true; dict4["kike"] = true; dict7["kildeer"] = true; dict5["kiley"] = true; dict6["kiliwa"] = true; dict6["kiliwi"] = true; dict4["kill"] = true; dict6["killer"] = true; dict7["killing"] = true; dict7["killjoy"] = true; dict4["kiln"] = true; dict4["kilo"] = true; dict7["kilobit"] = true; dict7["kiloton"] = true; dict6["kilroy"] = true; dict4["kilt"] = true; dict6["kilter"] = true; dict6["kimono"] = true; dict4["kina"] = true; dict6["kinase"] = true; dict4["kind"] = true; dict5["kinda"] = true; dict6["kindle"] = true; dict7["kindled"] = true; dict6["kindly"] = true; dict7["kindred"] = true; dict4["kine"] = true; dict7["kinesis"] = true; dict7["kinetic"] = true; dict7["kinfolk"] = true; dict4["king"] = true; dict7["kingcup"] = true; dict7["kingdom"] = true; dict7["kinglet"] = true; dict6["kingly"] = true; dict7["kingpin"] = true; dict5["kinin"] = true; dict4["kink"] = true; dict5["kinky"] = true; dict4["kino"] = true; dict6["kinsey"] = true; dict7["kinship"] = true; dict7["kinsman"] = true; dict5["kiosk"] = true; dict5["kiowa"] = true; dict7["kipling"] = true; dict6["kipper"] = true; dict7["kirghiz"] = true; dict6["kirgiz"] = true; dict4["kirk"] = true; dict6["kirkia"] = true; dict6["kirkuk"] = true; dict6["kirpan"] = true; dict6["kirsch"] = true; dict6["kirtle"] = true; dict6["kishar"] = true; dict6["kishke"] = true; dict6["kislev"] = true; dict6["kismat"] = true; dict6["kismet"] = true; dict4["kiss"] = true; dict6["kisser"] = true; dict7["kissing"] = true; dict6["kisumu"] = true; dict6["kitbag"] = true; dict7["kitchen"] = true; dict4["kite"] = true; dict4["kith"] = true; dict6["kitsch"] = true; dict7["kitschy"] = true; dict6["kittee"] = true; dict6["kitten"] = true; dict6["kittul"] = true; dict5["kitty"] = true; dict5["kitul"] = true; dict4["kivu"] = true; dict4["kiwi"] = true; dict7["klamath"] = true; dict4["klan"] = true; dict7["klavern"] = true; dict7["klavier"] = true; dict6["klaxon"] = true; dict4["klee"] = true; dict7["kleenex"] = true; dict5["klein"] = true; dict6["kleist"] = true; dict5["klick"] = true; dict5["klimt"] = true; dict5["kline"] = true; dict6["klotho"] = true; dict6["kludge"] = true; dict5["klutz"] = true; dict6["kluxer"] = true; dict4["km/h"] = true; dict5["knack"] = true; dict7["knacker"] = true; dict4["knap"] = true; dict5["knave"] = true; dict7["knavery"] = true; dict7["knavish"] = true; dict5["knawe"] = true; dict6["knawel"] = true; dict5["knead"] = true; dict4["knee"] = true; dict7["knee-hi"] = true; dict7["kneecap"] = true; dict5["kneel"] = true; dict7["kneeler"] = true; dict7["kneepan"] = true; dict5["knell"] = true; dict7["knesset"] = true; dict5["knife"] = true; dict6["knight"] = true; dict5["knish"] = true; dict4["knit"] = true; dict7["knitted"] = true; dict7["knitter"] = true; dict4["knob"] = true; dict7["knobbed"] = true; dict7["knobble"] = true; dict7["knobbly"] = true; dict6["knobby"] = true; dict5["knock"] = true; dict7["knocker"] = true; dict5["knoll"] = true; dict7["knossos"] = true; dict4["knot"] = true; dict7["knotted"] = true; dict6["knotty"] = true; dict5["knout"] = true; dict4["know"] = true; dict6["knower"] = true; dict7["knowing"] = true; dict5["known"] = true; dict4["knox"] = true; dict7["knuckle"] = true; dict6["knucks"] = true; dict4["knut"] = true; dict4["ko'd"] = true; dict5["koala"] = true; dict4["koan"] = true; dict7["koasati"] = true; dict4["kobe"] = true; dict4["kobo"] = true; dict5["kobus"] = true; dict4["koch"] = true; dict6["kochia"] = true; dict6["kodiak"] = true; dict7["koellia"] = true; dict5["kogia"] = true; dict4["kohl"] = true; dict5["koine"] = true; dict5["kokka"] = true; dict4["kola"] = true; dict5["kolam"] = true; dict6["kolami"] = true; dict7["kolkata"] = true; dict7["kolkhoz"] = true; dict4["koln"] = true; dict7["kolonia"] = true; dict4["komi"] = true; dict7["konakri"] = true; dict5["kongo"] = true; dict6["konini"] = true; dict5["konoe"] = true; dict6["konoye"] = true; dict6["koodoo"] = true; dict4["kook"] = true; dict6["kookie"] = true; dict5["kooky"] = true; dict6["kopeck"] = true; dict5["kopek"] = true; dict7["kopiyka"] = true; dict5["kopje"] = true; dict6["koppie"] = true; dict5["koran"] = true; dict7["koranic"] = true; dict6["korbut"] = true; dict5["korda"] = true; dict4["kore"] = true; dict5["korea"] = true; dict6["korean"] = true; dict6["koruna"] = true; dict6["kosher"] = true; dict6["kosovo"] = true; dict4["kota"] = true; dict5["kotar"] = true; dict5["kotex"] = true; dict4["koto"] = true; dict6["kotoko"] = true; dict5["kotow"] = true; dict6["koudou"] = true; dict7["koumiss"] = true; dict5["kovna"] = true; dict5["kovno"] = true; dict6["koweit"] = true; dict6["kowhai"] = true; dict6["kowtow"] = true; dict5["kraal"] = true; dict5["kraft"] = true; dict5["krait"] = true; dict6["krakau"] = true; dict6["krakow"] = true; dict7["krasner"] = true; dict5["kraut"] = true; dict5["krebs"] = true; dict7["kremlin"] = true; dict6["krigia"] = true; dict5["krill"] = true; dict4["kris"] = true; dict7["krishna"] = true; dict5["kriti"] = true; dict7["kroeber"] = true; dict5["krona"] = true; dict5["krone"] = true; dict5["kroon"] = true; dict5["kroto"] = true; dict5["krubi"] = true; dict6["kruger"] = true; dict5["krupp"] = true; dict7["krypton"] = true; dict7["kubrick"] = true; dict7["kuchean"] = true; dict5["kudos"] = true; dict4["kudu"] = true; dict5["kudzu"] = true; dict7["kuenlun"] = true; dict4["kuhn"] = true; dict6["kuiper"] = true; dict4["kuki"] = true; dict5["kulun"] = true; dict6["kumasi"] = true; dict5["kumis"] = true; dict6["kummel"] = true; dict7["kumquat"] = true; dict6["kunlun"] = true; dict7["kunzite"] = true; dict4["kura"] = true; dict7["kurchee"] = true; dict6["kurchi"] = true; dict4["kurd"] = true; dict7["kurdish"] = true; dict6["kurrat"] = true; dict5["kursk"] = true; dict5["kurta"] = true; dict4["kuru"] = true; dict5["kurus"] = true; dict5["kurux"] = true; dict5["kusan"] = true; dict5["kutch"] = true; dict7["kutuzov"] = true; dict6["kuvasz"] = true; dict4["kuvi"] = true; dict6["kuwait"] = true; dict7["kuwaiti"] = true; dict7["kuznets"] = true; dict5["kvass"] = true; dict6["kvetch"] = true; dict5["kw-hr"] = true; dict6["kwacha"] = true; dict4["kwai"] = true; dict7["kwangju"] = true; dict7["kwannon"] = true; dict6["kwanza"] = true; dict7["kwanzaa"] = true; dict5["kweek"] = true; dict5["kwela"] = true; dict5["kwell"] = true; dict7["kyanite"] = true; dict4["kyat"] = true; dict5["kylie"] = true; dict5["kylix"] = true; dict5["kyoto"] = true; dict6["kyushu"] = true; dict5["kyyiv"] = true; dict6["l-dopa"] = true; dict7["l-plate"] = true; dict6["laager"] = true; dict5["laban"] = true; dict5["label"] = true; dict7["labeled"] = true; dict6["labial"] = true; dict7["labiate"] = true; dict6["labile"] = true; dict6["labium"] = true; dict6["lablab"] = true; dict7["lablink"] = true; dict5["labor"] = true; dict7["labored"] = true; dict7["laborer"] = true; dict6["labour"] = true; dict4["lace"] = true; dict5["laced"] = true; dict7["lacepod"] = true; dict5["lacer"] = true; dict7["lacerta"] = true; dict6["lacing"] = true; dict4["lack"] = true; dict6["lackey"] = true; dict7["lacking"] = true; dict7["laconia"] = true; dict7["laconic"] = true; dict7["lacquer"] = true; dict7["lactaid"] = true; dict7["lactase"] = true; dict7["lactate"] = true; dict7["lacteal"] = true; dict6["lactic"] = true; dict7["lactose"] = true; dict7["lactuca"] = true; dict6["lacuna"] = true; dict4["lacy"] = true; dict7["ladanum"] = true; dict6["ladder"] = true; dict6["laddie"] = true; dict4["lade"] = true; dict5["laden"] = true; dict7["ladened"] = true; dict5["ladin"] = true; dict6["lading"] = true; dict6["ladino"] = true; dict5["ladle"] = true; dict6["ladoga"] = true; dict4["lady"] = true; dict7["ladybug"] = true; dict6["laelia"] = true; dict7["laertes"] = true; dict6["laffer"] = true; dict7["laffite"] = true; dict7["lafitte"] = true; dict5["lagan"] = true; dict6["lagend"] = true; dict5["lager"] = true; dict7["laggard"] = true; dict6["lagger"] = true; dict7["lagging"] = true; dict7["lagodon"] = true; dict6["lagoon"] = true; dict7["lagopus"] = true; dict5["lagos"] = true; dict6["laguna"] = true; dict6["lagune"] = true; dict5["lahar"] = true; dict6["lahore"] = true; dict4["lahu"] = true; dict4["laic"] = true; dict7["laicise"] = true; dict7["laicize"] = true; dict4["laid"] = true; dict4["lair"] = true; dict5["laird"] = true; dict5["laity"] = true; dict5["laius"] = true; dict4["lake"] = true; dict4["lakh"] = true; dict6["lakota"] = true; dict7["lakshmi"] = true; dict7["lallans"] = true; dict5["lally"] = true; dict4["lama"] = true; dict7["lamaism"] = true; dict7["lamaist"] = true; dict7["lamarck"] = true; dict4["lamb"] = true; dict7["lambast"] = true; dict6["lambda"] = true; dict7["lambent"] = true; dict7["lambert"] = true; dict6["lambis"] = true; dict7["lambkin"] = true; dict4["lame"] = true; dict6["lamedh"] = true; dict7["lamella"] = true; dict6["lamely"] = true; dict6["lament"] = true; dict5["lamia"] = true; dict6["lamina"] = true; dict7["laminal"] = true; dict7["laminar"] = true; dict7["lamisil"] = true; dict6["lamium"] = true; dict6["lammas"] = true; dict5["lamna"] = true; dict4["lamp"] = true; dict7["lamplit"] = true; dict7["lampoon"] = true; dict7["lamprey"] = true; dict7["lampris"] = true; dict5["lanai"] = true; dict6["lanate"] = true; dict5["lance"] = true; dict6["lancer"] = true; dict7["lancers"] = true; dict6["lancet"] = true; dict7["lanchou"] = true; dict7["lanchow"] = true; dict4["land"] = true; dict6["landau"] = true; dict6["landed"] = true; dict6["lander"] = true; dict7["landing"] = true; dict7["landler"] = true; dict7["landman"] = true; dict4["lane"] = true; dict5["laney"] = true; dict5["lange"] = true; dict7["langley"] = true; dict7["langsat"] = true; dict7["langset"] = true; dict7["langtry"] = true; dict7["languid"] = true; dict7["languor"] = true; dict6["langur"] = true; dict7["laniard"] = true; dict7["laniary"] = true; dict6["lanius"] = true; dict4["lank"] = true; dict5["lanky"] = true; dict7["lanolin"] = true; dict7["lanoxin"] = true; dict5["lansa"] = true; dict6["lansat"] = true; dict6["lanseh"] = true; dict6["lanset"] = true; dict7["lansing"] = true; dict7["lantana"] = true; dict7["lantern"] = true; dict6["lanugo"] = true; dict7["lanyard"] = true; dict7["lanzhou"] = true; dict7["lao-tse"] = true; dict7["lao-tzu"] = true; dict6["lao-zi"] = true; dict7["laocoon"] = true; dict4["laos"] = true; dict7["laotian"] = true; dict6["lapdog"] = true; dict5["lapel"] = true; dict6["lapful"] = true; dict5["lapin"] = true; dict7["laplace"] = true; dict7["lapland"] = true; dict4["lapp"] = true; dict6["lappet"] = true; dict6["lappic"] = true; dict7["lapping"] = true; dict7["lappish"] = true; dict7["lappula"] = true; dict5["lapse"] = true; dict6["lapsed"] = true; dict7["lapsing"] = true; dict6["laptop"] = true; dict6["laputa"] = true; dict7["laputan"] = true; dict7["lapwing"] = true; dict7["laramie"] = true; dict7["larceny"] = true; dict5["larch"] = true; dict4["lard"] = true; dict6["larder"] = true; dict7["lardner"] = true; dict6["laredo"] = true; dict5["large"] = true; dict7["largely"] = true; dict6["larger"] = true; dict7["largess"] = true; dict7["largish"] = true; dict5["largo"] = true; dict4["lari"] = true; dict6["lariat"] = true; dict5["larid"] = true; dict7["laridae"] = true; dict6["larium"] = true; dict5["larix"] = true; dict4["lark"] = true; dict4["larn"] = true; dict7["larotid"] = true; dict6["larrea"] = true; dict6["larrup"] = true; dict5["larus"] = true; dict5["larva"] = true; dict6["larval"] = true; dict6["larynx"] = true; dict7["lasagna"] = true; dict7["lasagne"] = true; dict7["lasalle"] = true; dict6["lascar"] = true; dict7["lascaux"] = true; dict5["lasek"] = true; dict5["laser"] = true; dict4["lash"] = true; dict7["lash-up"] = true; dict6["lasher"] = true; dict7["lashing"] = true; dict5["lasik"] = true; dict5["lasix"] = true; dict4["lass"] = true; dict5["lassa"] = true; dict6["lassie"] = true; dict5["lasso"] = true; dict4["last"] = true; dict6["lastex"] = true; dict7["lasting"] = true; dict6["lastly"] = true; dict7["latakia"] = true; dict5["latch"] = true; dict7["latchet"] = true; dict4["late"] = true; dict6["lateen"] = true; dict6["lately"] = true; dict7["latency"] = true; dict6["latent"] = true; dict5["later"] = true; dict7["lateral"] = true; dict7["lateran"] = true; dict5["lates"] = true; dict6["latest"] = true; dict5["latex"] = true; dict4["lath"] = true; dict5["lathe"] = true; dict6["lathee"] = true; dict6["lather"] = true; dict7["lathery"] = true; dict5["lathi"] = true; dict5["latin"] = true; dict7["latinae"] = true; dict6["latino"] = true; dict6["latish"] = true; dict6["latium"] = true; dict5["latke"] = true; dict6["latona"] = true; dict6["latria"] = true; dict7["latrine"] = true; dict7["latrobe"] = true; dict4["lats"] = true; dict5["latte"] = true; dict6["latten"] = true; dict6["latter"] = true; dict7["lattice"] = true; dict6["latvia"] = true; dict7["latvian"] = true; dict4["laud"] = true; dict6["lauder"] = true; dict5["laudo"] = true; dict5["laugh"] = true; dict7["laugher"] = true; dict7["lauhala"] = true; dict6["launce"] = true; dict6["launch"] = true; dict7["launder"] = true; dict7["laundry"] = true; dict6["laurel"] = true; dict7["laurels"] = true; dict7["laurens"] = true; dict6["laurus"] = true; dict4["lava"] = true; dict6["lavabo"] = true; dict6["lavage"] = true; dict4["lave"] = true; dict5["laver"] = true; dict6["lavish"] = true; dict6["lawful"] = true; dict7["lawless"] = true; dict6["lawman"] = true; dict4["lawn"] = true; dict4["laws"] = true; dict7["lawsuit"] = true; dict6["lawton"] = true; dict6["lawyer"] = true; dict6["laxity"] = true; dict5["laxly"] = true; dict7["laxness"] = true; dict6["lay-by"] = true; dict6["lay-up"] = true; dict5["layby"] = true; dict5["layer"] = true; dict7["layered"] = true; dict7["layette"] = true; dict5["layia"] = true; dict6["laying"] = true; dict6["layman"] = true; dict6["layoff"] = true; dict6["layout"] = true; dict7["layover"] = true; dict5["layup"] = true; dict5["lazar"] = true; dict7["lazaret"] = true; dict7["lazarus"] = true; dict4["laze"] = true; dict6["lazily"] = true; dict5["lazio"] = true; dict6["lazuli"] = true; dict4["lazy"] = true; dict4["lbf."] = true; dict5["leach"] = true; dict7["leacock"] = true; dict4["lead"] = true; dict7["lead-in"] = true; dict6["leaded"] = true; dict6["leaden"] = true; dict6["leader"] = true; dict7["leaders"] = true; dict7["leading"] = true; dict4["leaf"] = true; dict7["leafage"] = true; dict6["leafed"] = true; dict7["leafing"] = true; dict7["leaflet"] = true; dict5["leafy"] = true; dict6["league"] = true; dict4["leak"] = true; dict7["leakage"] = true; dict6["leaker"] = true; dict6["leakey"] = true; dict5["leaky"] = true; dict4["leal"] = true; dict4["lean"] = true; dict7["lean-to"] = true; dict7["leander"] = true; dict6["leaner"] = true; dict7["leaning"] = true; dict4["leap"] = true; dict6["leaper"] = true; dict7["leaping"] = true; dict4["lear"] = true; dict5["learn"] = true; dict7["learned"] = true; dict7["learner"] = true; dict5["leary"] = true; dict5["lease"] = true; dict6["leased"] = true; dict5["leash"] = true; dict5["least"] = true; dict7["leather"] = true; dict5["leave"] = true; dict6["leaved"] = true; dict6["leaven"] = true; dict6["leaver"] = true; dict7["leaving"] = true; dict7["lebanon"] = true; dict4["lech"] = true; dict6["lecher"] = true; dict7["lechery"] = true; dict6["lechwe"] = true; dict7["lectern"] = true; dict6["lectin"] = true; dict6["lector"] = true; dict7["lecture"] = true; dict4["leda"] = true; dict4["lede"] = true; dict5["ledge"] = true; dict6["ledger"] = true; dict5["ledum"] = true; dict5["leech"] = true; dict7["leechee"] = true; dict5["leeds"] = true; dict4["leek"] = true; dict4["leer"] = true; dict7["leering"] = true; dict5["leery"] = true; dict4["lees"] = true; dict7["leeward"] = true; dict6["leeway"] = true; dict4["left"] = true; dict7["leftish"] = true; dict7["leftism"] = true; dict7["leftist"] = true; dict5["lefty"] = true; dict6["legacy"] = true; dict5["legal"] = true; dict7["legally"] = true; dict6["legate"] = true; dict7["legatee"] = true; dict6["legato"] = true; dict6["legend"] = true; dict5["leger"] = true; dict6["legged"] = true; dict7["legging"] = true; dict5["leggy"] = true; dict7["leghorn"] = true; dict7["legible"] = true; dict7["legibly"] = true; dict6["leging"] = true; dict6["legion"] = true; dict7["legless"] = true; dict7["leglike"] = true; dict4["lego"] = true; dict4["legs"] = true; dict6["legume"] = true; dict5["lehar"] = true; dict7["leibniz"] = true; dict6["leiden"] = true; dict5["leigh"] = true; dict6["leipoa"] = true; dict7["leipzig"] = true; dict7["leister"] = true; dict7["leisure"] = true; dict6["lekvar"] = true; dict5["lemma"] = true; dict7["lemming"] = true; dict6["lemmon"] = true; dict6["lemmus"] = true; dict5["lemna"] = true; dict6["lemnos"] = true; dict5["lemon"] = true; dict6["lemony"] = true; dict7["lempira"] = true; dict5["lemur"] = true; dict4["lena"] = true; dict6["lenard"] = true; dict4["lend"] = true; dict6["lender"] = true; dict7["lending"] = true; dict5["lendl"] = true; dict6["length"] = true; dict7["lengthy"] = true; dict7["lenient"] = true; dict6["lenify"] = true; dict5["lenin"] = true; dict6["lenity"] = true; dict6["lennon"] = true; dict4["lens"] = true; dict5["lense"] = true; dict7["lensman"] = true; dict4["lent"] = true; dict6["lenten"] = true; dict6["lentia"] = true; dict6["lentic"] = true; dict7["lentigo"] = true; dict6["lentil"] = true; dict7["lentisk"] = true; dict5["lento"] = true; dict4["leon"] = true; dict7["leonard"] = true; dict5["leone"] = true; dict7["leonine"] = true; dict7["leopard"] = true; dict7["leotard"] = true; dict7["lepanto"] = true; dict5["lepas"] = true; dict5["leper"] = true; dict7["lepiota"] = true; dict7["lepisma"] = true; dict7["lepomis"] = true; dict7["leporid"] = true; dict5["leppy"] = true; dict7["leprose"] = true; dict7["leprosy"] = true; dict7["leprous"] = true; dict6["lepton"] = true; dict5["lepus"] = true; dict7["leresis"] = true; dict6["lerner"] = true; dict5["lerot"] = true; dict7["lesbian"] = true; dict6["lesbos"] = true; dict6["lescol"] = true; dict6["lesion"] = true; dict7["lesotho"] = true; dict4["less"] = true; dict6["lessee"] = true; dict6["lessen"] = true; dict7["lesseps"] = true; dict6["lesser"] = true; dict7["lessing"] = true; dict6["lesson"] = true; dict6["lessor"] = true; dict6["lesvos"] = true; dict5["letch"] = true; dict7["letdown"] = true; dict6["lethal"] = true; dict5["lethe"] = true; dict4["leto"] = true; dict6["letter"] = true; dict7["letters"] = true; dict7["letting"] = true; dict7["lettish"] = true; dict7["lettuce"] = true; dict5["letup"] = true; dict7["leucine"] = true; dict7["leucoma"] = true; dict7["leuctra"] = true; dict7["leukoma"] = true; dict6["levant"] = true; dict7["levator"] = true; dict5["levee"] = true; dict5["level"] = true; dict7["leveler"] = true; dict5["lever"] = true; dict7["leveret"] = true; dict4["levi"] = true; dict6["levi's"] = true; dict5["levis"] = true; dict6["levite"] = true; dict7["levitra"] = true; dict6["levity"] = true; dict4["levy"] = true; dict4["lewd"] = true; dict6["lewdly"] = true; dict5["lewis"] = true; dict7["lewisia"] = true; dict6["lexeme"] = true; dict7["lexical"] = true; dict7["lexicon"] = true; dict5["lexis"] = true; dict6["leyden"] = true; dict6["leymus"] = true; dict5["leyte"] = true; dict5["lhasa"] = true; dict6["lhotse"] = true; dict6["liable"] = true; dict6["liaise"] = true; dict7["liaison"] = true; dict5["liana"] = true; dict4["liao"] = true; dict4["liar"] = true; dict7["liatris"] = true; dict6["libber"] = true; dict5["libby"] = true; dict5["libel"] = true; dict7["libeler"] = true; dict7["liberal"] = true; dict7["liberia"] = true; dict7["liberty"] = true; dict6["libido"] = true; dict5["libra"] = true; dict7["library"] = true; dict7["librate"] = true; dict7["librium"] = true; dict5["libya"] = true; dict6["libyan"] = true; dict7["licence"] = true; dict7["license"] = true; dict6["lichee"] = true; dict6["lichen"] = true; dict5["lichi"] = true; dict5["licit"] = true; dict7["licitly"] = true; dict4["lick"] = true; dict6["licked"] = true; dict7["licking"] = true; dict5["lidar"] = true; dict6["lidded"] = true; dict7["lidless"] = true; dict4["lido"] = true; dict6["lie-in"] = true; dict4["lied"] = true; dict4["lief"] = true; dict5["liege"] = true; dict4["lien"] = true; dict6["lienal"] = true; dict7["liepaja"] = true; dict7["lietuva"] = true; dict4["lieu"] = true; dict4["life"] = true; dict5["lifer"] = true; dict4["lifo"] = true; dict4["lift"] = true; dict6["lifted"] = true; dict6["lifter"] = true; dict7["liftman"] = true; dict7["liftoff"] = true; dict5["ligan"] = true; dict6["ligand"] = true; dict6["ligate"] = true; dict5["liger"] = true; dict5["light"] = true; dict7["lighted"] = true; dict7["lighten"] = true; dict7["lighter"] = true; dict7["lightly"] = true; dict5["ligne"] = true; dict7["lignify"] = true; dict6["lignin"] = true; dict7["lignite"] = true; dict6["lignum"] = true; dict6["ligule"] = true; dict7["liguria"] = true; dict4["liii"] = true; dict7["likable"] = true; dict4["like"] = true; dict5["liked"] = true; dict6["likely"] = true; dict5["liken"] = true; dict6["liking"] = true; dict6["likuta"] = true; dict5["lilac"] = true; dict6["lilith"] = true; dict6["lilium"] = true; dict5["lille"] = true; dict6["lillie"] = true; dict4["lilo"] = true; dict4["lilt"] = true; dict7["lilting"] = true; dict4["lily"] = true; dict4["lima"] = true; dict5["liman"] = true; dict7["limanda"] = true; dict5["limax"] = true; dict4["limb"] = true; dict6["limbed"] = true; dict6["limber"] = true; dict7["limbers"] = true; dict6["limbic"] = true; dict5["limbo"] = true; dict6["limbus"] = true; dict4["lime"] = true; dict7["limeade"] = true; dict7["limeira"] = true; dict5["limen"] = true; dict5["limey"] = true; dict5["limit"] = true; dict7["limited"] = true; dict7["limiter"] = true; dict4["limn"] = true; dict6["limner"] = true; dict7["limning"] = true; dict6["limnos"] = true; dict4["limo"] = true; dict6["limosa"] = true; dict4["limp"] = true; dict5["limpa"] = true; dict6["limper"] = true; dict6["limpet"] = true; dict6["limpid"] = true; dict7["limping"] = true; dict7["limpkin"] = true; dict6["limply"] = true; dict7["limpopo"] = true; dict7["limulus"] = true; dict5["linac"] = true; dict6["linage"] = true; dict7["linaria"] = true; dict7["lincoln"] = true; dict4["lind"] = true; dict7["lindane"] = true; dict6["linden"] = true; dict7["lindera"] = true; dict7["lindsay"] = true; dict5["lindy"] = true; dict4["line"] = true; dict7["lineage"] = true; dict6["lineal"] = true; dict6["linear"] = true; dict7["linecut"] = true; dict5["lined"] = true; dict7["lineman"] = true; dict7["linemen"] = true; dict5["linen"] = true; dict5["liner"] = true; dict6["lineup"] = true; dict4["ling"] = true; dict6["lingam"] = true; dict7["lingcod"] = true; dict6["linger"] = true; dict5["lingo"] = true; dict6["lingua"] = true; dict7["lingual"] = true; dict5["linin"] = true; dict6["lining"] = true; dict4["link"] = true; dict7["linkage"] = true; dict7["linkboy"] = true; dict6["linked"] = true; dict7["linkman"] = true; dict5["links"] = true; dict6["linkup"] = true; dict7["linnaea"] = true; dict7["linnean"] = true; dict6["linnet"] = true; dict4["lino"] = true; dict7["linocut"] = true; dict7["linseed"] = true; dict4["lint"] = true; dict6["lintel"] = true; dict5["linum"] = true; dict7["linuron"] = true; dict5["linux"] = true; dict4["linz"] = true; dict6["liomys"] = true; dict4["lion"] = true; dict7["lioness"] = true; dict6["lionet"] = true; dict7["lionise"] = true; dict7["lionize"] = true; dict7["liparis"] = true; dict6["lipase"] = true; dict7["lipemia"] = true; dict7["lipfern"] = true; dict5["lipid"] = true; dict6["lipide"] = true; dict7["lipitor"] = true; dict7["lipless"] = true; dict7["liplike"] = true; dict7["lipmann"] = true; dict6["lipoid"] = true; dict6["lipoma"] = true; dict6["lipped"] = true; dict5["lippi"] = true; dict7["lipread"] = true; dict7["liquefy"] = true; dict7["liqueur"] = true; dict6["liquid"] = true; dict7["liquify"] = true; dict6["liquor"] = true; dict4["lira"] = true; dict7["liriope"] = true; dict6["lisboa"] = true; dict6["lisbon"] = true; dict5["lisle"] = true; dict4["lisp"] = true; dict6["lisper"] = true; dict6["lissom"] = true; dict7["lissome"] = true; dict4["list"] = true; dict6["listed"] = true; dict6["listen"] = true; dict6["lister"] = true; dict7["listera"] = true; dict7["listing"] = true; dict6["liston"] = true; dict4["lisu"] = true; dict5["liszt"] = true; dict6["litany"] = true; dict5["litas"] = true; dict7["litchee"] = true; dict6["litchi"] = true; dict4["lite"] = true; dict5["liter"] = true; dict7["literal"] = true; dict7["lithane"] = true; dict5["lithe"] = true; dict6["lithic"] = true; dict7["lithium"] = true; dict7["lithops"] = true; dict6["litmus"] = true; dict7["litoral"] = true; dict7["litotes"] = true; dict5["litre"] = true; dict6["litter"] = true; dict6["little"] = true; dict7["littler"] = true; dict6["littre"] = true; dict7["liturgy"] = true; dict7["livable"] = true; dict4["live"] = true; dict6["livedo"] = true; dict6["lively"] = true; dict5["liven"] = true; dict5["liver"] = true; dict6["livery"] = true; dict5["livid"] = true; dict7["lividly"] = true; dict6["living"] = true; dict7["livonia"] = true; dict4["livy"] = true; dict4["liza"] = true; dict6["lizard"] = true; dict5["llama"] = true; dict5["llano"] = true; dict5["lloyd"] = true; dict4["llud"] = true; dict4["llyr"] = true; dict5["loach"] = true; dict4["load"] = true; dict6["loaded"] = true; dict6["loader"] = true; dict7["loading"] = true; dict5["loads"] = true; dict4["loaf"] = true; dict6["loafer"] = true; dict7["loafing"] = true; dict4["loam"] = true; dict5["loamy"] = true; dict4["loan"] = true; dict6["loaner"] = true; dict7["loaning"] = true; dict5["loasa"] = true; dict5["loath"] = true; dict6["loathe"] = true; dict7["loather"] = true; dict7["loathly"] = true; dict5["lobar"] = true; dict6["lobata"] = true; dict6["lobate"] = true; dict7["lobated"] = true; dict5["lobby"] = true; dict4["lobe"] = true; dict5["lobed"] = true; dict7["lobefin"] = true; dict7["lobelia"] = true; dict7["lobipes"] = true; dict6["lobito"] = true; dict7["lobotes"] = true; dict7["lobster"] = true; dict7["lobular"] = true; dict6["lobule"] = true; dict7["lobworm"] = true; dict5["local"] = true; dict6["locale"] = true; dict7["locally"] = true; dict6["locate"] = true; dict7["located"] = true; dict7["locater"] = true; dict7["locator"] = true; dict4["loch"] = true; dict6["lochia"] = true; dict4["lock"] = true; dict7["lockage"] = true; dict7["lockbox"] = true; dict5["locke"] = true; dict6["locker"] = true; dict6["locket"] = true; dict7["locking"] = true; dict7["lockjaw"] = true; dict7["lockman"] = true; dict7["locknut"] = true; dict7["lockout"] = true; dict6["lockup"] = true; dict4["loco"] = true; dict7["locoism"] = true; dict6["locule"] = true; dict7["loculus"] = true; dict5["locum"] = true; dict5["locus"] = true; dict6["locust"] = true; dict7["locusta"] = true; dict4["lode"] = true; dict5["lodge"] = true; dict6["lodger"] = true; dict7["lodging"] = true; dict6["lodine"] = true; dict4["lodz"] = true; dict4["loeb"] = true; dict5["loess"] = true; dict5["loewe"] = true; dict5["loewi"] = true; dict7["lofoten"] = true; dict4["loft"] = true; dict7["loftily"] = true; dict5["lofty"] = true; dict6["log-in"] = true; dict5["logan"] = true; dict7["logania"] = true; dict7["logbook"] = true; dict4["loge"] = true; dict6["logger"] = true; dict6["loggia"] = true; dict7["logging"] = true; dict5["logic"] = true; dict7["logical"] = true; dict6["logion"] = true; dict6["logjam"] = true; dict4["logo"] = true; dict5["logos"] = true; dict7["logroll"] = true; dict7["logrono"] = true; dict7["logwood"] = true; dict4["logy"] = true; dict5["lohan"] = true; dict4["loin"] = true; dict5["loins"] = true; dict4["loir"] = true; dict5["loire"] = true; dict6["loiter"] = true; dict4["loki"] = true; dict6["loligo"] = true; dict6["lolita"] = true; dict6["lolium"] = true; dict4["loll"] = true; dict6["lollop"] = true; dict5["lolly"] = true; dict4["lolo"] = true; dict7["loloish"] = true; dict7["lomatia"] = true; dict7["lombard"] = true; dict4["lome"] = true; dict6["loment"] = true; dict7["lomotil"] = true; dict5["lonas"] = true; dict6["london"] = true; dict4["lone"] = true; dict6["lonely"] = true; dict5["loner"] = true; dict4["long"] = true; dict6["longan"] = true; dict7["longbow"] = true; dict6["longer"] = true; dict7["longest"] = true; dict7["longing"] = true; dict7["longish"] = true; dict6["longyi"] = true; dict7["loniten"] = true; dict6["lontar"] = true; dict5["loofa"] = true; dict6["loofah"] = true; dict4["look"] = true; dict6["looker"] = true; dict7["looking"] = true; dict7["lookout"] = true; dict6["lookup"] = true; dict4["loom"] = true; dict4["loon"] = true; dict6["looney"] = true; dict6["loonie"] = true; dict5["loony"] = true; dict4["loop"] = true; dict6["looper"] = true; dict7["looping"] = true; dict5["loopy"] = true; dict4["loos"] = true; dict5["loose"] = true; dict7["loosely"] = true; dict6["loosen"] = true; dict4["loot"] = true; dict6["looted"] = true; dict6["looter"] = true; dict7["looting"] = true; dict4["lope"] = true; dict7["lophius"] = true; dict5["lopid"] = true; dict6["lopper"] = true; dict6["loquat"] = true; dict5["lorca"] = true; dict7["lorchel"] = true; dict4["lord"] = true; dict6["lordly"] = true; dict4["lore"] = true; dict7["lorelei"] = true; dict5["loren"] = true; dict7["lorentz"] = true; dict6["lorenz"] = true; dict6["lorfan"] = true; dict6["lorica"] = true; dict5["lorre"] = true; dict5["lorry"] = true; dict4["lory"] = true; dict4["lose"] = true; dict5["loser"] = true; dict7["losings"] = true; dict4["loss"] = true; dict6["losses"] = true; dict5["lossy"] = true; dict4["lost"] = true; dict4["lota"] = true; dict4["loth"] = true; dict4["loti"] = true; dict5["lotic"] = true; dict6["lotion"] = true; dict4["lots"] = true; dict5["lotte"] = true; dict7["lottery"] = true; dict5["lotto"] = true; dict5["lotus"] = true; dict6["louche"] = true; dict4["loud"] = true; dict6["louden"] = true; dict6["loudly"] = true; dict5["lough"] = true; dict5["louis"] = true; dict6["lounge"] = true; dict7["lounger"] = true; dict5["loupe"] = true; dict4["lour"] = true; dict5["louse"] = true; dict5["lousy"] = true; dict4["lout"] = true; dict7["loutish"] = true; dict6["louvar"] = true; dict6["louver"] = true; dict6["louvre"] = true; dict7["lovable"] = true; dict6["lovage"] = true; dict4["love"] = true; dict5["loved"] = true; dict6["lovell"] = true; dict6["lovely"] = true; dict5["lover"] = true; dict7["loverly"] = true; dict6["loving"] = true; dict5["lovoa"] = true; dict7["low-cal"] = true; dict7["low-cut"] = true; dict7["low-key"] = true; dict7["low-set"] = true; dict5["lowan"] = true; dict7["lowball"] = true; dict7["lowborn"] = true; dict6["lowboy"] = true; dict7["lowbred"] = true; dict7["lowbrow"] = true; dict6["lowell"] = true; dict5["lower"] = true; dict7["lowered"] = true; dict6["lowest"] = true; dict7["lowland"] = true; dict7["lowlife"] = true; dict5["lowly"] = true; dict7["lowness"] = true; dict5["lowry"] = true; dict6["lowset"] = true; dict5["loxia"] = true; dict6["loxoma"] = true; dict5["loyal"] = true; dict7["loyally"] = true; dict7["loyalty"] = true; dict6["loyang"] = true; dict6["loyola"] = true; dict5["lozal"] = true; dict7["lozenge"] = true; dict6["lozier"] = true; dict4["ltd."] = true; dict4["ltte"] = true; dict6["luanda"] = true; dict4["luau"] = true; dict4["luba"] = true; dict6["lubber"] = true; dict7["lubbock"] = true; dict4["lube"] = true; dict6["lubeck"] = true; dict6["lublin"] = true; dict7["lucania"] = true; dict5["lucas"] = true; dict4["luce"] = true; dict6["lucent"] = true; dict7["lucerne"] = true; dict5["lucid"] = true; dict7["lucidly"] = true; dict7["lucifer"] = true; dict7["lucilia"] = true; dict6["lucite"] = true; dict4["luck"] = true; dict7["luckily"] = true; dict7["lucknow"] = true; dict5["lucky"] = true; dict5["lucre"] = true; dict7["luculus"] = true; dict4["lucy"] = true; dict4["luda"] = true; dict7["luddite"] = true; dict6["ludian"] = true; dict4["ludo"] = true; dict4["lues"] = true; dict4["luff"] = true; dict5["luffa"] = true; dict6["lufkin"] = true; dict7["luganda"] = true; dict4["luge"] = true; dict5["luger"] = true; dict7["luggage"] = true; dict6["lugger"] = true; dict4["lugh"] = true; dict6["luging"] = true; dict6["lugosi"] = true; dict7["lugsail"] = true; dict7["lugworm"] = true; dict4["luik"] = true; dict4["luke"] = true; dict4["lull"] = true; dict7["lullaby"] = true; dict5["lulli"] = true; dict5["lully"] = true; dict4["lulu"] = true; dict7["lumbago"] = true; dict6["lumbar"] = true; dict6["lumber"] = true; dict6["lumbus"] = true; dict5["lumen"] = true; dict7["luminal"] = true; dict5["lumma"] = true; dict6["lummox"] = true; dict4["lump"] = true; dict6["lumpen"] = true; dict6["lumper"] = true; dict7["lumpish"] = true; dict5["lumpy"] = true; dict4["luna"] = true; dict6["lunacy"] = true; dict5["lunar"] = true; dict7["lunaria"] = true; dict6["lunate"] = true; dict7["lunatic"] = true; dict5["lunch"] = true; dict7["luncher"] = true; dict4["lund"] = true; dict5["lunda"] = true; dict7["lunette"] = true; dict4["lung"] = true; dict5["lunge"] = true; dict6["lungen"] = true; dict6["lunger"] = true; dict5["lungi"] = true; dict6["lungyi"] = true; dict4["lunt"] = true; dict6["lunula"] = true; dict6["lunule"] = true; dict7["luoyang"] = true; dict5["lupin"] = true; dict6["lupine"] = true; dict7["lupinus"] = true; dict5["lupus"] = true; dict5["lurch"] = true; dict7["lurcher"] = true; dict4["lure"] = true; dict5["lurid"] = true; dict7["luridly"] = true; dict4["lurk"] = true; dict6["lurker"] = true; dict6["lusaka"] = true; dict4["lush"] = true; dict6["lushun"] = true; dict4["lust"] = true; dict6["luster"] = true; dict7["lustful"] = true; dict7["lustily"] = true; dict6["lustre"] = true; dict7["lustrum"] = true; dict5["lusty"] = true; dict4["luta"] = true; dict4["lute"] = true; dict6["luteal"] = true; dict6["lutein"] = true; dict7["lutfisk"] = true; dict6["luther"] = true; dict7["luthier"] = true; dict6["luting"] = true; dict6["lutist"] = true; dict5["lutra"] = true; dict7["lutyens"] = true; dict6["lutzen"] = true; dict7["luvarus"] = true; dict6["luvian"] = true; dict6["luwian"] = true; dict6["luxate"] = true; dict4["luxe"] = true; dict5["luxor"] = true; dict7["luxuria"] = true; dict6["luxury"] = true; dict5["luyia"] = true; dict5["luzon"] = true; dict4["lvii"] = true; dict5["lviii"] = true; dict4["lwei"] = true; dict4["lxii"] = true; dict5["lxiii"] = true; dict4["lxiv"] = true; dict4["lxvi"] = true; dict5["lxvii"] = true; dict6["lxviii"] = true; dict4["lxxi"] = true; dict5["lxxii"] = true; dict6["lxxiii"] = true; dict5["lxxiv"] = true; dict4["lxxv"] = true; dict5["lxxvi"] = true; dict6["lxxvii"] = true; dict7["lxxviii"] = true; dict4["lxxx"] = true; dict5["lxxxi"] = true; dict6["lxxxii"] = true; dict7["lxxxiii"] = true; dict6["lxxxiv"] = true; dict5["lxxxv"] = true; dict6["lxxxvi"] = true; dict7["lxxxvii"] = true; dict7["lycaena"] = true; dict7["lycaeon"] = true; dict5["lycee"] = true; dict6["lyceum"] = true; dict6["lychee"] = true; dict7["lychnis"] = true; dict5["lycia"] = true; dict6["lycian"] = true; dict6["lycium"] = true; dict7["lycopod"] = true; dict7["lycopus"] = true; dict6["lycosa"] = true; dict5["lydia"] = true; dict6["lydian"] = true; dict7["lygaeid"] = true; dict5["lygus"] = true; dict5["lying"] = true; dict4["lyly"] = true; dict5["lymph"] = true; dict5["lynch"] = true; dict4["lynx"] = true; dict4["lyon"] = true; dict6["lyonia"] = true; dict5["lyons"] = true; dict4["lyra"] = true; dict6["lyrate"] = true; dict4["lyre"] = true; dict5["lyric"] = true; dict7["lyrical"] = true; dict6["lyrist"] = true; dict7["lyrurus"] = true; dict7["lysenko"] = true; dict5["lysin"] = true; dict6["lysine"] = true; dict5["lysis"] = true; dict5["lysol"] = true; dict5["lyssa"] = true; dict7["lythrum"] = true; dict6["lytton"] = true; dict4["m.m."] = true; dict5["ma'am"] = true; dict6["maalox"] = true; dict4["maar"] = true; dict7["macabre"] = true; dict6["macaca"] = true; dict7["macadam"] = true; dict7["macamba"] = true; dict5["macao"] = true; dict7["macaque"] = true; dict5["macau"] = true; dict5["macaw"] = true; dict7["macbeth"] = true; dict4["mace"] = true; dict7["macedon"] = true; dict5["macer"] = true; dict4["mach"] = true; dict7["machete"] = true; dict7["machine"] = true; dict5["macho"] = true; dict4["mack"] = true; dict6["mackem"] = true; dict6["mackle"] = true; dict7["macleod"] = true; dict7["maclura"] = true; dict5["macon"] = true; dict6["macoun"] = true; dict7["macrame"] = true; dict5["macro"] = true; dict6["macron"] = true; dict6["macula"] = true; dict6["macule"] = true; dict7["macumba"] = true; dict6["madake"] = true; dict5["madam"] = true; dict6["madame"] = true; dict6["madcap"] = true; dict6["madden"] = true; dict6["madder"] = true; dict4["made"] = true; dict7["made-up"] = true; dict7["madeira"] = true; dict5["madia"] = true; dict7["madison"] = true; dict5["madly"] = true; dict6["madman"] = true; dict6["madnep"] = true; dict7["madness"] = true; dict7["madonna"] = true; dict7["madoqua"] = true; dict6["madras"] = true; dict7["madrasa"] = true; dict6["madrid"] = true; dict7["madrona"] = true; dict7["madrono"] = true; dict7["madwort"] = true; dict6["maenad"] = true; dict7["maestro"] = true; dict4["mafa"] = true; dict6["maffia"] = true; dict5["mafia"] = true; dict7["mafioso"] = true; dict7["magenta"] = true; dict6["maggot"] = true; dict7["maggoty"] = true; dict4["magh"] = true; dict5["magha"] = true; dict7["maghreb"] = true; dict4["magi"] = true; dict5["magic"] = true; dict7["magical"] = true; dict6["magilp"] = true; dict7["maginot"] = true; dict6["maglev"] = true; dict5["magma"] = true; dict7["magnate"] = true; dict6["magnet"] = true; dict7["magneto"] = true; dict7["magnify"] = true; dict6["magnum"] = true; dict6["magpie"] = true; dict6["maguey"] = true; dict5["magus"] = true; dict6["magyar"] = true; dict4["maha"] = true; dict7["mahagua"] = true; dict5["mahan"] = true; dict7["mahatma"] = true; dict5["mahdi"] = true; dict7["mahdism"] = true; dict7["mahdist"] = true; dict7["mahgrib"] = true; dict7["mahican"] = true; dict7["mahjong"] = true; dict6["mahler"] = true; dict5["mahoe"] = true; dict7["mahomet"] = true; dict7["mahonia"] = true; dict7["mahound"] = true; dict6["mahout"] = true; dict7["mahuang"] = true; dict4["maia"] = true; dict4["maid"] = true; dict6["maiden"] = true; dict7["maidism"] = true; dict5["maidu"] = true; dict6["maiger"] = true; dict6["maigre"] = true; dict6["maikoa"] = true; dict4["mail"] = true; dict7["mailbag"] = true; dict7["mailbox"] = true; dict6["mailed"] = true; dict6["mailer"] = true; dict7["mailing"] = true; dict7["maillol"] = true; dict7["maillot"] = true; dict7["mailman"] = true; dict4["maim"] = true; dict6["maimed"] = true; dict6["maimer"] = true; dict4["main"] = true; dict5["maine"] = true; dict6["mainer"] = true; dict6["mainly"] = true; dict5["maize"] = true; dict4["maja"] = true; dict7["majagua"] = true; dict7["majesty"] = true; dict7["majidae"] = true; dict5["major"] = true; dict7["majorca"] = true; dict6["majors"] = true; dict7["makaira"] = true; dict6["makalu"] = true; dict4["make"] = true; dict7["make-do"] = true; dict7["make-up"] = true; dict5["maker"] = true; dict6["makeup"] = true; dict5["makin"] = true; dict6["making"] = true; dict4["mako"] = true; dict6["malabo"] = true; dict7["malacca"] = true; dict7["malachi"] = true; dict7["malacia"] = true; dict6["malady"] = true; dict6["malaga"] = true; dict7["malaise"] = true; dict7["malamud"] = true; dict7["malanga"] = true; dict5["malar"] = true; dict7["malaria"] = true; dict7["malarky"] = true; dict6["malawi"] = true; dict7["malaxis"] = true; dict5["malay"] = true; dict6["malaya"] = true; dict7["malayan"] = true; dict6["maldon"] = true; dict4["male"] = true; dict7["maleate"] = true; dict7["malefic"] = true; dict5["maleo"] = true; dict4["mali"] = true; dict6["malian"] = true; dict6["malice"] = true; dict6["malign"] = true; dict5["malik"] = true; dict4["mall"] = true; dict7["mallard"] = true; dict6["mallee"] = true; dict6["mallet"] = true; dict7["malleus"] = true; dict6["mallon"] = true; dict6["mallow"] = true; dict5["malmo"] = true; dict7["malmsey"] = true; dict7["malodor"] = true; dict6["malone"] = true; dict6["malope"] = true; dict6["malory"] = true; dict7["malosma"] = true; dict7["malraux"] = true; dict4["mals"] = true; dict4["malt"] = true; dict5["malta"] = true; dict6["malted"] = true; dict7["maltese"] = true; dict6["maltha"] = true; dict7["malthus"] = true; dict5["malti"] = true; dict7["maltman"] = true; dict5["malto"] = true; dict7["maltose"] = true; dict5["malus"] = true; dict5["malva"] = true; dict4["mama"] = true; dict5["mamba"] = true; dict5["mambo"] = true; dict5["mamet"] = true; dict5["mamey"] = true; dict7["mamilla"] = true; dict5["mamma"] = true; dict6["mammal"] = true; dict7["mammary"] = true; dict6["mammea"] = true; dict6["mammee"] = true; dict6["mammon"] = true; dict7["mammoth"] = true; dict6["mammut"] = true; dict5["mammy"] = true; dict4["mamo"] = true; dict7["manacle"] = true; dict6["manage"] = true; dict7["manager"] = true; dict7["managua"] = true; dict7["manakin"] = true; dict6["manama"] = true; dict6["manana"] = true; dict5["manat"] = true; dict7["manatee"] = true; dict6["manchu"] = true; dict5["manda"] = true; dict7["mandala"] = true; dict7["mandara"] = true; dict7["mandate"] = true; dict5["mande"] = true; dict7["mandean"] = true; dict7["mandela"] = true; dict7["mandioc"] = true; dict7["mandola"] = true; dict7["mandrel"] = true; dict7["mandril"] = true; dict7["manduca"] = true; dict4["mane"] = true; dict5["manes"] = true; dict5["manet"] = true; dict6["manful"] = true; dict5["mange"] = true; dict6["manger"] = true; dict6["mangey"] = true; dict7["mangily"] = true; dict6["mangle"] = true; dict7["mangled"] = true; dict7["mangler"] = true; dict5["mango"] = true; dict7["mangold"] = true; dict5["mangy"] = true; dict7["manhole"] = true; dict7["manhood"] = true; dict7["manhunt"] = true; dict5["mania"] = true; dict6["maniac"] = true; dict5["manic"] = true; dict7["manidae"] = true; dict7["manihot"] = true; dict7["manikin"] = true; dict6["manila"] = true; dict7["manilla"] = true; dict6["manioc"] = true; dict7["manioca"] = true; dict7["manipur"] = true; dict5["manis"] = true; dict7["mankato"] = true; dict7["mankind"] = true; dict5["manky"] = true; dict7["manlike"] = true; dict5["manly"] = true; dict4["mann"] = true; dict5["manna"] = true; dict6["manned"] = true; dict6["manner"] = true; dict7["manners"] = true; dict7["mannish"] = true; dict5["manor"] = true; dict6["manpad"] = true; dict6["manque"] = true; dict7["manroot"] = true; dict7["mansard"] = true; dict7["mansart"] = true; dict5["manse"] = true; dict5["mansi"] = true; dict7["mansion"] = true; dict6["manson"] = true; dict5["manta"] = true; dict6["mantel"] = true; dict7["mantell"] = true; dict6["mantic"] = true; dict6["mantid"] = true; dict6["mantis"] = true; dict6["mantle"] = true; dict7["mantled"] = true; dict7["mantlet"] = true; dict6["mantra"] = true; dict7["mantrap"] = true; dict6["mantua"] = true; dict6["manual"] = true; dict5["manul"] = true; dict7["manumit"] = true; dict6["manure"] = true; dict5["manus"] = true; dict4["manx"] = true; dict4["many"] = true; dict7["manzoni"] = true; dict4["maoi"] = true; dict6["maoism"] = true; dict6["maoist"] = true; dict5["maori"] = true; dict5["maple"] = true; dict6["mapper"] = true; dict7["mapping"] = true; dict6["maputo"] = true; dict6["maquis"] = true; dict4["mara"] = true; dict7["marabou"] = true; dict6["maraca"] = true; dict7["maracay"] = true; dict6["maraco"] = true; dict6["marang"] = true; dict7["maranta"] = true; dict7["marasca"] = true; dict5["marat"] = true; dict7["maratha"] = true; dict7["marathi"] = true; dict6["maraud"] = true; dict6["marble"] = true; dict7["marbled"] = true; dict7["marbles"] = true; dict4["marc"] = true; dict7["marceau"] = true; dict6["marcel"] = true; dict5["march"] = true; dict6["marche"] = true; dict7["marcher"] = true; dict7["marches"] = true; dict7["marconi"] = true; dict7["marcuse"] = true; dict6["marduk"] = true; dict4["mare"] = true; dict7["marengo"] = true; dict7["margate"] = true; dict6["margay"] = true; dict5["marge"] = true; dict6["margin"] = true; dict7["margosa"] = true; dict4["mari"] = true; dict5["maria"] = true; dict6["marian"] = true; dict7["marimba"] = true; dict6["marina"] = true; dict6["marine"] = true; dict7["mariner"] = true; dict7["marines"] = true; dict6["marini"] = true; dict6["marino"] = true; dict7["marital"] = true; dict4["mark"] = true; dict6["marked"] = true; dict6["marker"] = true; dict6["market"] = true; dict7["markhor"] = true; dict7["marking"] = true; dict6["markka"] = true; dict7["markoff"] = true; dict6["markov"] = true; dict7["markova"] = true; dict5["marks"] = true; dict6["markup"] = true; dict4["marl"] = true; dict6["marley"] = true; dict6["marlin"] = true; dict7["marline"] = true; dict7["marlite"] = true; dict7["marlowe"] = true; dict5["marly"] = true; dict7["marmara"] = true; dict7["marmite"] = true; dict7["marmora"] = true; dict6["marmot"] = true; dict7["marmota"] = true; dict5["maroc"] = true; dict6["maroon"] = true; dict7["marplan"] = true; dict6["marque"] = true; dict7["marquee"] = true; dict7["marquis"] = true; dict7["marrano"] = true; dict6["marred"] = true; dict5["marri"] = true; dict7["married"] = true; dict6["marrow"] = true; dict5["marry"] = true; dict4["mars"] = true; dict7["marsala"] = true; dict5["marsh"] = true; dict7["marshal"] = true; dict6["marshy"] = true; dict7["marstan"] = true; dict4["mart"] = true; dict6["marten"] = true; dict6["martes"] = true; dict5["marti"] = true; dict7["martial"] = true; dict7["martian"] = true; dict6["martin"] = true; dict7["martini"] = true; dict6["martyr"] = true; dict5["marum"] = true; dict6["marumi"] = true; dict6["marupa"] = true; dict5["marut"] = true; dict6["marvel"] = true; dict7["marvell"] = true; dict4["marx"] = true; dict7["marxism"] = true; dict7["marxist"] = true; dict4["mary"] = true; dict4["masa"] = true; dict5["masai"] = true; dict7["mascara"] = true; dict6["mascot"] = true; dict5["maser"] = true; dict6["maseru"] = true; dict4["mash"] = true; dict6["masher"] = true; dict7["mashhad"] = true; dict5["mashi"] = true; dict6["mashie"] = true; dict7["mashriq"] = true; dict6["masjid"] = true; dict4["mask"] = true; dict6["masked"] = true; dict6["masker"] = true; dict7["masking"] = true; dict5["mason"] = true; dict7["masonic"] = true; dict7["masonry"] = true; dict6["masora"] = true; dict7["masorah"] = true; dict6["masoud"] = true; dict6["masqat"] = true; dict6["masque"] = true; dict7["masquer"] = true; dict4["mass"] = true; dict7["massage"] = true; dict7["massawa"] = true; dict5["masse"] = true; dict6["masses"] = true; dict7["masseur"] = true; dict6["massif"] = true; dict7["massine"] = true; dict7["massive"] = true; dict4["mast"] = true; dict7["mastaba"] = true; dict6["masted"] = true; dict6["master"] = true; dict7["masters"] = true; dict7["mastery"] = true; dict6["mastic"] = true; dict7["mastiff"] = true; dict7["mastoid"] = true; dict7["matador"] = true; dict5["matai"] = true; dict7["matakam"] = true; dict5["match"] = true; dict7["matched"] = true; dict7["matcher"] = true; dict7["matchet"] = true; dict7["matchup"] = true; dict4["mate"] = true; dict5["mated"] = true; dict5["mater"] = true; dict5["mates"] = true; dict5["matey"] = true; dict4["math"] = true; dict7["mathias"] = true; dict5["maths"] = true; dict7["matinee"] = true; dict6["mating"] = true; dict6["matins"] = true; dict7["matisse"] = true; dict6["matman"] = true; dict7["matoaka"] = true; dict6["matric"] = true; dict6["matrix"] = true; dict6["matron"] = true; dict4["matt"] = true; dict7["matt-up"] = true; dict5["matte"] = true; dict6["matted"] = true; dict6["matter"] = true; dict7["matthew"] = true; dict7["matting"] = true; dict7["mattock"] = true; dict7["mattole"] = true; dict6["mature"] = true; dict7["matured"] = true; dict6["matzah"] = true; dict5["matzo"] = true; dict6["matzoh"] = true; dict7["maudlin"] = true; dict7["maugham"] = true; dict4["maui"] = true; dict4["maul"] = true; dict7["mauldin"] = true; dict6["mauler"] = true; dict7["maulers"] = true; dict5["maund"] = true; dict7["maunder"] = true; dict6["maundy"] = true; dict7["mauriac"] = true; dict7["maurois"] = true; dict6["mauser"] = true; dict5["mauve"] = true; dict5["maven"] = true; dict5["mavik"] = true; dict5["mavin"] = true; dict5["mavis"] = true; dict7["mawkish"] = true; dict4["maxi"] = true; dict7["maxilla"] = true; dict5["maxim"] = true; dict7["maximal"] = true; dict7["maximum"] = true; dict7["maxwell"] = true; dict7["maxzide"] = true; dict4["maya"] = true; dict6["mayaca"] = true; dict5["mayan"] = true; dict5["mayas"] = true; dict5["maybe"] = true; dict6["mayday"] = true; dict6["mayeng"] = true; dict7["mayenne"] = true; dict5["mayer"] = true; dict7["mayfish"] = true; dict6["mayfly"] = true; dict6["mayhap"] = true; dict6["mayhaw"] = true; dict6["mayhem"] = true; dict4["mayo"] = true; dict5["mayor"] = true; dict7["mayoral"] = true; dict7["maypole"] = true; dict6["maypop"] = true; dict4["mays"] = true; dict7["mayweed"] = true; dict6["mazama"] = true; dict4["maze"] = true; dict5["mazed"] = true; dict5["mazer"] = true; dict7["mazurka"] = true; dict4["mazy"] = true; dict7["mazzard"] = true; dict7["mazzini"] = true; dict7["mbabane"] = true; dict5["mbeya"] = true; dict4["mbit"] = true; dict6["mbundu"] = true; dict7["mcallen"] = true; dict6["mcgraw"] = true; dict4["mcia"] = true; dict5["mckim"] = true; dict7["mcluhan"] = true; dict4["mdiv"] = true; dict4["mdma"] = true; dict4["mead"] = true; dict5["meade"] = true; dict6["meadow"] = true; dict6["meager"] = true; dict6["meagre"] = true; dict4["meal"] = true; dict6["mealie"] = true; dict5["mealy"] = true; dict4["mean"] = true; dict7["meander"] = true; dict6["meanie"] = true; dict7["meaning"] = true; dict6["meanly"] = true; dict5["means"] = true; dict5["meany"] = true; dict7["measles"] = true; dict6["measly"] = true; dict7["measure"] = true; dict4["meat"] = true; dict7["meatman"] = true; dict6["meatus"] = true; dict5["meaty"] = true; dict7["mebaral"] = true; dict7["mebibit"] = true; dict5["mecca"] = true; dict7["meccano"] = true; dict5["medal"] = true; dict5["medan"] = true; dict7["medawar"] = true; dict6["meddle"] = true; dict7["meddler"] = true; dict5["medea"] = true; dict7["medevac"] = true; dict6["medfly"] = true; dict7["medford"] = true; dict7["mediacy"] = true; dict6["medial"] = true; dict6["median"] = true; dict7["mediant"] = true; dict7["mediate"] = true; dict5["medic"] = true; dict7["medical"] = true; dict6["medici"] = true; dict6["medick"] = true; dict6["medico"] = true; dict7["mediety"] = true; dict6["medina"] = true; dict6["medium"] = true; dict7["medivac"] = true; dict6["medlar"] = true; dict7["medlars"] = true; dict6["medley"] = true; dict7["medline"] = true; dict5["medoc"] = true; dict7["medulla"] = true; dict6["medusa"] = true; dict7["medusan"] = true; dict4["meed"] = true; dict4["meek"] = true; dict6["meekly"] = true; dict7["meerkat"] = true; dict4["meet"] = true; dict6["meeter"] = true; dict7["meeting"] = true; dict7["mefoxin"] = true; dict7["megabat"] = true; dict7["megabit"] = true; dict7["megaera"] = true; dict7["megahit"] = true; dict7["megaton"] = true; dict6["megilp"] = true; dict6["megohm"] = true; dict6["megrim"] = true; dict7["megrims"] = true; dict7["meiosis"] = true; dict7["meiotic"] = true; dict4["meir"] = true; dict7["meitner"] = true; dict6["mekong"] = true; dict7["melaena"] = true; dict7["melagra"] = true; dict7["melange"] = true; dict7["melanin"] = true; dict7["melasma"] = true; dict5["melba"] = true; dict4["meld"] = true; dict5["melee"] = true; dict6["melena"] = true; dict5["meles"] = true; dict5["melia"] = true; dict7["melilot"] = true; dict7["melinae"] = true; dict7["melissa"] = true; dict7["melkite"] = true; dict6["mellon"] = true; dict6["mellow"] = true; dict7["melodic"] = true; dict6["melody"] = true; dict6["meloid"] = true; dict5["melon"] = true; dict6["melosa"] = true; dict4["melt"] = true; dict6["melted"] = true; dict6["melter"] = true; dict7["melting"] = true; dict6["member"] = true; dict4["meme"] = true; dict5["memel"] = true; dict7["memento"] = true; dict4["memo"] = true; dict6["memoir"] = true; dict6["memory"] = true; dict7["memphis"] = true; dict5["men's"] = true; dict6["menace"] = true; dict6["menage"] = true; dict7["mencken"] = true; dict4["mend"] = true; dict6["mendel"] = true; dict6["mender"] = true; dict7["mending"] = true; dict6["menhir"] = true; dict6["menial"] = true; dict7["meniere"] = true; dict6["meninx"] = true; dict7["menippe"] = true; dict7["menopon"] = true; dict7["menorah"] = true; dict7["menotti"] = true; dict5["mensa"] = true; dict6["mensal"] = true; dict6["mensch"] = true; dict6["menses"] = true; dict5["mensh"] = true; dict6["mental"] = true; dict6["mentha"] = true; dict7["menthol"] = true; dict7["mention"] = true; dict6["mentor"] = true; dict6["mentum"] = true; dict4["menu"] = true; dict7["menuhin"] = true; dict6["menura"] = true; dict7["menurae"] = true; dict4["meow"] = true; dict6["meprin"] = true; dict6["mercer"] = true; dict6["merckx"] = true; dict7["mercury"] = true; dict5["mercy"] = true; dict4["mere"] = true; dict6["merely"] = true; dict5["merge"] = true; dict6["merged"] = true; dict6["merger"] = true; dict7["merging"] = true; dict6["mergus"] = true; dict6["merida"] = true; dict6["merino"] = true; dict5["merit"] = true; dict7["merited"] = true; dict4["merl"] = true; dict5["merle"] = true; dict6["merlin"] = true; dict6["merlon"] = true; dict6["merlot"] = true; dict7["mermaid"] = true; dict6["merman"] = true; dict7["meronym"] = true; dict6["merops"] = true; dict7["merrily"] = true; dict5["merry"] = true; dict6["merton"] = true; dict6["meryta"] = true; dict4["mesa"] = true; dict6["mescal"] = true; dict4["mesh"] = true; dict6["meshed"] = true; dict7["meshing"] = true; dict7["meshuga"] = true; dict6["mesial"] = true; dict5["mesic"] = true; dict6["mesmer"] = true; dict5["meson"] = true; dict7["mesonic"] = true; dict7["mesquit"] = true; dict4["mess"] = true; dict7["mess-up"] = true; dict7["message"] = true; dict7["messiah"] = true; dict7["messily"] = true; dict7["messina"] = true; dict5["messy"] = true; dict7["mestiza"] = true; dict7["mestizo"] = true; dict5["mesua"] = true; dict5["metal"] = true; dict7["metazoa"] = true; dict4["mete"] = true; dict6["meteor"] = true; dict5["meter"] = true; dict4["meth"] = true; dict7["methane"] = true; dict6["method"] = true; dict6["methyl"] = true; dict5["metic"] = true; dict7["metical"] = true; dict6["metier"] = true; dict5["metis"] = true; dict7["metonym"] = true; dict5["metre"] = true; dict6["metric"] = true; dict7["metrics"] = true; dict7["metrify"] = true; dict5["metro"] = true; dict6["mettle"] = true; dict5["meuse"] = true; dict7["mevacor"] = true; dict4["mewl"] = true; dict4["mews"] = true; dict7["mexican"] = true; dict6["mexico"] = true; dict7["mexitil"] = true; dict6["mezcal"] = true; dict6["mezuza"] = true; dict7["mezuzah"] = true; dict5["mezzo"] = true; dict5["mflop"] = true; dict5["miami"] = true; dict4["miao"] = true; dict5["miaou"] = true; dict5["miaow"] = true; dict5["miasm"] = true; dict6["miasma"] = true; dict7["miasmal"] = true; dict7["miasmic"] = true; dict5["miaul"] = true; dict5["mibit"] = true; dict4["mica"] = true; dict5["micah"] = true; dict7["micelle"] = true; dict7["michael"] = true; dict7["micheas"] = true; dict4["mick"] = true; dict6["mickey"] = true; dict6["mickle"] = true; dict6["micmac"] = true; dict5["micro"] = true; dict7["microbe"] = true; dict6["micron"] = true; dict7["mid-may"] = true; dict7["mid-off"] = true; dict6["mid-on"] = true; dict6["midair"] = true; dict5["midas"] = true; dict6["midday"] = true; dict6["midden"] = true; dict6["middle"] = true; dict5["middy"] = true; dict7["mideast"] = true; dict7["midgard"] = true; dict5["midge"] = true; dict6["midget"] = true; dict4["midi"] = true; dict7["midiron"] = true; dict7["midland"] = true; dict7["midline"] = true; dict7["midmost"] = true; dict7["midrash"] = true; dict6["midrib"] = true; dict7["midriff"] = true; dict5["midst"] = true; dict7["midterm"] = true; dict7["midvein"] = true; dict6["midway"] = true; dict7["midweek"] = true; dict7["midwest"] = true; dict7["midwife"] = true; dict4["mien"] = true; dict7["mierkat"] = true; dict4["miff"] = true; dict6["miffed"] = true; dict5["might"] = true; dict6["mighty"] = true; dict7["migrant"] = true; dict7["migrate"] = true; dict6["mihrab"] = true; dict6["mikado"] = true; dict7["mikania"] = true; dict4["mike"] = true; dict6["mikmaq"] = true; dict6["mikvah"] = true; dict6["milady"] = true; dict6["milage"] = true; dict5["milan"] = true; dict6["milano"] = true; dict5["milch"] = true; dict7["milcher"] = true; dict4["mild"] = true; dict6["mildew"] = true; dict6["mildly"] = true; dict4["mile"] = true; dict7["mileage"] = true; dict5["miler"] = true; dict7["milfoil"] = true; dict7["milhaud"] = true; dict6["milieu"] = true; dict7["militia"] = true; dict6["milium"] = true; dict4["milk"] = true; dict7["milkcap"] = true; dict6["milker"] = true; dict7["milkman"] = true; dict7["milksop"] = true; dict5["milky"] = true; dict4["mill"] = true; dict7["millais"] = true; dict6["millay"] = true; dict7["milldam"] = true; dict6["milled"] = true; dict6["miller"] = true; dict6["millet"] = true; dict7["millime"] = true; dict7["milline"] = true; dict7["milling"] = true; dict7["million"] = true; dict7["millrun"] = true; dict5["mills"] = true; dict5["milne"] = true; dict4["milo"] = true; dict6["milord"] = true; dict4["milt"] = true; dict6["milton"] = true; dict7["miltown"] = true; dict6["milvus"] = true; dict7["mimamsa"] = true; dict4["mime"] = true; dict5["mimeo"] = true; dict5["mimer"] = true; dict7["mimesis"] = true; dict7["mimetic"] = true; dict5["mimic"] = true; dict7["mimicry"] = true; dict7["mimidae"] = true; dict5["mimir"] = true; dict6["mimosa"] = true; dict5["mimus"] = true; dict4["mina"] = true; dict5["minah"] = true; dict7["minaret"] = true; dict5["mince"] = true; dict6["mincer"] = true; dict7["mincing"] = true; dict4["mind"] = true; dict6["minded"] = true; dict6["minden"] = true; dict6["minder"] = true; dict7["mindful"] = true; dict7["mindoro"] = true; dict7["mindset"] = true; dict4["mine"] = true; dict5["mined"] = true; dict5["miner"] = true; dict7["mineral"] = true; dict7["minerva"] = true; dict4["ming"] = true; dict5["minge"] = true; dict6["mingle"] = true; dict5["mingy"] = true; dict4["mini"] = true; dict7["miniate"] = true; dict7["minibar"] = true; dict7["minibus"] = true; dict7["minicab"] = true; dict7["minicar"] = true; dict6["minify"] = true; dict5["minim"] = true; dict7["minimal"] = true; dict7["minimum"] = true; dict7["minimus"] = true; dict6["mining"] = true; dict6["minion"] = true; dict7["minisub"] = true; dict6["minium"] = true; dict7["minivan"] = true; dict7["miniver"] = true; dict4["mink"] = true; dict6["minnow"] = true; dict6["minoan"] = true; dict7["minocin"] = true; dict5["minor"] = true; dict6["minors"] = true; dict5["minos"] = true; dict5["minsk"] = true; dict7["minster"] = true; dict4["mint"] = true; dict7["mintage"] = true; dict6["minter"] = true; dict5["minty"] = true; dict7["minuend"] = true; dict6["minuet"] = true; dict6["minuit"] = true; dict5["minus"] = true; dict6["minute"] = true; dict7["minutes"] = true; dict7["minutia"] = true; dict4["minx"] = true; dict6["minyan"] = true; dict7["miocene"] = true; dict6["miosis"] = true; dict6["miotic"] = true; dict4["mips"] = true; dict7["miracle"] = true; dict6["mirage"] = true; dict7["mirasol"] = true; dict4["mire"] = true; dict5["mired"] = true; dict4["miri"] = true; dict5["mirid"] = true; dict7["miridae"] = true; dict6["mirish"] = true; dict5["mirky"] = true; dict4["miro"] = true; dict6["mirror"] = true; dict5["mirth"] = true; dict4["miry"] = true; dict7["misally"] = true; dict7["miscall"] = true; dict7["miscast"] = true; dict6["miscue"] = true; dict7["misdate"] = true; dict7["misdeal"] = true; dict7["misdeed"] = true; dict5["misdo"] = true; dict5["miser"] = true; dict7["miserly"] = true; dict6["misery"] = true; dict7["misfire"] = true; dict6["misfit"] = true; dict7["misgive"] = true; dict6["mishap"] = true; dict6["mishna"] = true; dict7["mishnah"] = true; dict7["mislaid"] = true; dict6["mislay"] = true; dict7["mislead"] = true; dict7["mismate"] = true; dict7["misname"] = true; dict4["miso"] = true; dict7["misplay"] = true; dict7["misread"] = true; dict7["misrule"] = true; dict4["miss"] = true; dict6["missal"] = true; dict6["missed"] = true; dict7["missile"] = true; dict7["missing"] = true; dict7["mission"] = true; dict6["missis"] = true; dict7["missive"] = true; dict7["misstep"] = true; dict6["missus"] = true; dict5["missy"] = true; dict4["mist"] = true; dict7["mistake"] = true; dict6["mister"] = true; dict7["mistily"] = true; dict7["mistime"] = true; dict7["mistral"] = true; dict5["misty"] = true; dict6["misuse"] = true; dict7["misused"] = true; dict7["mitchum"] = true; dict4["mite"] = true; dict7["mitella"] = true; dict5["miter"] = true; dict7["mitford"] = true; dict6["mithan"] = true; dict6["mithra"] = true; dict7["mithras"] = true; dict7["mitogen"] = true; dict7["mitosis"] = true; dict7["mitotic"] = true; dict5["mitra"] = true; dict6["mitral"] = true; dict5["mitre"] = true; dict7["mitsvah"] = true; dict4["mitt"] = true; dict6["mitten"] = true; dict7["mitzvah"] = true; dict5["miwok"] = true; dict6["mix-up"] = true; dict7["mixable"] = true; dict5["mixed"] = true; dict5["mixer"] = true; dict6["mixing"] = true; dict7["mixture"] = true; dict5["mizen"] = true; dict6["mizzen"] = true; dict6["mizzle"] = true; dict5["mlitt"] = true; dict4["mmpi"] = true; dict5["mnium"] = true; dict4["moan"] = true; dict6["moaner"] = true; dict4["moat"] = true; dict6["moated"] = true; dict5["moban"] = true; dict7["mobbish"] = true; dict6["mobcap"] = true; dict6["mobile"] = true; dict6["mobius"] = true; dict7["moblike"] = true; dict7["mobster"] = true; dict6["mobula"] = true; dict5["mocha"] = true; dict4["mock"] = true; dict7["mock-up"] = true; dict6["mocker"] = true; dict7["mockery"] = true; dict7["mocking"] = true; dict5["modal"] = true; dict4["mode"] = true; dict5["model"] = true; dict7["modeled"] = true; dict7["modeler"] = true; dict5["modem"] = true; dict6["modern"] = true; dict7["moderne"] = true; dict6["modest"] = true; dict7["modesty"] = true; dict7["modicon"] = true; dict7["modicum"] = true; dict6["modify"] = true; dict6["modish"] = true; dict7["modiste"] = true; dict4["mods"] = true; dict7["modular"] = true; dict6["module"] = true; dict7["modulus"] = true; dict6["moghul"] = true; dict5["mogul"] = true; dict6["mohair"] = true; dict6["mohave"] = true; dict6["mohawk"] = true; dict7["mohican"] = true; dict4["moho"] = true; dict6["mohria"] = true; dict6["moiety"] = true; dict4["moil"] = true; dict6["moirae"] = true; dict6["moirai"] = true; dict5["moire"] = true; dict5["moist"] = true; dict7["moisten"] = true; dict7["moistly"] = true; dict7["mojarra"] = true; dict6["mojave"] = true; dict4["mojo"] = true; dict4["moke"] = true; dict5["moksa"] = true; dict6["mokulu"] = true; dict4["mola"] = true; dict5["molal"] = true; dict5["molar"] = true; dict4["mold"] = true; dict6["molded"] = true; dict6["molder"] = true; dict7["molding"] = true; dict7["moldova"] = true; dict5["moldy"] = true; dict4["mole"] = true; dict6["molech"] = true; dict6["molest"] = true; dict7["molidae"] = true; dict7["moliere"] = true; dict6["moline"] = true; dict6["molise"] = true; dict4["moll"] = true; dict6["mollah"] = true; dict5["molle"] = true; dict6["mollie"] = true; dict7["mollify"] = true; dict7["molluga"] = true; dict7["mollusc"] = true; dict7["mollusk"] = true; dict5["molly"] = true; dict6["molnar"] = true; dict6["moloch"] = true; dict7["molokai"] = true; dict7["molotov"] = true; dict4["molt"] = true; dict6["molten"] = true; dict6["molter"] = true; dict7["molting"] = true; dict5["molto"] = true; dict5["molva"] = true; dict7["mombasa"] = true; dict6["mombin"] = true; dict6["moment"] = true; dict6["momism"] = true; dict5["momma"] = true; dict7["mommsen"] = true; dict5["mommy"] = true; dict5["momos"] = true; dict5["momot"] = true; dict7["momotus"] = true; dict5["momus"] = true; dict4["mona"] = true; dict7["monacan"] = true; dict6["monaco"] = true; dict5["monad"] = true; dict5["monal"] = true; dict7["monarch"] = true; dict7["monarda"] = true; dict7["monario"] = true; dict5["monas"] = true; dict6["monaul"] = true; dict6["monday"] = true; dict6["monera"] = true; dict7["moneran"] = true; dict7["moneron"] = true; dict7["moneses"] = true; dict5["monet"] = true; dict5["money"] = true; dict7["moneyed"] = true; dict7["moneyer"] = true; dict6["monger"] = true; dict5["mongo"] = true; dict6["mongol"] = true; dict7["mongrel"] = true; dict6["monied"] = true; dict7["moniker"] = true; dict7["monilia"] = true; dict6["monish"] = true; dict6["monism"] = true; dict7["monitor"] = true; dict4["monk"] = true; dict6["monkey"] = true; dict7["monkish"] = true; dict6["monnet"] = true; dict4["mono"] = true; dict7["monocle"] = true; dict7["monocot"] = true; dict5["monod"] = true; dict7["monodic"] = true; dict7["monodon"] = true; dict6["monody"] = true; dict7["monomer"] = true; dict6["monroe"] = true; dict4["mons"] = true; dict7["monsoon"] = true; dict7["monster"] = true; dict7["montage"] = true; dict7["montagu"] = true; dict7["montana"] = true; dict7["montane"] = true; dict5["monte"] = true; dict6["montez"] = true; dict5["month"] = true; dict7["monthly"] = true; dict6["montia"] = true; dict7["moo-cow"] = true; dict5["mooch"] = true; dict7["moocher"] = true; dict4["mood"] = true; dict7["moodily"] = true; dict5["moody"] = true; dict6["moolah"] = true; dict4["moon"] = true; dict7["mooneye"] = true; dict6["moonie"] = true; dict7["moonily"] = true; dict7["moonlit"] = true; dict5["moony"] = true; dict4["moor"] = true; dict7["moorage"] = true; dict5["moore"] = true; dict7["moorhen"] = true; dict7["mooring"] = true; dict7["moorish"] = true; dict5["moose"] = true; dict4["moot"] = true; dict4["mope"] = true; dict5["moped"] = true; dict5["mopes"] = true; dict6["mopper"] = true; dict6["moppet"] = true; dict7["mopping"] = true; dict7["moraine"] = true; dict5["moral"] = true; dict6["morale"] = true; dict7["morally"] = true; dict6["morals"] = true; dict6["morass"] = true; dict7["moravia"] = true; dict5["moray"] = true; dict6["morbid"] = true; dict7["morceau"] = true; dict7["mordant"] = true; dict6["mordva"] = true; dict7["mordvin"] = true; dict4["more"] = true; dict6["moreen"] = true; dict5["morel"] = true; dict7["morello"] = true; dict5["mores"] = true; dict6["morgan"] = true; dict6["morgen"] = true; dict6["morgue"] = true; dict6["morion"] = true; dict6["morley"] = true; dict6["mormon"] = true; dict7["mormons"] = true; dict4["morn"] = true; dict7["morning"] = true; dict4["moro"] = true; dict7["morocco"] = true; dict5["moron"] = true; dict6["morone"] = true; dict7["moronic"] = true; dict6["morose"] = true; dict5["morph"] = true; dict7["morphea"] = true; dict7["morphia"] = true; dict7["morrigu"] = true; dict6["morris"] = true; dict6["morrow"] = true; dict4["mors"] = true; dict5["morse"] = true; dict6["morsel"] = true; dict6["mortal"] = true; dict6["mortar"] = true; dict7["mortice"] = true; dict7["mortify"] = true; dict7["mortise"] = true; dict6["morton"] = true; dict6["morula"] = true; dict5["morus"] = true; dict6["mosaic"] = true; dict5["mosan"] = true; dict7["moschus"] = true; dict6["moscow"] = true; dict7["moselle"] = true; dict5["moses"] = true; dict5["mosey"] = true; dict4["mosh"] = true; dict6["moshav"] = true; dict6["moslem"] = true; dict6["mosque"] = true; dict4["moss"] = true; dict6["mossad"] = true; dict5["mossy"] = true; dict4["most"] = true; dict6["mostly"] = true; dict5["mosul"] = true; dict4["mote"] = true; dict5["motel"] = true; dict5["motet"] = true; dict4["moth"] = true; dict6["mother"] = true; dict5["mothy"] = true; dict5["motif"] = true; dict6["motile"] = true; dict7["motilin"] = true; dict6["motion"] = true; dict6["motive"] = true; dict6["motley"] = true; dict6["motmot"] = true; dict5["motor"] = true; dict7["motored"] = true; dict6["motown"] = true; dict6["motrin"] = true; dict4["mott"] = true; dict6["mottle"] = true; dict7["mottled"] = true; dict5["motto"] = true; dict4["moue"] = true; dict7["mouflon"] = true; dict6["moujik"] = true; dict7["moukden"] = true; dict5["mould"] = true; dict7["moulder"] = true; dict6["mouldy"] = true; dict5["moult"] = true; dict7["moulter"] = true; dict5["mound"] = true; dict5["mount"] = true; dict7["mounted"] = true; dict7["mounter"] = true; dict7["mountie"] = true; dict5["mourn"] = true; dict7["mourner"] = true; dict5["mouse"] = true; dict6["mouser"] = true; dict6["mousey"] = true; dict6["mousse"] = true; dict5["mousy"] = true; dict5["mouth"] = true; dict6["mouton"] = true; dict7["movable"] = true; dict4["move"] = true; dict5["moved"] = true; dict5["mover"] = true; dict5["movie"] = true; dict6["moving"] = true; dict5["mower"] = true; dict4["mown"] = true; dict5["moxie"] = true; dict6["mozart"] = true; dict4["mpeg"] = true; dict4["mrna"] = true; dict4["mrs."] = true; dict4["mrta"] = true; dict6["ms-dos"] = true; dict5["msasa"] = true; dict4["msec"] = true; dict7["muazzin"] = true; dict7["mubarak"] = true; dict4["much"] = true; dict5["mucin"] = true; dict4["muck"] = true; dict6["muckle"] = true; dict5["mucky"] = true; dict6["mucoid"] = true; dict5["mucor"] = true; dict6["mucosa"] = true; dict7["mucosal"] = true; dict6["mucose"] = true; dict6["mucous"] = true; dict6["mucuna"] = true; dict5["mucus"] = true; dict6["mudcat"] = true; dict6["mudder"] = true; dict7["muddied"] = true; dict6["muddle"] = true; dict7["muddled"] = true; dict5["muddy"] = true; dict6["mudhif"] = true; dict5["mudra"] = true; dict6["muesli"] = true; dict7["muezzin"] = true; dict4["muff"] = true; dict6["muffin"] = true; dict6["muffle"] = true; dict7["muffled"] = true; dict7["muffler"] = true; dict5["mufti"] = true; dict6["mugful"] = true; dict6["muggee"] = true; dict6["mugger"] = true; dict7["mugging"] = true; dict7["muggins"] = true; dict5["muggy"] = true; dict5["mugil"] = true; dict7["mugshot"] = true; dict7["mugwort"] = true; dict7["mugwump"] = true; dict4["muir"] = true; dict7["mujahid"] = true; dict5["mujik"] = true; dict7["mukalla"] = true; dict7["mukataa"] = true; dict6["mukden"] = true; dict7["mulatto"] = true; dict5["mulch"] = true; dict5["mulct"] = true; dict4["mule"] = true; dict6["mulish"] = true; dict4["mull"] = true; dict5["mulla"] = true; dict6["mullah"] = true; dict7["mullein"] = true; dict6["muller"] = true; dict6["mullet"] = true; dict7["mullion"] = true; dict6["mullus"] = true; dict5["mulwi"] = true; dict6["mumbai"] = true; dict6["mumble"] = true; dict7["mumbler"] = true; dict6["mummer"] = true; dict7["mummery"] = true; dict7["mummify"] = true; dict5["mummy"] = true; dict5["mumps"] = true; dict5["munch"] = true; dict7["muncher"] = true; dict6["muncie"] = true; dict5["munda"] = true; dict7["mundane"] = true; dict4["mung"] = true; dict6["munich"] = true; dict4["munj"] = true; dict5["munja"] = true; dict7["munjeet"] = true; dict6["munjuk"] = true; dict5["munro"] = true; dict7["muntjac"] = true; dict4["muon"] = true; dict5["mural"] = true; dict6["murder"] = true; dict7["murdoch"] = true; dict7["muridae"] = true; dict7["murillo"] = true; dict6["murine"] = true; dict4["murk"] = true; dict7["murkily"] = true; dict5["murky"] = true; dict6["murmur"] = true; dict6["murphy"] = true; dict7["murrain"] = true; dict6["murray"] = true; dict5["murre"] = true; dict6["murrow"] = true; dict4["musa"] = true; dict7["musales"] = true; dict5["musca"] = true; dict7["muscari"] = true; dict6["muscat"] = true; dict5["musci"] = true; dict6["muscle"] = true; dict7["muscovy"] = true; dict4["musd"] = true; dict4["muse"] = true; dict5["muser"] = true; dict7["musette"] = true; dict6["museum"] = true; dict6["musgoi"] = true; dict5["musgu"] = true; dict4["mush"] = true; dict6["musher"] = true; dict5["mushy"] = true; dict6["musial"] = true; dict5["music"] = true; dict7["musical"] = true; dict6["musing"] = true; dict6["musjid"] = true; dict4["musk"] = true; dict6["muskat"] = true; dict6["musket"] = true; dict7["muskrat"] = true; dict5["musky"] = true; dict6["muslim"] = true; dict6["muslin"] = true; dict6["musnud"] = true; dict4["muss"] = true; dict6["mussel"] = true; dict6["musset"] = true; dict5["mussy"] = true; dict4["must"] = true; dict7["mustagh"] = true; dict7["mustang"] = true; dict7["mustard"] = true; dict7["mustela"] = true; dict6["muster"] = true; dict5["musth"] = true; dict5["musty"] = true; dict7["mutable"] = true; dict7["mutagen"] = true; dict6["mutant"] = true; dict6["mutate"] = true; dict6["mutawa"] = true; dict4["mute"] = true; dict5["muted"] = true; dict6["mutely"] = true; dict7["mutinus"] = true; dict6["mutiny"] = true; dict7["mutisia"] = true; dict6["mutism"] = true; dict5["muton"] = true; dict4["mutt"] = true; dict6["mutter"] = true; dict6["mutton"] = true; dict6["mutual"] = true; dict6["muumuu"] = true; dict6["muzhik"] = true; dict6["muzjik"] = true; dict6["muztag"] = true; dict7["muztagh"] = true; dict6["muzzle"] = true; dict7["muzzler"] = true; dict5["muzzy"] = true; dict6["mwanza"] = true; dict5["mwera"] = true; dict7["myaceae"] = true; dict7["myalgia"] = true; dict7["myalgic"] = true; dict7["myanmar"] = true; dict7["mycenae"] = true; dict7["mycosis"] = true; dict6["myelic"] = true; dict6["myelin"] = true; dict7["myeline"] = true; dict7["myeloid"] = true; dict7["myeloma"] = true; dict7["myiasis"] = true; dict7["mylanta"] = true; dict5["mylar"] = true; dict7["mylitta"] = true; dict7["mylodon"] = true; dict4["myna"] = true; dict5["mynah"] = true; dict7["myogram"] = true; dict5["myoid"] = true; dict7["myology"] = true; dict5["myoma"] = true; dict5["myope"] = true; dict6["myopia"] = true; dict6["myopic"] = true; dict6["myopus"] = true; dict6["myosin"] = true; dict6["myosis"] = true; dict6["myotic"] = true; dict6["myotis"] = true; dict7["myotomy"] = true; dict6["myrcia"] = true; dict6["myrdal"] = true; dict6["myriad"] = true; dict6["myrica"] = true; dict7["myringa"] = true; dict5["myrrh"] = true; dict7["myrrhis"] = true; dict7["myrsine"] = true; dict6["myrtle"] = true; dict6["myrtus"] = true; dict7["mysidae"] = true; dict5["mysis"] = true; dict6["mysore"] = true; dict7["mystery"] = true; dict6["mystic"] = true; dict7["mystify"] = true; dict4["myth"] = true; dict6["mythic"] = true; dict7["mytilid"] = true; dict7["mytilus"] = true; dict6["myxine"] = true; dict6["myxoma"] = true; dict4["n-th"] = true; dict4["n.b."] = true; dict7["na-dene"] = true; dict4["naan"] = true; dict7["nabalus"] = true; dict6["nablus"] = true; dict5["nabob"] = true; dict7["nabokov"] = true; dict6["naboom"] = true; dict4["nabu"] = true; dict7["nacelle"] = true; dict5["nacho"] = true; dict5["nacre"] = true; dict4["nada"] = true; dict5["nadir"] = true; dict7["nadolol"] = true; dict4["nadp"] = true; dict6["nafcil"] = true; dict5["nafta"] = true; dict5["nafud"] = true; dict4["naga"] = true; dict6["nagami"] = true; dict6["nagano"] = true; dict6["nagari"] = true; dict6["nageia"] = true; dict6["nagger"] = true; dict7["nagging"] = true; dict4["nagi"] = true; dict6["nagoya"] = true; dict7["nahuatl"] = true; dict5["nahum"] = true; dict5["naiad"] = true; dict6["naiant"] = true; dict5["naias"] = true; dict4["naif"] = true; dict5["naiki"] = true; dict4["nail"] = true; dict6["nailer"] = true; dict7["nailrod"] = true; dict5["naira"] = true; dict7["nairobi"] = true; dict5["naive"] = true; dict7["naively"] = true; dict7["naivete"] = true; dict7["naivety"] = true; dict4["naja"] = true; dict5["najas"] = true; dict4["najd"] = true; dict5["naked"] = true; dict7["nakedly"] = true; dict6["nakuru"] = true; dict7["nalchik"] = true; dict6["nalfon"] = true; dict7["nalline"] = true; dict4["name"] = true; dict6["nameko"] = true; dict6["namely"] = true; dict5["namer"] = true; dict5["names"] = true; dict7["namibia"] = true; dict6["naming"] = true; dict6["nammad"] = true; dict5["nammu"] = true; dict5["namoi"] = true; dict5["nampa"] = true; dict6["namtar"] = true; dict7["namtaru"] = true; dict5["namur"] = true; dict7["nanaimo"] = true; dict5["nanak"] = true; dict5["nance"] = true; dict7["nancere"] = true; dict5["nancy"] = true; dict5["nandu"] = true; dict6["nanism"] = true; dict7["nanjing"] = true; dict7["nankeen"] = true; dict7["nanking"] = true; dict5["nanna"] = true; dict7["nanning"] = true; dict5["nanny"] = true; dict7["nanomia"] = true; dict6["nansen"] = true; dict6["nantes"] = true; dict6["nantua"] = true; dict5["nanus"] = true; dict5["naomi"] = true; dict4["napa"] = true; dict6["napaea"] = true; dict6["napalm"] = true; dict4["nape"] = true; dict6["napery"] = true; dict7["naphtha"] = true; dict6["napier"] = true; dict6["napkin"] = true; dict6["naples"] = true; dict6["napoli"] = true; dict6["napped"] = true; dict7["napping"] = true; dict5["nappy"] = true; dict4["napu"] = true; dict5["naqua"] = true; dict4["nara"] = true; dict4["narc"] = true; dict6["narcan"] = true; dict7["narcism"] = true; dict7["narcist"] = true; dict4["nard"] = true; dict6["nardil"] = true; dict5["nardo"] = true; dict6["nardoo"] = true; dict6["narial"] = true; dict5["naris"] = true; dict4["nark"] = true; dict7["narrate"] = true; dict6["narrow"] = true; dict7["narthex"] = true; dict6["narwal"] = true; dict7["narwhal"] = true; dict4["nary"] = true; dict4["nasa"] = true; dict5["nasal"] = true; dict6["nasale"] = true; dict7["nasalis"] = true; dict7["nasally"] = true; dict7["nascent"] = true; dict6["nasdaq"] = true; dict6["naseby"] = true; dict4["nash"] = true; dict6["nasion"] = true; dict6["nassau"] = true; dict6["nasser"] = true; dict4["nast"] = true; dict7["nastily"] = true; dict5["nasty"] = true; dict5["nasua"] = true; dict5["natal"] = true; dict7["natator"] = true; dict7["natchez"] = true; dict5["nates"] = true; dict6["nation"] = true; dict6["native"] = true; dict4["nato"] = true; dict6["natrix"] = true; dict5["natta"] = true; dict6["natter"] = true; dict7["nattily"] = true; dict5["natty"] = true; dict7["natural"] = true; dict6["nature"] = true; dict5["nauch"] = true; dict7["nauclea"] = true; dict6["naught"] = true; dict7["naughty"] = true; dict5["nauru"] = true; dict7["nauruan"] = true; dict6["nausea"] = true; dict6["nautch"] = true; dict6["navaho"] = true; dict6["navajo"] = true; dict5["naval"] = true; dict6["navane"] = true; dict4["nave"] = true; dict5["navel"] = true; dict5["navvy"] = true; dict4["navy"] = true; dict5["nawab"] = true; dict4["naze"] = true; dict4["nazi"] = true; dict6["nazify"] = true; dict7["naziism"] = true; dict6["nazism"] = true; dict4["ncdc"] = true; dict7["ndebele"] = true; dict5["ne'er"] = true; dict4["neap"] = true; dict4["near"] = true; dict6["nearby"] = true; dict6["nearer"] = true; dict7["nearest"] = true; dict6["nearly"] = true; dict4["neat"] = true; dict6["neaten"] = true; dict6["neatly"] = true; dict7["nebbech"] = true; dict7["nebbish"] = true; dict6["nebcin"] = true; dict4["nebe"] = true; dict6["nebiim"] = true; dict4["nebn"] = true; dict4["nebo"] = true; dict6["nebula"] = true; dict7["nebular"] = true; dict6["nebule"] = true; dict4["neck"] = true; dict6["neckar"] = true; dict6["necked"] = true; dict6["necker"] = true; dict7["necking"] = true; dict7["necklet"] = true; dict7["necktie"] = true; dict7["necrose"] = true; dict6["nectar"] = true; dict7["nectary"] = true; dict4["need"] = true; dict6["needed"] = true; dict6["needer"] = true; dict7["needful"] = true; dict6["needle"] = true; dict7["needled"] = true; dict5["needs"] = true; dict5["needy"] = true; dict4["neel"] = true; dict4["neem"] = true; dict5["nefud"] = true; dict6["negate"] = true; dict5["negev"] = true; dict7["neggram"] = true; dict7["neglect"] = true; dict7["neglige"] = true; dict7["negress"] = true; dict5["negro"] = true; dict7["negroid"] = true; dict5["negus"] = true; dict5["nehru"] = true; dict5["neigh"] = true; dict7["neither"] = true; dict4["nejd"] = true; dict6["nekton"] = true; dict6["nelson"] = true; dict7["nelumbo"] = true; dict5["nemea"] = true; dict7["nemesis"] = true; dict6["nenets"] = true; dict6["nentsi"] = true; dict6["nentsy"] = true; dict6["neocon"] = true; dict7["neolith"] = true; dict7["neology"] = true; dict6["neomys"] = true; dict4["neon"] = true; dict7["neonate"] = true; dict6["neosho"] = true; dict7["neoteny"] = true; dict7["neotoma"] = true; dict7["neotony"] = true; dict4["nepa"] = true; dict5["nepal"] = true; dict6["nepali"] = true; dict6["nepeta"] = true; dict6["nephew"] = true; dict7["nephron"] = true; dict7["nepidae"] = true; dict7["neptune"] = true; dict4["nerd"] = true; dict6["nereid"] = true; dict6["nereus"] = true; dict6["nergal"] = true; dict6["nerita"] = true; dict7["neritic"] = true; dict7["neritid"] = true; dict6["nerium"] = true; dict6["nernst"] = true; dict4["nero"] = true; dict7["nerodia"] = true; dict7["nerthus"] = true; dict6["neruda"] = true; dict5["nerva"] = true; dict5["nerve"] = true; dict6["nerves"] = true; dict5["nervi"] = true; dict7["nervily"] = true; dict7["nervous"] = true; dict7["nervure"] = true; dict6["nervus"] = true; dict5["nervy"] = true; dict7["nesokia"] = true; dict4["ness"] = true; dict6["nessie"] = true; dict4["nest"] = true; dict6["nester"] = true; dict6["nestle"] = true; dict7["nestled"] = true; dict6["nestor"] = true; dict7["netball"] = true; dict6["nether"] = true; dict7["netlike"] = true; dict7["netmail"] = true; dict4["nett"] = true; dict6["netted"] = true; dict7["netting"] = true; dict6["nettle"] = true; dict7["nettled"] = true; dict7["network"] = true; dict7["neumann"] = true; dict6["neural"] = true; dict7["neuroma"] = true; dict6["neuron"] = true; dict6["neuter"] = true; dict7["neutral"] = true; dict7["neutron"] = true; dict4["neva"] = true; dict6["nevada"] = true; dict7["nevadan"] = true; dict4["neve"] = true; dict5["never"] = true; dict5["nevis"] = true; dict5["nevus"] = true; dict6["newari"] = true; dict6["newark"] = true; dict6["newbie"] = true; dict7["newborn"] = true; dict7["newcomb"] = true; dict5["newel"] = true; dict7["newgate"] = true; dict5["newly"] = true; dict6["newman"] = true; dict7["newness"] = true; dict7["newport"] = true; dict4["news"] = true; dict7["newsboy"] = true; dict7["newsman"] = true; dict5["newsy"] = true; dict4["newt"] = true; dict6["newton"] = true; dict4["next"] = true; dict5["nexus"] = true; dict5["nguni"] = true; dict5["ngwee"] = true; dict7["ni-hard"] = true; dict6["niacin"] = true; dict7["niagara"] = true; dict6["niamey"] = true; dict6["nibbed"] = true; dict6["nibble"] = true; dict7["nibbler"] = true; dict7["niblick"] = true; dict5["nicad"] = true; dict6["nicaea"] = true; dict7["nicaean"] = true; dict4["nice"] = true; dict6["nicely"] = true; dict6["nicene"] = true; dict6["nicety"] = true; dict5["niche"] = true; dict4["nick"] = true; dict6["nickel"] = true; dict6["nicker"] = true; dict7["nicosia"] = true; dict7["nictate"] = true; dict4["nicu"] = true; dict7["nidaros"] = true; dict5["niddm"] = true; dict5["nidus"] = true; dict7["niebuhr"] = true; dict5["niece"] = true; dict7["nielsen"] = true; dict4["niff"] = true; dict5["niffy"] = true; dict5["nifty"] = true; dict7["nigella"] = true; dict5["niger"] = true; dict7["nigeria"] = true; dict5["nigga"] = true; dict7["niggard"] = true; dict6["nigger"] = true; dict6["niggle"] = true; dict7["niggler"] = true; dict4["nigh"] = true; dict6["nigher"] = true; dict7["nighest"] = true; dict5["night"] = true; dict7["nighted"] = true; dict7["nightie"] = true; dict7["nightly"] = true; dict5["nigra"] = true; dict7["nigrify"] = true; dict5["nihau"] = true; dict5["nihil"] = true; dict5["nihon"] = true; dict4["nike"] = true; dict4["nile"] = true; dict6["nilgai"] = true; dict7["nilotic"] = true; dict7["nilsson"] = true; dict6["nimble"] = true; dict6["nimbly"] = true; dict6["nimbus"] = true; dict5["nimby"] = true; dict7["nimiety"] = true; dict6["nimitz"] = true; dict6["nimrod"] = true; dict7["nin-sin"] = true; dict4["nina"] = true; dict4["nine"] = true; dict7["ninepin"] = true; dict5["niner"] = true; dict6["ninety"] = true; dict7["nineveh"] = true; dict6["ningal"] = true; dict5["ninib"] = true; dict6["ninigi"] = true; dict5["ninja"] = true; dict5["ninny"] = true; dict5["ninon"] = true; dict5["ninth"] = true; dict6["nintoo"] = true; dict5["nintu"] = true; dict7["ninurta"] = true; dict5["niobe"] = true; dict7["niobite"] = true; dict7["niobium"] = true; dict4["nipa"] = true; dict6["nipper"] = true; dict7["nipping"] = true; dict6["nipple"] = true; dict6["nippon"] = true; dict5["nippy"] = true; dict4["nipr"] = true; dict7["niqaabi"] = true; dict5["niqab"] = true; dict7["nirvana"] = true; dict5["nisan"] = true; dict5["nisei"] = true; dict4["nisi"] = true; dict6["nissan"] = true; dict4["nist"] = true; dict5["nisus"] = true; dict7["nitella"] = true; dict5["niter"] = true; dict5["nitid"] = true; dict7["nitpick"] = true; dict7["nitrate"] = true; dict5["nitre"] = true; dict6["nitric"] = true; dict7["nitride"] = true; dict7["nitrify"] = true; dict6["nitril"] = true; dict7["nitrile"] = true; dict7["nitrite"] = true; dict7["nitrous"] = true; dict7["nitweed"] = true; dict6["nitwit"] = true; dict6["nivose"] = true; dict5["nixon"] = true; dict5["njord"] = true; dict6["njorth"] = true; dict4["nlrb"] = true; dict5["nnrti"] = true; dict5["no-go"] = true; dict7["no-goal"] = true; dict7["no-good"] = true; dict6["no-hit"] = true; dict7["no-show"] = true; dict6["no-win"] = true; dict4["noaa"] = true; dict4["noah"] = true; dict6["nobble"] = true; dict5["nobel"] = true; dict5["noble"] = true; dict5["nobly"] = true; dict6["nobody"] = true; dict6["nocent"] = true; dict4["nock"] = true; dict6["noctua"] = true; dict7["noctuid"] = true; dict7["nodding"] = true; dict6["noddle"] = true; dict4["node"] = true; dict7["nodular"] = true; dict6["nodule"] = true; dict7["noduled"] = true; dict4["noel"] = true; dict5["noemi"] = true; dict6["noesis"] = true; dict7["noether"] = true; dict6["noetic"] = true; dict7["nogales"] = true; dict6["noggin"] = true; dict7["nogging"] = true; dict7["noguchi"] = true; dict5["nohow"] = true; dict5["noise"] = true; dict7["noisily"] = true; dict7["noisome"] = true; dict5["noisy"] = true; dict6["nolina"] = true; dict4["noma"] = true; dict5["nomad"] = true; dict7["nomadic"] = true; dict7["nombril"] = true; dict4["nome"] = true; dict5["nomia"] = true; dict7["nominal"] = true; dict7["nominee"] = true; dict7["non-jew"] = true; dict5["non-u"] = true; dict6["nonage"] = true; dict7["nonaged"] = true; dict7["nonagon"] = true; dict5["nonce"] = true; dict6["noncom"] = true; dict4["none"] = true; dict5["nones"] = true; dict6["nonfat"] = true; dict7["nonplus"] = true; dict7["nonskid"] = true; dict7["nonslip"] = true; dict7["nonstop"] = true; dict7["nonsuch"] = true; dict7["nonuple"] = true; dict6["noodle"] = true; dict4["nook"] = true; dict6["nookie"] = true; dict5["nooky"] = true; dict4["noon"] = true; dict7["noonday"] = true; dict5["noose"] = true; dict6["nootka"] = true; dict5["nopal"] = true; dict7["nopalea"] = true; dict7["nor-q-d"] = true; dict6["nordic"] = true; dict5["noreg"] = true; dict7["norflex"] = true; dict7["norfolk"] = true; dict5["norge"] = true; dict5["noria"] = true; dict7["norinyl"] = true; dict4["norm"] = true; dict5["norma"] = true; dict6["normal"] = true; dict6["norman"] = true; dict4["norn"] = true; dict6["norris"] = true; dict7["norrish"] = true; dict5["norse"] = true; dict5["north"] = true; dict7["norther"] = true; dict5["noruz"] = true; dict7["norvasc"] = true; dict6["norvir"] = true; dict6["norway"] = true; dict4["nose"] = true; dict7["nosebag"] = true; dict5["nosed"] = true; dict7["nosegay"] = true; dict5["nosey"] = true; dict4["nosh"] = true; dict7["nosh-up"] = true; dict6["nosher"] = true; dict6["nostoc"] = true; dict7["nostril"] = true; dict7["nostrum"] = true; dict4["nosy"] = true; dict7["notable"] = true; dict7["notably"] = true; dict6["notary"] = true; dict6["notate"] = true; dict5["notch"] = true; dict7["notched"] = true; dict4["note"] = true; dict5["noted"] = true; dict7["notepad"] = true; dict7["nothing"] = true; dict6["notice"] = true; dict7["noticed"] = true; dict7["noticer"] = true; dict6["notify"] = true; dict6["notion"] = true; dict7["notomys"] = true; dict6["nougat"] = true; dict6["nought"] = true; dict4["noun"] = true; dict7["nourish"] = true; dict4["nous"] = true; dict4["nova"] = true; dict6["novate"] = true; dict5["novel"] = true; dict7["novella"] = true; dict7["novelty"] = true; dict6["novena"] = true; dict6["novial"] = true; dict6["novice"] = true; dict7["nowhere"] = true; dict6["nowise"] = true; dict7["nowness"] = true; dict7["nowrooz"] = true; dict6["nowruz"] = true; dict7["noxious"] = true; dict5["noyes"] = true; dict6["nozzle"] = true; dict4["nrem"] = true; dict4["nrna"] = true; dict4["nrti"] = true; dict5["nsaid"] = true; dict4["nswc"] = true; dict4["ntis"] = true; dict6["nuance"] = true; dict6["nubbin"] = true; dict6["nubble"] = true; dict6["nubbly"] = true; dict5["nubby"] = true; dict5["nubia"] = true; dict6["nubian"] = true; dict6["nubile"] = true; dict5["nucha"] = true; dict7["nuclear"] = true; dict7["nucleon"] = true; dict7["nucleus"] = true; dict4["nuda"] = true; dict4["nude"] = true; dict5["nudge"] = true; dict6["nudger"] = true; dict6["nudism"] = true; dict6["nudist"] = true; dict6["nudity"] = true; dict7["nudnick"] = true; dict6["nudnik"] = true; dict6["nugget"] = true; dict4["nuke"] = true; dict4["null"] = true; dict6["nullah"] = true; dict7["nullify"] = true; dict7["nullity"] = true; dict4["numb"] = true; dict6["numbat"] = true; dict6["number"] = true; dict7["numbers"] = true; dict7["numbing"] = true; dict6["numbly"] = true; dict6["numdah"] = true; dict5["numen"] = true; dict7["numeral"] = true; dict7["numeric"] = true; dict6["numida"] = true; dict7["numidia"] = true; dict7["nunavut"] = true; dict6["nuncio"] = true; dict4["nung"] = true; dict7["nunnery"] = true; dict6["nuphar"] = true; dict6["nuprin"] = true; dict7["nuptial"] = true; dict6["nuptse"] = true; dict7["nureyev"] = true; dict5["nurse"] = true; dict6["nursed"] = true; dict6["nurser"] = true; dict7["nursery"] = true; dict7["nursing"] = true; dict7["nurture"] = true; dict5["nusku"] = true; dict6["nutate"] = true; dict7["nutcase"] = true; dict6["nutlet"] = true; dict7["nutlike"] = true; dict6["nutmeg"] = true; dict6["nutria"] = true; dict7["nutrify"] = true; dict4["nuts"] = true; dict6["nutter"] = true; dict7["nuttily"] = true; dict5["nutty"] = true; dict4["nuwc"] = true; dict7["nuytsia"] = true; dict6["nuzzle"] = true; dict4["nwbn"] = true; dict4["nwbw"] = true; dict5["nyala"] = true; dict6["nybble"] = true; dict7["nylghai"] = true; dict7["nylghau"] = true; dict5["nylon"] = true; dict6["nylons"] = true; dict5["nymph"] = true; dict7["nymphet"] = true; dict6["nympho"] = true; dict7["nynorsk"] = true; dict4["nypa"] = true; dict4["nyse"] = true; dict5["nyssa"] = true; dict6["nystan"] = true; dict7["o'brien"] = true; dict7["o'casey"] = true; dict7["o'clock"] = true; dict4["o'er"] = true; dict6["o'hara"] = true; dict7["o'neill"] = true; dict7["o'toole"] = true; dict4["o.d."] = true; dict6["o.e.d."] = true; dict4["o.k."] = true; dict6["oafish"] = true; dict4["oahu"] = true; dict5["oaken"] = true; dict7["oakland"] = true; dict6["oakley"] = true; dict5["oakum"] = true; dict7["oarfish"] = true; dict7["oarlock"] = true; dict7["oarsman"] = true; dict5["oasis"] = true; dict4["oast"] = true; dict7["oatcake"] = true; dict5["oaten"] = true; dict5["oates"] = true; dict4["oath"] = true; dict7["oatmeal"] = true; dict6["oaxaca"] = true; dict7["obadiah"] = true; dict5["obeah"] = true; dict6["obeche"] = true; dict6["obechi"] = true; dict7["obelion"] = true; dict7["obelisk"] = true; dict7["oberson"] = true; dict5["obese"] = true; dict7["obesity"] = true; dict4["obey"] = true; dict6["obiism"] = true; dict4["obit"] = true; dict6["object"] = true; dict6["oblate"] = true; dict6["oblige"] = true; dict7["obliged"] = true; dict7["obliger"] = true; dict7["oblique"] = true; dict6["oblong"] = true; dict7["obloquy"] = true; dict4["oboe"] = true; dict6["oboist"] = true; dict6["obolus"] = true; dict7["obovate"] = true; dict7["obscene"] = true; dict7["obscure"] = true; dict7["observe"] = true; dict6["obsess"] = true; dict6["obtain"] = true; dict7["obtrude"] = true; dict6["obtund"] = true; dict6["obtuse"] = true; dict7["obverse"] = true; dict7["obviate"] = true; dict7["obvious"] = true; dict7["ocarina"] = true; dict5["occam"] = true; dict7["occiput"] = true; dict7["occitan"] = true; dict7["occlude"] = true; dict6["occult"] = true; dict6["occupy"] = true; dict5["occur"] = true; dict5["ocean"] = true; dict7["oceania"] = true; dict7["oceanic"] = true; dict7["oceanid"] = true; dict7["oceanus"] = true; dict7["ocellus"] = true; dict6["ocelot"] = true; dict5["ocher"] = true; dict5["ochna"] = true; dict5["ochoa"] = true; dict5["ochre"] = true; dict7["ochroma"] = true; dict4["ochs"] = true; dict6["ocimum"] = true; dict6["ockham"] = true; dict5["octad"] = true; dict7["octagon"] = true; dict5["octal"] = true; dict6["octane"] = true; dict6["octans"] = true; dict6["octant"] = true; dict6["octave"] = true; dict6["octavo"] = true; dict5["octet"] = true; dict7["octette"] = true; dict7["october"] = true; dict7["octopod"] = true; dict7["octopus"] = true; dict6["octroi"] = true; dict7["octuple"] = true; dict6["ocular"] = true; dict7["oculism"] = true; dict7["oculist"] = true; dict6["oculus"] = true; dict7["ocyurus"] = true; dict7["odd-job"] = true; dict7["oddball"] = true; dict6["oddish"] = true; dict6["oddity"] = true; dict5["oddly"] = true; dict7["oddment"] = true; dict7["oddness"] = true; dict4["odds"] = true; dict7["odds-on"] = true; dict4["oder"] = true; dict5["odesa"] = true; dict6["odessa"] = true; dict5["odets"] = true; dict4["odin"] = true; dict6["odious"] = true; dict5["odist"] = true; dict5["odium"] = true; dict7["odoacer"] = true; dict7["odonata"] = true; dict7["odonate"] = true; dict4["odor"] = true; dict7["odorize"] = true; dict7["odorous"] = true; dict5["odour"] = true; dict7["odyssey"] = true; dict6["oedema"] = true; dict7["oedipus"] = true; dict6["oengus"] = true; dict7["oenomel"] = true; dict7["oersted"] = true; dict7["oestrus"] = true; dict6["oeuvre"] = true; dict7["off-day"] = true; dict7["off-key"] = true; dict5["offal"] = true; dict7["offbeat"] = true; dict7["offence"] = true; dict6["offend"] = true; dict7["offense"] = true; dict5["offer"] = true; dict7["offerer"] = true; dict7["offeror"] = true; dict7["offhand"] = true; dict6["office"] = true; dict7["officer"] = true; dict6["offing"] = true; dict6["offish"] = true; dict7["offload"] = true; dict6["offset"] = true; dict7["offside"] = true; dict5["often"] = true; dict7["oftener"] = true; dict7["ogalala"] = true; dict5["ogden"] = true; dict6["ogdoad"] = true; dict4["ogee"] = true; dict5["ogive"] = true; dict6["oglala"] = true; dict4["ogle"] = true; dict5["ogler"] = true; dict4["ogre"] = true; dict6["ogress"] = true; dict4["ohio"] = true; dict6["ohioan"] = true; dict6["ohmage"] = true; dict5["ohmic"] = true; dict7["oilbird"] = true; dict6["oilcan"] = true; dict5["oiled"] = true; dict5["oiler"] = true; dict7["oilfish"] = true; dict6["oilman"] = true; dict6["oilrig"] = true; dict7["oilseed"] = true; dict7["oilskin"] = true; dict4["oily"] = true; dict4["oink"] = true; dict6["ojibwa"] = true; dict7["ojibway"] = true; dict5["okapi"] = true; dict6["okapia"] = true; dict4["okay"] = true; dict4["okeh"] = true; dict4["oken"] = true; dict4["okey"] = true; dict7["okinawa"] = true; dict4["okra"] = true; dict7["old-hat"] = true; dict5["olden"] = true; dict5["older"] = true; dict5["oldie"] = true; dict6["oldish"] = true; dict7["oldline"] = true; dict7["oldness"] = true; dict7["oldster"] = true; dict7["oldwife"] = true; dict4["olea"] = true; dict7["oleales"] = true; dict7["olearia"] = true; dict4["oled"] = true; dict6["olefin"] = true; dict7["olefine"] = true; dict5["olein"] = true; dict4["oleo"] = true; dict7["olimbos"] = true; dict5["olive"] = true; dict6["oliver"] = true; dict7["olivier"] = true; dict7["olivine"] = true; dict4["olla"] = true; dict6["ollari"] = true; dict5["olmec"] = true; dict7["olmsted"] = true; dict5["ology"] = true; dict7["olympia"] = true; dict7["olympic"] = true; dict7["olympus"] = true; dict5["omaha"] = true; dict4["oman"] = true; dict5["omani"] = true; dict6["omasum"] = true; dict7["omayyad"] = true; dict4["ombu"] = true; dict5["omega"] = true; dict7["omega-3"] = true; dict7["omega-6"] = true; dict6["omelet"] = true; dict4["omen"] = true; dict7["omentum"] = true; dict6["omerta"] = true; dict7["omicron"] = true; dict7["ominous"] = true; dict4["omit"] = true; dict5["omiya"] = true; dict6["ommiad"] = true; dict7["omnibus"] = true; dict7["omomyid"] = true; dict6["omotic"] = true; dict4["omsk"] = true; dict6["on-key"] = true; dict7["on-line"] = true; dict7["on-site"] = true; dict6["onager"] = true; dict7["onanism"] = true; dict7["onanist"] = true; dict4["once"] = true; dict7["oncovin"] = true; dict7["ondatra"] = true; dict7["one-man"] = true; dict7["one-off"] = true; dict7["one-way"] = true; dict5["onega"] = true; dict6["oneida"] = true; dict7["oneiric"] = true; dict7["oneness"] = true; dict7["onerous"] = true; dict7["onetime"] = true; dict7["ongoing"] = true; dict5["onion"] = true; dict7["oniscus"] = true; dict6["online"] = true; dict4["only"] = true; dict7["onoclea"] = true; dict6["ononis"] = true; dict6["onrush"] = true; dict7["onsager"] = true; dict5["onset"] = true; dict7["onshore"] = true; dict6["onside"] = true; dict7["onstage"] = true; dict7["ontario"] = true; dict4["onus"] = true; dict6["onward"] = true; dict7["onwards"] = true; dict7["onymous"] = true; dict4["onyx"] = true; dict6["onyxis"] = true; dict6["oocyte"] = true; dict6["oodles"] = true; dict6["oology"] = true; dict6["oolong"] = true; dict5["oomph"] = true; dict4["oort"] = true; dict7["oospore"] = true; dict5["ootid"] = true; dict4["ooze"] = true; dict6["oozing"] = true; dict4["oozy"] = true; dict7["opacify"] = true; dict7["opacity"] = true; dict4["opah"] = true; dict4["opal"] = true; dict7["opaline"] = true; dict7["opalise"] = true; dict7["opalize"] = true; dict6["opaque"] = true; dict4["opcw"] = true; dict4["opec"] = true; dict4["opel"] = true; dict4["open"] = true; dict7["opencut"] = true; dict6["opened"] = true; dict6["opener"] = true; dict7["opening"] = true; dict6["openly"] = true; dict5["opepe"] = true; dict5["opera"] = true; dict7["operand"] = true; dict7["operant"] = true; dict7["operate"] = true; dict6["operon"] = true; dict7["operose"] = true; dict7["ophidia"] = true; dict7["ophryon"] = true; dict6["ophrys"] = true; dict6["opiate"] = true; dict5["opine"] = true; dict7["opinion"] = true; dict5["opium"] = true; dict6["oporto"] = true; dict7["opossum"] = true; dict6["oppose"] = true; dict7["opposed"] = true; dict7["opposer"] = true; dict7["oppress"] = true; dict6["oppugn"] = true; dict5["opsin"] = true; dict7["opsonin"] = true; dict5["optez"] = true; dict5["optic"] = true; dict7["optical"] = true; dict6["optics"] = true; dict7["optimal"] = true; dict7["optimum"] = true; dict6["option"] = true; dict7["opulent"] = true; dict7["opuntia"] = true; dict4["opus"] = true; dict5["orach"] = true; dict6["orache"] = true; dict6["oracle"] = true; dict4["orad"] = true; dict4["oral"] = true; dict6["orally"] = true; dict4["oran"] = true; dict5["orang"] = true; dict6["orange"] = true; dict7["orasone"] = true; dict5["orate"] = true; dict7["oration"] = true; dict6["orator"] = true; dict7["oratory"] = true; dict7["orbison"] = true; dict5["orbit"] = true; dict7["orbital"] = true; dict7["orbiter"] = true; dict4["orca"] = true; dict7["orchard"] = true; dict6["orchid"] = true; dict6["orchil"] = true; dict6["orchis"] = true; dict7["orcinus"] = true; dict5["orcus"] = true; dict5["orczy"] = true; dict6["ordain"] = true; dict6["ordeal"] = true; dict5["order"] = true; dict7["ordered"] = true; dict7["orderer"] = true; dict7["orderly"] = true; dict7["ordinal"] = true; dict6["ordure"] = true; dict5["oread"] = true; dict7["oregano"] = true; dict6["oregon"] = true; dict6["oreide"] = true; dict4["oreo"] = true; dict7["orestes"] = true; dict4["orff"] = true; dict5["organ"] = true; dict7["organdy"] = true; dict7["organic"] = true; dict7["organon"] = true; dict6["organs"] = true; dict7["organza"] = true; dict6["orgasm"] = true; dict4["orgy"] = true; dict5["oriel"] = true; dict6["orient"] = true; dict7["orifice"] = true; dict7["origami"] = true; dict6["origen"] = true; dict6["origin"] = true; dict7["orinase"] = true; dict7["orinoco"] = true; dict6["oriole"] = true; dict7["oriolus"] = true; dict5["orion"] = true; dict6["orison"] = true; dict6["orissa"] = true; dict6["orites"] = true; dict5["oriya"] = true; dict7["orizaba"] = true; dict7["orlando"] = true; dict7["orleans"] = true; dict5["orlon"] = true; dict5["orlop"] = true; dict4["orly"] = true; dict7["ormandy"] = true; dict6["ormazd"] = true; dict5["ormer"] = true; dict6["ormolu"] = true; dict7["ormosia"] = true; dict6["ormuzd"] = true; dict6["ornate"] = true; dict6["ornery"] = true; dict7["orogeny"] = true; dict6["oroide"] = true; dict7["orology"] = true; dict5["orono"] = true; dict7["orotund"] = true; dict6["orozco"] = true; dict6["orphan"] = true; dict7["orpheus"] = true; dict6["orphic"] = true; dict7["orphrey"] = true; dict5["orpin"] = true; dict6["orpine"] = true; dict6["orrery"] = true; dict5["orris"] = true; dict7["ortalis"] = true; dict6["ortega"] = true; dict7["ortolan"] = true; dict7["ortygan"] = true; dict6["orudis"] = true; dict7["oruvail"] = true; dict6["orwell"] = true; dict4["oryx"] = true; dict5["oryza"] = true; dict4["orzo"] = true; dict5["osage"] = true; dict5["osaka"] = true; dict6["osasco"] = true; dict7["osborne"] = true; dict5["oscan"] = true; dict5["oscar"] = true; dict6["oscine"] = true; dict7["oscines"] = true; dict4["osha"] = true; dict5["osier"] = true; dict6["osiris"] = true; dict4["oslo"] = true; dict7["osmanli"] = true; dict7["osmerus"] = true; dict6["osmium"] = true; dict7["osmosis"] = true; dict7["osmotic"] = true; dict6["osmund"] = true; dict6["osprey"] = true; dict7["osseous"] = true; dict6["ossete"] = true; dict7["ossicle"] = true; dict6["ossify"] = true; dict7["ossuary"] = true; dict6["osteal"] = true; dict7["osteoma"] = true; dict7["ostiary"] = true; dict7["ostiole"] = true; dict6["ostler"] = true; dict6["ostomy"] = true; dict7["ostrava"] = true; dict6["ostrea"] = true; dict7["ostrich"] = true; dict6["ostrya"] = true; dict7["ostwald"] = true; dict6["ostyak"] = true; dict6["oswald"] = true; dict7["otalgia"] = true; dict6["otaria"] = true; dict7["othello"] = true; dict5["other"] = true; dict4["otho"] = true; dict7["othonna"] = true; dict4["otic"] = true; dict6["otides"] = true; dict6["otiose"] = true; dict4["otis"] = true; dict6["otitis"] = true; dict4["otoe"] = true; dict7["otology"] = true; dict5["ottar"] = true; dict6["ottawa"] = true; dict5["otter"] = true; dict7["ottoman"] = true; dict7["ottumwa"] = true; dict4["otus"] = true; dict7["ouguiya"] = true; dict5["ouija"] = true; dict5["oujda"] = true; dict5["ounce"] = true; dict7["ouranos"] = true; dict4["ouse"] = true; dict5["ousel"] = true; dict4["oust"] = true; dict6["ouster"] = true; dict7["ousting"] = true; dict6["outage"] = true; dict7["outback"] = true; dict6["outbid"] = true; dict7["outbred"] = true; dict7["outcall"] = true; dict7["outcast"] = true; dict7["outcome"] = true; dict7["outcrop"] = true; dict6["outcry"] = true; dict5["outdo"] = true; dict7["outdoor"] = true; dict7["outdraw"] = true; dict5["outer"] = true; dict7["outface"] = true; dict7["outfall"] = true; dict6["outfit"] = true; dict7["outflow"] = true; dict6["outfox"] = true; dict5["outgo"] = true; dict7["outgoer"] = true; dict7["outgrow"] = true; dict6["outing"] = true; dict7["outlast"] = true; dict6["outlaw"] = true; dict6["outlay"] = true; dict6["outlet"] = true; dict7["outlier"] = true; dict7["outline"] = true; dict7["outlive"] = true; dict7["outlook"] = true; dict7["outmode"] = true; dict7["outmost"] = true; dict7["outpace"] = true; dict7["outplay"] = true; dict7["outport"] = true; dict7["outpost"] = true; dict6["output"] = true; dict7["outrage"] = true; dict7["outrank"] = true; dict5["outre"] = true; dict7["outride"] = true; dict7["outroar"] = true; dict6["outrun"] = true; dict7["outsail"] = true; dict7["outsell"] = true; dict6["outset"] = true; dict7["outside"] = true; dict7["outsize"] = true; dict7["outsole"] = true; dict7["outspan"] = true; dict7["outstay"] = true; dict7["outtake"] = true; dict7["outturn"] = true; dict6["outvie"] = true; dict7["outvote"] = true; dict7["outward"] = true; dict7["outwear"] = true; dict6["outwit"] = true; dict7["outwork"] = true; dict5["ouzel"] = true; dict4["ouzo"] = true; dict4["oval"] = true; dict7["ovarian"] = true; dict5["ovary"] = true; dict5["ovate"] = true; dict7["ovation"] = true; dict4["oven"] = true; dict4["over"] = true; dict7["overact"] = true; dict7["overage"] = true; dict7["overall"] = true; dict7["overarm"] = true; dict7["overawe"] = true; dict7["overbid"] = true; dict6["overdo"] = true; dict7["overdue"] = true; dict7["overeat"] = true; dict7["overfed"] = true; dict7["overfly"] = true; dict7["overjoy"] = true; dict7["overlap"] = true; dict7["overlay"] = true; dict7["overlie"] = true; dict7["overlip"] = true; dict6["overly"] = true; dict7["overpay"] = true; dict7["overrun"] = true; dict7["oversea"] = true; dict7["oversee"] = true; dict7["oversew"] = true; dict5["overt"] = true; dict7["overtax"] = true; dict7["overtly"] = true; dict7["overtop"] = true; dict7["overuse"] = true; dict6["ovibos"] = true; dict4["ovid"] = true; dict7["oviduct"] = true; dict6["oviedo"] = true; dict7["oviform"] = true; dict5["ovine"] = true; dict4["ovis"] = true; dict6["ovocon"] = true; dict5["ovoid"] = true; dict5["ovolo"] = true; dict5["ovral"] = true; dict7["ovrette"] = true; dict6["ovular"] = true; dict7["ovulate"] = true; dict5["ovule"] = true; dict6["ovulen"] = true; dict4["ovum"] = true; dict4["owen"] = true; dict5["owens"] = true; dict5["owing"] = true; dict5["owlet"] = true; dict6["owlish"] = true; dict4["owlt"] = true; dict5["owned"] = true; dict5["owner"] = true; dict7["ox-eyed"] = true; dict7["oxalate"] = true; dict6["oxalis"] = true; dict7["oxandra"] = true; dict5["oxbow"] = true; dict6["oxcart"] = true; dict4["oxen"] = true; dict5["oxeye"] = true; dict6["oxford"] = true; dict7["oxheart"] = true; dict7["oxidant"] = true; dict7["oxidase"] = true; dict7["oxidate"] = true; dict5["oxide"] = true; dict7["oxidise"] = true; dict7["oxidize"] = true; dict5["oxime"] = true; dict5["oxlip"] = true; dict7["oxonian"] = true; dict6["oxtail"] = true; dict6["oxtant"] = true; dict7["oxyacid"] = true; dict6["oxygen"] = true; dict7["oxyopia"] = true; dict7["oxytone"] = true; dict6["oxyura"] = true; dict6["oyabun"] = true; dict6["oyster"] = true; dict6["ozaena"] = true; dict6["ozarks"] = true; dict5["ozawa"] = true; dict5["ozena"] = true; dict5["ozone"] = true; dict7["ozonide"] = true; dict7["ozonise"] = true; dict7["ozonium"] = true; dict7["ozonize"] = true; dict4["p.a."] = true; dict4["p.e."] = true; dict4["p.m."] = true; dict4["p.o."] = true; dict7["pa'anga"] = true; dict4["paba"] = true; dict5["pabir"] = true; dict6["pablum"] = true; dict7["pabulum"] = true; dict4["paca"] = true; dict4["pace"] = true; dict5["pacer"] = true; dict5["pacha"] = true; dict7["pachisi"] = true; dict7["pachuco"] = true; dict7["pacific"] = true; dict6["pacify"] = true; dict6["pacing"] = true; dict4["pack"] = true; dict7["package"] = true; dict6["packed"] = true; dict6["packer"] = true; dict7["packera"] = true; dict6["packet"] = true; dict7["packing"] = true; dict7["packman"] = true; dict7["packrat"] = true; dict4["pact"] = true; dict6["padauk"] = true; dict5["padda"] = true; dict6["padded"] = true; dict6["padder"] = true; dict7["padding"] = true; dict6["paddle"] = true; dict7["paddler"] = true; dict7["paddock"] = true; dict5["paddy"] = true; dict7["padlock"] = true; dict6["padouk"] = true; dict6["padova"] = true; dict5["padre"] = true; dict7["padrone"] = true; dict5["padua"] = true; dict7["paducah"] = true; dict5["paean"] = true; dict6["paella"] = true; dict7["paeonia"] = true; dict6["paeony"] = true; dict5["pagad"] = true; dict5["pagan"] = true; dict4["page"] = true; dict7["pageant"] = true; dict7["pageboy"] = true; dict5["pager"] = true; dict5["paget"] = true; dict6["paging"] = true; dict6["pagoda"] = true; dict6["pagrus"] = true; dict7["pagurus"] = true; dict7["pahlavi"] = true; dict7["pahlevi"] = true; dict4["paid"] = true; dict7["paid-up"] = true; dict5["paige"] = true; dict6["paigle"] = true; dict4["pail"] = true; dict7["pailful"] = true; dict4["pain"] = true; dict5["paine"] = true; dict6["pained"] = true; dict7["painful"] = true; dict5["pains"] = true; dict5["paint"] = true; dict7["painted"] = true; dict7["painter"] = true; dict4["pair"] = true; dict6["paired"] = true; dict7["pairing"] = true; dict5["paisa"] = true; dict7["paisley"] = true; dict6["paiute"] = true; dict6["pajama"] = true; dict7["pakchoi"] = true; dict6["palace"] = true; dict7["paladin"] = true; dict6["palaic"] = true; dict5["palas"] = true; dict7["palatal"] = true; dict6["palate"] = true; dict5["palau"] = true; dict7["palaver"] = true; dict4["pale"] = true; dict6["palely"] = true; dict7["palermo"] = true; dict7["palette"] = true; dict7["palfrey"] = true; dict4["pali"] = true; dict6["paling"] = true; dict6["palish"] = true; dict4["pall"] = true; dict6["pallas"] = true; dict6["pallet"] = true; dict6["pallid"] = true; dict7["pallium"] = true; dict7["pallone"] = true; dict6["pallor"] = true; dict5["pally"] = true; dict4["palm"] = true; dict6["palmae"] = true; dict6["palmar"] = true; dict7["palmate"] = true; dict6["palmer"] = true; dict7["palmist"] = true; dict5["palmy"] = true; dict7["palmyra"] = true; dict7["palooka"] = true; dict7["palpate"] = true; dict7["palsied"] = true; dict5["palsy"] = true; dict6["palter"] = true; dict6["paltry"] = true; dict7["pamelor"] = true; dict7["pamlico"] = true; dict6["pampas"] = true; dict6["pamper"] = true; dict7["pan-fry"] = true; dict7["panacea"] = true; dict7["panache"] = true; dict7["panadol"] = true; dict6["panama"] = true; dict5["panax"] = true; dict7["pancake"] = true; dict5["panda"] = true; dict6["pandar"] = true; dict6["pander"] = true; dict7["pandion"] = true; dict7["pandora"] = true; dict4["pane"] = true; dict5["panel"] = true; dict7["paneled"] = true; dict7["panfish"] = true; dict4["pang"] = true; dict5["panga"] = true; dict7["pangaea"] = true; dict6["pangea"] = true; dict5["panic"] = true; dict7["panicky"] = true; dict7["panicle"] = true; dict7["panicum"] = true; dict6["panini"] = true; dict7["panipat"] = true; dict7["panjabi"] = true; dict7["pannier"] = true; dict7["panocha"] = true; dict7["panoche"] = true; dict7["panoply"] = true; dict7["panpipe"] = true; dict5["pansa"] = true; dict5["pansy"] = true; dict4["pant"] = true; dict7["panther"] = true; dict6["pantie"] = true; dict7["pantile"] = true; dict7["panting"] = true; dict5["panto"] = true; dict6["pantry"] = true; dict5["pants"] = true; dict5["panty"] = true; dict6["panzer"] = true; dict4["papa"] = true; dict6["papacy"] = true; dict6["papaia"] = true; dict6["papain"] = true; dict5["papal"] = true; dict7["papaver"] = true; dict5["papaw"] = true; dict6["papaya"] = true; dict7["papeete"] = true; dict5["paper"] = true; dict7["paperer"] = true; dict6["papers"] = true; dict6["papery"] = true; dict7["papilla"] = true; dict5["papio"] = true; dict6["papism"] = true; dict6["papist"] = true; dict7["papoose"] = true; dict5["pappa"] = true; dict7["pappose"] = true; dict6["pappus"] = true; dict7["paprika"] = true; dict5["papua"] = true; dict6["papuan"] = true; dict6["papule"] = true; dict7["papyrus"] = true; dict4["para"] = true; dict7["parable"] = true; dict6["parade"] = true; dict7["parader"] = true; dict7["paradox"] = true; dict7["paragon"] = true; dict6["parana"] = true; dict6["parang"] = true; dict7["parapet"] = true; dict6["paraph"] = true; dict7["parasol"] = true; dict7["parazoa"] = true; dict7["parboil"] = true; dict6["parcae"] = true; dict6["parcel"] = true; dict5["parch"] = true; dict7["parched"] = true; dict7["pardner"] = true; dict6["pardon"] = true; dict4["pare"] = true; dict6["parent"] = true; dict5["parer"] = true; dict7["paresis"] = true; dict7["paretic"] = true; dict6["pareto"] = true; dict6["pareve"] = true; dict7["parfait"] = true; dict6["parget"] = true; dict6["pariah"] = true; dict7["paridae"] = true; dict6["paries"] = true; dict6["paring"] = true; dict5["paris"] = true; dict6["parish"] = true; dict6["parity"] = true; dict5["parji"] = true; dict4["park"] = true; dict5["parka"] = true; dict6["parked"] = true; dict6["parker"] = true; dict6["parkia"] = true; dict7["parking"] = true; dict5["parks"] = true; dict7["parkway"] = true; dict5["parky"] = true; dict6["parlay"] = true; dict6["parley"] = true; dict6["parlor"] = true; dict7["parlour"] = true; dict7["parlous"] = true; dict7["parnell"] = true; dict6["parody"] = true; dict6["parole"] = true; dict7["parolee"] = true; dict7["parotid"] = true; dict6["parous"] = true; dict7["parquet"] = true; dict4["parr"] = true; dict7["parrish"] = true; dict6["parrot"] = true; dict5["parry"] = true; dict5["parse"] = true; dict6["parsec"] = true; dict6["parsee"] = true; dict6["parser"] = true; dict5["parsi"] = true; dict7["parsley"] = true; dict7["parsnip"] = true; dict6["parson"] = true; dict7["parsons"] = true; dict4["part"] = true; dict7["partake"] = true; dict6["parted"] = true; dict7["parthia"] = true; dict7["partial"] = true; dict7["parting"] = true; dict7["partita"] = true; dict6["partly"] = true; dict7["partner"] = true; dict5["parts"] = true; dict5["party"] = true; dict6["parula"] = true; dict5["parus"] = true; dict7["parvati"] = true; dict5["parve"] = true; dict7["parvenu"] = true; dict6["parvis"] = true; dict5["parvo"] = true; dict6["pasang"] = true; dict6["pascal"] = true; dict5["pasch"] = true; dict6["pascha"] = true; dict7["paschal"] = true; dict5["paseo"] = true; dict5["pasha"] = true; dict6["pashto"] = true; dict6["pashtu"] = true; dict7["pashtun"] = true; dict4["pass"] = true; dict7["passado"] = true; dict7["passage"] = true; dict7["passant"] = true; dict5["passe"] = true; dict6["passee"] = true; dict6["passel"] = true; dict6["passer"] = true; dict7["passero"] = true; dict6["passim"] = true; dict7["passing"] = true; dict7["passion"] = true; dict7["passive"] = true; dict7["passkey"] = true; dict4["past"] = true; dict5["pasta"] = true; dict5["paste"] = true; dict6["pasted"] = true; dict6["pastel"] = true; dict6["paster"] = true; dict7["pastern"] = true; dict7["pasteur"] = true; dict6["pastil"] = true; dict7["pastime"] = true; dict6["pastis"] = true; dict5["pasto"] = true; dict6["pastor"] = true; dict6["pastry"] = true; dict7["pasture"] = true; dict5["pasty"] = true; dict6["pataca"] = true; dict5["patas"] = true; dict5["patch"] = true; dict7["patched"] = true; dict6["patchy"] = true; dict4["pate"] = true; dict7["patella"] = true; dict7["patency"] = true; dict6["patent"] = true; dict5["pater"] = true; dict4["path"] = true; dict6["pathan"] = true; dict6["pathos"] = true; dict7["pathway"] = true; dict7["patient"] = true; dict6["patina"] = true; dict5["patio"] = true; dict5["patka"] = true; dict7["patness"] = true; dict6["patois"] = true; dict5["paton"] = true; dict6["patrai"] = true; dict6["patras"] = true; dict7["patrial"] = true; dict7["patrick"] = true; dict7["patriot"] = true; dict6["patrol"] = true; dict6["patron"] = true; dict5["patsy"] = true; dict6["patten"] = true; dict6["patter"] = true; dict7["pattern"] = true; dict5["patty"] = true; dict6["patwin"] = true; dict6["patzer"] = true; dict7["paucity"] = true; dict4["paul"] = true; dict5["pauli"] = true; dict7["pauline"] = true; dict7["pauling"] = true; dict6["paunch"] = true; dict7["paunchy"] = true; dict6["pauper"] = true; dict5["pause"] = true; dict6["pavage"] = true; dict5["pavan"] = true; dict6["pavane"] = true; dict4["pave"] = true; dict5["paved"] = true; dict6["paving"] = true; dict6["pavior"] = true; dict7["paviour"] = true; dict5["pavis"] = true; dict6["pavise"] = true; dict6["pavlov"] = true; dict7["pavlova"] = true; dict4["pavo"] = true; dict7["pavonia"] = true; dict5["pawer"] = true; dict5["pawky"] = true; dict4["pawl"] = true; dict4["pawn"] = true; dict6["pawnee"] = true; dict6["pawpaw"] = true; dict5["paxil"] = true; dict5["paxto"] = true; dict6["paxton"] = true; dict7["payable"] = true; dict7["payback"] = true; dict6["payday"] = true; dict4["paye"] = true; dict5["payee"] = true; dict6["payena"] = true; dict5["payer"] = true; dict6["paying"] = true; dict7["payload"] = true; dict7["payment"] = true; dict6["paynim"] = true; dict6["payoff"] = true; dict6["payola"] = true; dict7["payroll"] = true; dict7["payslip"] = true; dict4["pbit"] = true; dict5["pdflp"] = true; dict7["pe-tsai"] = true; dict7["peabody"] = true; dict5["peace"] = true; dict5["peach"] = true; dict6["peachy"] = true; dict7["peacoat"] = true; dict7["peacock"] = true; dict7["peafowl"] = true; dict4["peag"] = true; dict6["peahen"] = true; dict4["peak"] = true; dict6["peaked"] = true; dict5["peaky"] = true; dict4["peal"] = true; dict7["pealing"] = true; dict4["pean"] = true; dict6["peanut"] = true; dict7["peanuts"] = true; dict4["pear"] = true; dict5["pearl"] = true; dict7["pearler"] = true; dict6["pearly"] = true; dict5["peary"] = true; dict7["peasant"] = true; dict4["peat"] = true; dict5["peaty"] = true; dict6["peavey"] = true; dict5["peavy"] = true; dict4["peba"] = true; dict6["pebble"] = true; dict6["pebbly"] = true; dict7["pebibit"] = true; dict5["pecan"] = true; dict7["peccant"] = true; dict7["peccary"] = true; dict4["peck"] = true; dict6["pecker"] = true; dict7["peckish"] = true; dict5["pecos"] = true; dict4["pecs"] = true; dict6["pectic"] = true; dict6["pectin"] = true; dict6["pectus"] = true; dict7["pedagog"] = true; dict5["pedal"] = true; dict7["pedaler"] = true; dict6["pedant"] = true; dict6["pedate"] = true; dict6["peddle"] = true; dict7["peddler"] = true; dict7["pedesis"] = true; dict7["pedicab"] = true; dict7["pedicel"] = true; dict7["pedicle"] = true; dict6["pedlar"] = true; dict7["pedwood"] = true; dict7["pee-pee"] = true; dict6["peeing"] = true; dict4["peek"] = true; dict4["peel"] = true; dict6["peeled"] = true; dict6["peeler"] = true; dict7["peeling"] = true; dict4["peen"] = true; dict4["peep"] = true; dict6["peeper"] = true; dict6["peepul"] = true; dict4["peer"] = true; dict7["peerage"] = true; dict7["peeress"] = true; dict5["peeve"] = true; dict6["peeved"] = true; dict7["peevish"] = true; dict6["peewee"] = true; dict6["peewit"] = true; dict7["pegasus"] = true; dict6["pegleg"] = true; dict7["pehlevi"] = true; dict7["peiping"] = true; dict6["peirce"] = true; dict5["pekan"] = true; dict4["peke"] = true; dict6["peking"] = true; dict5["pekoe"] = true; dict6["pelage"] = true; dict7["pelagic"] = true; dict6["peleus"] = true; dict5["pelew"] = true; dict4["pelf"] = true; dict6["pelham"] = true; dict7["pelican"] = true; dict7["pelisse"] = true; dict7["pellaea"] = true; dict6["pellet"] = true; dict6["pelmet"] = true; dict6["pelota"] = true; dict4["pelt"] = true; dict7["peltate"] = true; dict6["pelter"] = true; dict7["pelting"] = true; dict6["peludo"] = true; dict6["pelvic"] = true; dict6["pelvis"] = true; dict7["pemican"] = true; dict5["penal"] = true; dict7["penally"] = true; dict7["penalty"] = true; dict7["penance"] = true; dict6["pencil"] = true; dict7["pendant"] = true; dict7["pendent"] = true; dict7["pending"] = true; dict6["peneus"] = true; dict5["pengo"] = true; dict7["penguin"] = true; dict6["penial"] = true; dict6["penile"] = true; dict5["penis"] = true; dict6["penman"] = true; dict4["penn"] = true; dict7["pennant"] = true; dict7["pennate"] = true; dict5["penne"] = true; dict5["penni"] = true; dict7["penning"] = true; dict6["pennon"] = true; dict5["penny"] = true; dict7["penoche"] = true; dict7["pension"] = true; dict7["pensive"] = true; dict4["pent"] = true; dict7["pent-up"] = true; dict6["pentad"] = true; dict7["pentail"] = true; dict7["pentode"] = true; dict7["pentose"] = true; dict7["penuche"] = true; dict6["penult"] = true; dict6["penury"] = true; dict4["peon"] = true; dict7["peonage"] = true; dict5["peony"] = true; dict6["people"] = true; dict7["peopled"] = true; dict7["peoples"] = true; dict6["peoria"] = true; dict6["pepcid"] = true; dict5["pepin"] = true; dict6["peplos"] = true; dict6["peplum"] = true; dict6["peplus"] = true; dict6["pepper"] = true; dict7["peppery"] = true; dict5["peppy"] = true; dict5["pepsi"] = true; dict6["pepsin"] = true; dict6["peptic"] = true; dict7["peptide"] = true; dict7["peptise"] = true; dict7["peptize"] = true; dict7["peptone"] = true; dict5["pepys"] = true; dict5["perca"] = true; dict7["percale"] = true; dict7["percent"] = true; dict7["percept"] = true; dict5["perch"] = true; dict7["percher"] = true; dict7["percina"] = true; dict7["percoid"] = true; dict7["percuss"] = true; dict5["percy"] = true; dict6["perdix"] = true; dict7["perejil"] = true; dict7["perfect"] = true; dict7["perfidy"] = true; dict7["perform"] = true; dict7["perfume"] = true; dict7["perfuse"] = true; dict7["pergola"] = true; dict7["perhaps"] = true; dict4["peri"] = true; dict7["peridot"] = true; dict7["perigee"] = true; dict7["perigon"] = true; dict5["peril"] = true; dict7["perilla"] = true; dict6["period"] = true; dict6["perish"] = true; dict7["periwig"] = true; dict7["perjure"] = true; dict7["perjury"] = true; dict4["perk"] = true; dict7["perkily"] = true; dict5["perky"] = true; dict4["perm"] = true; dict6["permed"] = true; dict7["permian"] = true; dict6["permic"] = true; dict6["permit"] = true; dict7["permute"] = true; dict6["pernio"] = true; dict6["pernis"] = true; dict6["pernod"] = true; dict5["peron"] = true; dict7["perplex"] = true; dict5["perry"] = true; dict6["persea"] = true; dict7["perseus"] = true; dict6["persia"] = true; dict7["persian"] = true; dict7["persist"] = true; dict6["person"] = true; dict7["persona"] = true; dict7["perspex"] = true; dict4["pert"] = true; dict7["pertain"] = true; dict5["perth"] = true; dict6["pertly"] = true; dict7["perturb"] = true; dict4["peru"] = true; dict6["peruke"] = true; dict7["peruked"] = true; dict7["perusal"] = true; dict6["peruse"] = true; dict6["perutz"] = true; dict7["pervade"] = true; dict7["pervert"] = true; dict6["pesach"] = true; dict5["pesah"] = true; dict6["peseta"] = true; dict6["pesewa"] = true; dict5["pesky"] = true; dict4["peso"] = true; dict7["pessary"] = true; dict4["pest"] = true; dict6["pester"] = true; dict6["pestis"] = true; dict6["pestle"] = true; dict5["pesto"] = true; dict7["petabit"] = true; dict5["petal"] = true; dict7["petaled"] = true; dict6["petard"] = true; dict7["petcock"] = true; dict5["peter"] = true; dict7["petfood"] = true; dict7["petiole"] = true; dict6["petite"] = true; dict7["petitio"] = true; dict6["petrel"] = true; dict7["petrify"] = true; dict6["petrol"] = true; dict7["petrous"] = true; dict6["petter"] = true; dict7["pettily"] = true; dict7["petting"] = true; dict7["pettish"] = true; dict5["petty"] = true; dict7["petunia"] = true; dict4["peul"] = true; dict5["pewee"] = true; dict5["pewit"] = true; dict6["pewter"] = true; dict6["peyote"] = true; dict6["peziza"] = true; dict5["pfalz"] = true; dict7["pfennig"] = true; dict4["pflp"] = true; dict7["pflp-gc"] = true; dict5["ph.d."] = true; dict7["phaeton"] = true; dict5["phage"] = true; dict6["phagun"] = true; dict6["phaius"] = true; dict7["phalanx"] = true; dict7["phallic"] = true; dict7["phallus"] = true; dict6["phalsa"] = true; dict7["phantom"] = true; dict7["pharaoh"] = true; dict6["pharma"] = true; dict6["pharos"] = true; dict7["pharynx"] = true; dict5["phase"] = true; dict7["phasmid"] = true; dict7["phellem"] = true; dict6["phenol"] = true; dict5["phial"] = true; dict7["phidias"] = true; dict6["philia"] = true; dict6["philip"] = true; dict7["philter"] = true; dict7["philtre"] = true; dict4["phiz"] = true; dict6["phlegm"] = true; dict7["phlegmy"] = true; dict6["phleum"] = true; dict6["phloem"] = true; dict7["phlomis"] = true; dict5["phlox"] = true; dict6["phobia"] = true; dict6["phobic"] = true; dict6["phobos"] = true; dict5["phoca"] = true; dict7["phocine"] = true; dict6["phoebe"] = true; dict7["phoebus"] = true; dict7["phoenix"] = true; dict6["pholas"] = true; dict6["pholis"] = true; dict4["phon"] = true; dict7["phonate"] = true; dict5["phone"] = true; dict7["phoneme"] = true; dict6["phoner"] = true; dict6["phoney"] = true; dict6["phonic"] = true; dict7["phonics"] = true; dict5["phony"] = true; dict4["phot"] = true; dict6["photic"] = true; dict7["photius"] = true; dict5["photo"] = true; dict6["photon"] = true; dict7["phrasal"] = true; dict6["phrase"] = true; dict7["phratry"] = true; dict7["phrenic"] = true; dict7["phrygia"] = true; dict5["phyle"] = true; dict6["phyllo"] = true; dict6["phylum"] = true; dict5["physa"] = true; dict6["physic"] = true; dict7["physics"] = true; dict4["piaf"] = true; dict6["piaffe"] = true; dict6["piaget"] = true; dict7["pianism"] = true; dict7["pianist"] = true; dict5["piano"] = true; dict7["pianola"] = true; dict7["piaster"] = true; dict7["piastre"] = true; dict6["piazza"] = true; dict7["pibgorn"] = true; dict5["pibit"] = true; dict7["pibroch"] = true; dict4["pica"] = true; dict7["picador"] = true; dict7["picardy"] = true; dict7["picasso"] = true; dict7["piccolo"] = true; dict5["picea"] = true; dict5["pichi"] = true; dict7["picidae"] = true; dict4["pick"] = true; dict6["pickax"] = true; dict7["pickaxe"] = true; dict6["picker"] = true; dict6["picket"] = true; dict7["pickett"] = true; dict7["picking"] = true; dict6["pickle"] = true; dict7["pickled"] = true; dict6["pickup"] = true; dict5["picky"] = true; dict6["picnic"] = true; dict5["picot"] = true; dict6["picris"] = true; dict6["pictor"] = true; dict7["picture"] = true; dict5["picul"] = true; dict7["piculet"] = true; dict5["picus"] = true; dict6["piddle"] = true; dict7["piddock"] = true; dict6["pidgin"] = true; dict7["pie-dog"] = true; dict7["piebald"] = true; dict5["piece"] = true; dict4["pied"] = true; dict4["pier"] = true; dict6["pierce"] = true; dict7["pierced"] = true; dict6["pierid"] = true; dict6["pieris"] = true; dict6["pierre"] = true; dict7["pierrot"] = true; dict5["pieta"] = true; dict7["pietism"] = true; dict5["piety"] = true; dict6["piffle"] = true; dict7["pigboat"] = true; dict6["pigeon"] = true; dict7["pigfish"] = true; dict7["piggery"] = true; dict7["piggish"] = true; dict5["piggy"] = true; dict6["piglet"] = true; dict6["pigman"] = true; dict7["pigment"] = true; dict5["pigmy"] = true; dict6["pignut"] = true; dict6["pigpen"] = true; dict7["pigskin"] = true; dict6["pigsty"] = true; dict7["pigtail"] = true; dict7["pigwash"] = true; dict7["pigweed"] = true; dict4["pika"] = true; dict4["pike"] = true; dict5["pilaf"] = true; dict6["pilaff"] = true; dict5["pilar"] = true; dict6["pilary"] = true; dict6["pilate"] = true; dict5["pilau"] = true; dict5["pilaw"] = true; dict4["pile"] = true; dict5["pilea"] = true; dict5["piles"] = true; dict6["pileup"] = true; dict6["pileus"] = true; dict6["pilfer"] = true; dict7["pilgrim"] = true; dict6["piling"] = true; dict4["pill"] = true; dict7["pillage"] = true; dict6["pillar"] = true; dict7["pillbox"] = true; dict7["pillion"] = true; dict7["pillock"] = true; dict7["pillory"] = true; dict6["pillow"] = true; dict6["pilose"] = true; dict5["pilot"] = true; dict6["pilous"] = true; dict6["pilsen"] = true; dict7["pilsner"] = true; dict5["pilus"] = true; dict4["pima"] = true; dict7["pimenta"] = true; dict7["pimento"] = true; dict7["pimlico"] = true; dict4["pimp"] = true; dict6["pimple"] = true; dict7["pimpled"] = true; dict6["pimply"] = true; dict6["pin-up"] = true; dict6["pinata"] = true; dict7["pinball"] = true; dict6["pincer"] = true; dict5["pinch"] = true; dict6["pinche"] = true; dict7["pinched"] = true; dict6["pincus"] = true; dict6["pindar"] = true; dict4["pine"] = true; dict6["pineal"] = true; dict7["pinesap"] = true; dict7["pinetum"] = true; dict6["pineus"] = true; dict7["pinfish"] = true; dict7["pinfold"] = true; dict4["ping"] = true; dict6["pinger"] = true; dict7["pinhead"] = true; dict7["pinhole"] = true; dict6["pining"] = true; dict6["pinion"] = true; dict6["pinite"] = true; dict4["pink"] = true; dict7["pinkeye"] = true; dict6["pinkie"] = true; dict7["pinkify"] = true; dict7["pinkish"] = true; dict5["pinko"] = true; dict5["pinky"] = true; dict5["pinna"] = true; dict7["pinnace"] = true; dict7["pinnate"] = true; dict6["pinner"] = true; dict7["pinning"] = true; dict7["pinnule"] = true; dict5["pinny"] = true; dict7["pinocle"] = true; dict6["pinole"] = true; dict5["pinon"] = true; dict5["pinot"] = true; dict5["pinsk"] = true; dict4["pint"] = true; dict7["pintado"] = true; dict7["pintail"] = true; dict6["pinter"] = true; dict6["pintle"] = true; dict5["pinto"] = true; dict5["pinus"] = true; dict7["pinworm"] = true; dict6["pinyon"] = true; dict6["piolet"] = true; dict4["pion"] = true; dict7["pioneer"] = true; dict5["pious"] = true; dict7["piously"] = true; dict4["pipa"] = true; dict6["pipage"] = true; dict5["pipal"] = true; dict4["pipe"] = true; dict7["pipeful"] = true; dict5["piper"] = true; dict7["piperin"] = true; dict5["pipet"] = true; dict7["pipette"] = true; dict7["pipidae"] = true; dict6["pipile"] = true; dict6["pipilo"] = true; dict6["piping"] = true; dict5["pipit"] = true; dict6["pippin"] = true; dict5["pipra"] = true; dict5["pipul"] = true; dict7["piquant"] = true; dict5["pique"] = true; dict6["piquet"] = true; dict6["piracy"] = true; dict6["pirana"] = true; dict7["piranga"] = true; dict7["piranha"] = true; dict6["pirate"] = true; dict6["pirogi"] = true; dict7["pirogue"] = true; dict4["pisa"] = true; dict7["piscary"] = true; dict6["pisces"] = true; dict7["piscine"] = true; dict7["pismire"] = true; dict7["pisonia"] = true; dict4["piss"] = true; dict7["piss-up"] = true; dict6["pissed"] = true; dict6["pisser"] = true; dict7["pissing"] = true; dict6["pissis"] = true; dict5["piste"] = true; dict6["pistia"] = true; dict6["pistil"] = true; dict6["pistol"] = true; dict6["piston"] = true; dict5["pisum"] = true; dict4["pita"] = true; dict7["pitanga"] = true; dict5["pitch"] = true; dict7["pitched"] = true; dict7["pitcher"] = true; dict6["pitchy"] = true; dict7["piteous"] = true; dict7["pitfall"] = true; dict4["pith"] = true; dict7["pithead"] = true; dict7["pithily"] = true; dict5["pithy"] = true; dict7["pitiful"] = true; dict6["pitman"] = true; dict7["pitocin"] = true; dict5["piton"] = true; dict5["pitot"] = true; dict7["pitprop"] = true; dict6["pitsaw"] = true; dict4["pitt"] = true; dict5["pitta"] = true; dict6["pitted"] = true; dict7["pitting"] = true; dict4["pity"] = true; dict7["pitymys"] = true; dict5["piute"] = true; dict5["pivot"] = true; dict7["pivotal"] = true; dict5["pixel"] = true; dict5["pixie"] = true; dict4["pixy"] = true; dict7["pizarro"] = true; dict5["pizza"] = true; dict6["pizzaz"] = true; dict7["pizzazz"] = true; dict4["pj's"] = true; dict7["placard"] = true; dict7["placate"] = true; dict5["place"] = true; dict7["placebo"] = true; dict6["placed"] = true; dict6["placer"] = true; dict6["placid"] = true; dict7["placket"] = true; dict7["placoid"] = true; dict7["placuna"] = true; dict5["plage"] = true; dict6["plague"] = true; dict7["plaguey"] = true; dict6["plaguy"] = true; dict6["plaice"] = true; dict5["plaid"] = true; dict5["plain"] = true; dict7["plainly"] = true; dict6["plaint"] = true; dict5["plait"] = true; dict7["plaiter"] = true; dict4["plan"] = true; dict6["planar"] = true; dict7["planate"] = true; dict6["planck"] = true; dict5["plane"] = true; dict6["planer"] = true; dict7["planera"] = true; dict6["planet"] = true; dict5["plank"] = true; dict7["planned"] = true; dict7["planner"] = true; dict5["plano"] = true; dict5["plant"] = true; dict7["plantae"] = true; dict7["plantal"] = true; dict7["plantar"] = true; dict7["planted"] = true; dict7["planter"] = true; dict7["planula"] = true; dict6["plaque"] = true; dict5["plash"] = true; dict5["plasm"] = true; dict6["plasma"] = true; dict7["plasmid"] = true; dict7["plasmin"] = true; dict7["plassey"] = true; dict7["plaster"] = true; dict7["plastic"] = true; dict7["plastid"] = true; dict4["plat"] = true; dict7["plataea"] = true; dict6["platan"] = true; dict5["plate"] = true; dict7["plateau"] = true; dict6["platen"] = true; dict6["plater"] = true; dict5["plath"] = true; dict7["plating"] = true; dict5["plato"] = true; dict7["platoon"] = true; dict6["platte"] = true; dict7["platter"] = true; dict5["platy"] = true; dict7["plaudit"] = true; dict7["plautus"] = true; dict6["plavix"] = true; dict4["play"] = true; dict7["playact"] = true; dict7["playbox"] = true; dict7["playboy"] = true; dict7["playday"] = true; dict6["played"] = true; dict6["player"] = true; dict7["playful"] = true; dict7["playing"] = true; dict7["playlet"] = true; dict7["playoff"] = true; dict7["playpen"] = true; dict5["plaza"] = true; dict4["plea"] = true; dict6["pleach"] = true; dict5["plead"] = true; dict7["pleader"] = true; dict6["please"] = true; dict7["pleased"] = true; dict7["pleaser"] = true; dict5["pleat"] = true; dict4["pleb"] = true; dict5["plebe"] = true; dict6["pledge"] = true; dict7["pledged"] = true; dict7["pledgee"] = true; dict7["pledger"] = true; dict7["pleione"] = true; dict7["plenary"] = true; dict6["plenty"] = true; dict6["plenum"] = true; dict7["pleopod"] = true; dict7["plessor"] = true; dict6["pleura"] = true; dict7["pleural"] = true; dict6["pleven"] = true; dict6["plevna"] = true; dict6["plexor"] = true; dict6["plexus"] = true; dict7["pliable"] = true; dict7["pliancy"] = true; dict6["pliant"] = true; dict5["plica"] = true; dict7["plicate"] = true; dict5["plier"] = true; dict6["pliers"] = true; dict6["plight"] = true; dict6["plinth"] = true; dict5["pliny"] = true; dict5["ploce"] = true; dict7["ploceus"] = true; dict4["plod"] = true; dict7["plodder"] = true; dict5["plonk"] = true; dict4["plop"] = true; dict7["plosion"] = true; dict7["plosive"] = true; dict4["plot"] = true; dict7["plotted"] = true; dict7["plotter"] = true; dict6["plough"] = true; dict7["plovdiv"] = true; dict6["plover"] = true; dict4["plow"] = true; dict7["plowboy"] = true; dict6["plowed"] = true; dict6["plower"] = true; dict7["plowing"] = true; dict7["plowman"] = true; dict4["ploy"] = true; dict5["pluck"] = true; dict7["plucked"] = true; dict6["plucky"] = true; dict4["plug"] = true; dict7["plug-in"] = true; dict7["plugged"] = true; dict7["plugger"] = true; dict4["plum"] = true; dict7["plumage"] = true; dict7["plumate"] = true; dict5["plumb"] = true; dict7["plumber"] = true; dict7["plumbic"] = true; dict7["plumcot"] = true; dict5["plume"] = true; dict6["plumed"] = true; dict7["plummet"] = true; dict6["plummy"] = true; dict7["plumose"] = true; dict5["plump"] = true; dict7["plumule"] = true; dict5["plumy"] = true; dict7["plunder"] = true; dict6["plunge"] = true; dict7["plunger"] = true; dict5["plunk"] = true; dict7["plunker"] = true; dict6["plural"] = true; dict4["plus"] = true; dict5["plush"] = true; dict6["plushy"] = true; dict7["pluteus"] = true; dict5["pluto"] = true; dict6["pluton"] = true; dict5["plyer"] = true; dict6["plyers"] = true; dict7["plywood"] = true; dict5["plzen"] = true; dict7["poaceae"] = true; dict5["poach"] = true; dict7["poached"] = true; dict7["poacher"] = true; dict7["pochard"] = true; dict4["pock"] = true; dict6["pocked"] = true; dict6["pocket"] = true; dict7["podcast"] = true; dict5["podgy"] = true; dict6["podium"] = true; dict7["podlike"] = true; dict6["podsol"] = true; dict6["podzol"] = true; dict4["poem"] = true; dict5["poesy"] = true; dict4["poet"] = true; dict7["poetess"] = true; dict6["poetic"] = true; dict7["poetics"] = true; dict7["poetise"] = true; dict7["poetize"] = true; dict6["poetry"] = true; dict5["pogey"] = true; dict5["pogge"] = true; dict7["pogonia"] = true; dict7["pogonip"] = true; dict6["pogrom"] = true; dict4["pogy"] = true; dict5["poilu"] = true; dict5["point"] = true; dict7["pointed"] = true; dict7["pointel"] = true; dict7["pointer"] = true; dict5["poise"] = true; dict6["poised"] = true; dict6["poison"] = true; dict7["poitier"] = true; dict6["poitou"] = true; dict4["poke"] = true; dict5["poker"] = true; dict5["pokey"] = true; dict6["poking"] = true; dict6["pokomo"] = true; dict4["poky"] = true; dict6["polack"] = true; dict6["poland"] = true; dict5["polar"] = true; dict7["polaris"] = true; dict6["polder"] = true; dict4["pole"] = true; dict6["poleax"] = true; dict7["poleaxe"] = true; dict7["polecat"] = true; dict7["polemic"] = true; dict7["polenta"] = true; dict5["poler"] = true; dict6["police"] = true; dict6["policy"] = true; dict5["polio"] = true; dict6["polish"] = true; dict6["polite"] = true; dict7["politic"] = true; dict6["polity"] = true; dict4["polk"] = true; dict5["polka"] = true; dict4["poll"] = true; dict7["pollack"] = true; dict7["pollard"] = true; dict6["pollen"] = true; dict6["pollex"] = true; dict7["pollock"] = true; dict5["polls"] = true; dict7["pollute"] = true; dict6["pollux"] = true; dict4["polo"] = true; dict6["polony"] = true; dict6["polska"] = true; dict7["polygon"] = true; dict7["polymer"] = true; dict7["polymox"] = true; dict7["polynya"] = true; dict7["polyoma"] = true; dict7["polyose"] = true; dict5["polyp"] = true; dict7["polypus"] = true; dict7["polyzoa"] = true; dict7["pom-pom"] = true; dict6["pomade"] = true; dict7["pomaded"] = true; dict7["pomatum"] = true; dict4["pome"] = true; dict6["pomelo"] = true; dict7["pomfret"] = true; dict6["pommel"] = true; dict5["pommy"] = true; dict4["pomo"] = true; dict7["pomoxis"] = true; dict4["pomp"] = true; dict7["pompano"] = true; dict7["pompeii"] = true; dict6["pompey"] = true; dict6["pompon"] = true; dict7["pompous"] = true; dict5["ponca"] = true; dict5["ponce"] = true; dict6["poncho"] = true; dict4["pond"] = true; dict6["ponder"] = true; dict4["pone"] = true; dict4["pong"] = true; dict6["pongee"] = true; dict6["pongid"] = true; dict5["pongo"] = true; dict7["poniard"] = true; dict5["ponka"] = true; dict4["pons"] = true; dict7["ponstel"] = true; dict7["pontiac"] = true; dict7["pontiff"] = true; dict7["pontoon"] = true; dict6["pontos"] = true; dict6["pontus"] = true; dict4["pony"] = true; dict5["pooch"] = true; dict4["pood"] = true; dict6["poodle"] = true; dict4["poof"] = true; dict4["pool"] = true; dict6["pooler"] = true; dict4["poon"] = true; dict4["poop"] = true; dict4["poor"] = true; dict6["poorly"] = true; dict5["poove"] = true; dict7["pop-fly"] = true; dict6["pop-up"] = true; dict7["popcorn"] = true; dict4["pope"] = true; dict6["popery"] = true; dict7["popeyed"] = true; dict6["popgun"] = true; dict6["popish"] = true; dict6["poplar"] = true; dict6["poplin"] = true; dict7["popover"] = true; dict6["popper"] = true; dict6["poppet"] = true; dict7["popping"] = true; dict5["poppy"] = true; dict7["popular"] = true; dict7["populus"] = true; dict4["porc"] = true; dict5["porch"] = true; dict7["porcine"] = true; dict4["pore"] = true; dict5["porgy"] = true; dict4["pork"] = true; dict6["porker"] = true; dict7["porkpie"] = true; dict4["porn"] = true; dict5["porno"] = true; dict6["porose"] = true; dict6["porous"] = true; dict4["port"] = true; dict5["porta"] = true; dict7["portage"] = true; dict6["portal"] = true; dict5["porte"] = true; dict7["portend"] = true; dict7["portent"] = true; dict6["porter"] = true; dict7["portico"] = true; dict7["portion"] = true; dict6["portly"] = true; dict5["porto"] = true; dict7["portray"] = true; dict7["porzana"] = true; dict4["pose"] = true; dict5["posed"] = true; dict5["poser"] = true; dict6["poseur"] = true; dict7["poseuse"] = true; dict4["posh"] = true; dict6["posing"] = true; dict5["posit"] = true; dict5["posse"] = true; dict7["possess"] = true; dict6["posset"] = true; dict6["possum"] = true; dict4["post"] = true; dict7["post-it"] = true; dict7["postage"] = true; dict6["postal"] = true; dict7["postbag"] = true; dict7["postbox"] = true; dict7["postdoc"] = true; dict6["posted"] = true; dict6["poster"] = true; dict7["postern"] = true; dict7["postfix"] = true; dict7["posting"] = true; dict7["postman"] = true; dict6["postum"] = true; dict7["posture"] = true; dict7["postwar"] = true; dict4["posy"] = true; dict7["potable"] = true; dict6["potage"] = true; dict6["potash"] = true; dict6["potato"] = true; dict6["potboy"] = true; dict6["poteen"] = true; dict7["potence"] = true; dict7["potency"] = true; dict6["potent"] = true; dict6["potful"] = true; dict7["pothead"] = true; dict6["pother"] = true; dict7["potherb"] = true; dict7["pothole"] = true; dict7["pothook"] = true; dict6["pothos"] = true; dict6["potion"] = true; dict7["potluck"] = true; dict6["potman"] = true; dict7["potomac"] = true; dict7["potoroo"] = true; dict5["potos"] = true; dict6["potpie"] = true; dict7["potsdam"] = true; dict7["potshot"] = true; dict7["pottage"] = true; dict6["potted"] = true; dict6["potter"] = true; dict7["pottery"] = true; dict6["pottle"] = true; dict5["potto"] = true; dict5["potty"] = true; dict5["pouch"] = true; dict7["pouched"] = true; dict7["poudrin"] = true; dict4["pouf"] = true; dict6["pouffe"] = true; dict7["poulenc"] = true; dict6["poulet"] = true; dict7["poultry"] = true; dict6["pounce"] = true; dict5["pound"] = true; dict7["poundal"] = true; dict7["pounder"] = true; dict4["pour"] = true; dict7["pouring"] = true; dict7["poussin"] = true; dict4["pout"] = true; dict6["pouter"] = true; dict7["poverty"] = true; dict6["powder"] = true; dict7["powdery"] = true; dict6["powell"] = true; dict5["power"] = true; dict7["powered"] = true; dict6["powwow"] = true; dict5["powys"] = true; dict6["poyang"] = true; dict5["poyou"] = true; dict7["pozsony"] = true; dict4["pplo"] = true; dict7["praetor"] = true; dict4["prag"] = true; dict6["prague"] = true; dict5["praha"] = true; dict5["praia"] = true; dict7["prairie"] = true; dict6["praise"] = true; dict7["prakrit"] = true; dict7["praline"] = true; dict4["pram"] = true; dict6["prance"] = true; dict7["prancer"] = true; dict5["prang"] = true; dict5["prank"] = true; dict4["prat"] = true; dict5["prate"] = true; dict6["prater"] = true; dict7["prattle"] = true; dict7["praunus"] = true; dict5["prawn"] = true; dict6["praxis"] = true; dict4["pray"] = true; dict5["praya"] = true; dict6["prayer"] = true; dict6["preach"] = true; dict7["preachy"] = true; dict7["preanal"] = true; dict7["prebend"] = true; dict7["precast"] = true; dict7["precava"] = true; dict7["precede"] = true; dict7["precept"] = true; dict7["precess"] = true; dict6["precis"] = true; dict7["precise"] = true; dict7["precook"] = true; dict7["predate"] = true; dict7["predict"] = true; dict7["preemie"] = true; dict7["preempt"] = true; dict5["preen"] = true; dict6["prefab"] = true; dict7["preface"] = true; dict7["prefect"] = true; dict6["prefer"] = true; dict6["prefix"] = true; dict7["preform"] = true; dict7["preheat"] = true; dict7["prehend"] = true; dict7["prelacy"] = true; dict7["prelate"] = true; dict6["prelim"] = true; dict7["prelims"] = true; dict7["prelone"] = true; dict7["prelude"] = true; dict6["premie"] = true; dict7["premier"] = true; dict7["premise"] = true; dict7["premiss"] = true; dict7["premium"] = true; dict6["premix"] = true; dict4["prep"] = true; dict7["prepaid"] = true; dict7["prepare"] = true; dict6["prepay"] = true; dict7["prepose"] = true; dict7["prepuce"] = true; dict7["presage"] = true; dict7["present"] = true; dict6["preset"] = true; dict7["preside"] = true; dict7["presley"] = true; dict5["press"] = true; dict7["pressed"] = true; dict7["pressor"] = true; dict6["presto"] = true; dict7["presume"] = true; dict7["preteen"] = true; dict7["pretend"] = true; dict7["pretext"] = true; dict6["pretor"] = true; dict6["pretty"] = true; dict7["pretzel"] = true; dict7["prevail"] = true; dict7["prevent"] = true; dict7["preview"] = true; dict7["previse"] = true; dict6["prevue"] = true; dict6["prewar"] = true; dict5["prexy"] = true; dict4["prey"] = true; dict5["priam"] = true; dict7["priapic"] = true; dict7["priapus"] = true; dict5["price"] = true; dict6["pricey"] = true; dict7["pricing"] = true; dict5["prick"] = true; dict7["pricker"] = true; dict7["pricket"] = true; dict7["prickle"] = true; dict7["prickly"] = true; dict5["pricy"] = true; dict5["pride"] = true; dict6["priest"] = true; dict4["prig"] = true; dict4["prim"] = true; dict5["prima"] = true; dict7["primacy"] = true; dict6["primal"] = true; dict7["primary"] = true; dict7["primate"] = true; dict5["prime"] = true; dict6["primed"] = true; dict6["primer"] = true; dict7["priming"] = true; dict6["primly"] = true; dict5["primo"] = true; dict5["primp"] = true; dict7["primula"] = true; dict6["primus"] = true; dict6["prince"] = true; dict6["prinia"] = true; dict5["prink"] = true; dict5["print"] = true; dict7["printer"] = true; dict5["prion"] = true; dict5["prior"] = true; dict6["priory"] = true; dict5["prise"] = true; dict5["prism"] = true; dict6["prison"] = true; dict6["prissy"] = true; dict7["pristis"] = true; dict7["privacy"] = true; dict7["private"] = true; dict6["privet"] = true; dict7["privily"] = true; dict7["privine"] = true; dict5["privy"] = true; dict5["prize"] = true; dict7["probate"] = true; dict5["probe"] = true; dict7["probing"] = true; dict7["probity"] = true; dict7["problem"] = true; dict7["proceed"] = true; dict7["process"] = true; dict7["proctor"] = true; dict7["procure"] = true; dict7["procyon"] = true; dict4["prod"] = true; dict7["prodigy"] = true; dict7["produce"] = true; dict7["product"] = true; dict4["prof"] = true; dict7["profane"] = true; dict7["profess"] = true; dict7["proffer"] = true; dict7["profile"] = true; dict6["profit"] = true; dict7["profits"] = true; dict7["profuse"] = true; dict7["progeny"] = true; dict6["progne"] = true; dict7["program"] = true; dict7["project"] = true; dict7["prolate"] = true; dict5["prole"] = true; dict7["proline"] = true; dict6["prolix"] = true; dict6["prolog"] = true; dict7["prolong"] = true; dict4["prom"] = true; dict7["promise"] = true; dict7["promote"] = true; dict6["prompt"] = true; dict7["pronate"] = true; dict5["prone"] = true; dict5["prong"] = true; dict7["pronged"] = true; dict6["prongy"] = true; dict5["pronk"] = true; dict7["pronoun"] = true; dict6["pronto"] = true; dict5["proof"] = true; dict7["proofed"] = true; dict4["prop"] = true; dict7["propane"] = true; dict6["propel"] = true; dict7["propene"] = true; dict6["proper"] = true; dict7["prophet"] = true; dict7["propjet"] = true; dict7["propman"] = true; dict7["propose"] = true; dict5["props"] = true; dict6["propyl"] = true; dict7["prorate"] = true; dict7["prosaic"] = true; dict5["prose"] = true; dict7["prosily"] = true; dict7["prosody"] = true; dict6["prosom"] = true; dict7["prosper"] = true; dict5["prosy"] = true; dict6["protea"] = true; dict7["protean"] = true; dict7["protect"] = true; dict7["protege"] = true; dict7["protein"] = true; dict7["protest"] = true; dict7["proteus"] = true; dict7["protist"] = true; dict7["protium"] = true; dict5["proto"] = true; dict6["proton"] = true; dict7["protura"] = true; dict5["proud"] = true; dict7["proudly"] = true; dict6["proust"] = true; dict5["prove"] = true; dict6["proved"] = true; dict6["proven"] = true; dict7["provera"] = true; dict7["proverb"] = true; dict7["provide"] = true; dict7["proviso"] = true; dict5["provo"] = true; dict7["provoke"] = true; dict6["provos"] = true; dict7["provost"] = true; dict4["prow"] = true; dict7["prowess"] = true; dict5["prowl"] = true; dict7["prowler"] = true; dict4["prox"] = true; dict7["proxima"] = true; dict7["proximo"] = true; dict5["proxy"] = true; dict6["prozac"] = true; dict5["prude"] = true; dict7["prudent"] = true; dict7["prudery"] = true; dict7["prudish"] = true; dict5["prune"] = true; dict6["pruner"] = true; dict7["pruning"] = true; dict5["pruno"] = true; dict6["prunus"] = true; dict7["prurigo"] = true; dict7["prussia"] = true; dict6["prying"] = true; dict5["psalm"] = true; dict6["psalms"] = true; dict7["psalter"] = true; dict6["psenes"] = true; dict6["psetta"] = true; dict5["pseud"] = true; dict6["pseudo"] = true; dict7["psidium"] = true; dict5["psoas"] = true; dict6["psocid"] = true; dict7["psophia"] = true; dict6["psyche"] = true; dict7["psychic"] = true; dict6["psycho"] = true; dict6["psylla"] = true; dict7["psyllid"] = true; dict5["psyop"] = true; dict4["ptah"] = true; dict7["pterion"] = true; dict6["pteris"] = true; dict7["pterois"] = true; dict7["ptloris"] = true; dict7["ptolemy"] = true; dict7["ptomain"] = true; dict6["ptosis"] = true; dict4["ptsd"] = true; dict7["ptyalin"] = true; dict5["ptyas"] = true; dict7["puberty"] = true; dict5["pubes"] = true; dict5["pubic"] = true; dict5["pubis"] = true; dict6["public"] = true; dict7["publish"] = true; dict7["puccini"] = true; dict7["puccoon"] = true; dict4["puce"] = true; dict4["puck"] = true; dict5["pucka"] = true; dict6["pucker"] = true; dict7["puckish"] = true; dict7["pudding"] = true; dict6["puddle"] = true; dict7["puddler"] = true; dict5["pudge"] = true; dict5["pudgy"] = true; dict6["puebla"] = true; dict6["pueblo"] = true; dict7["puerile"] = true; dict4["puff"] = true; dict6["puffed"] = true; dict6["puffer"] = true; dict7["puffery"] = true; dict6["puffin"] = true; dict7["puffing"] = true; dict5["puffy"] = true; dict7["pug-dog"] = true; dict5["pugin"] = true; dict6["puglia"] = true; dict7["pujunan"] = true; dict4["puka"] = true; dict4["puke"] = true; dict6["puking"] = true; dict5["pukka"] = true; dict4["puku"] = true; dict4["pula"] = true; dict7["pulasan"] = true; dict4["pule"] = true; dict5["pulex"] = true; dict4["pull"] = true; dict7["pull-in"] = true; dict7["pull-up"] = true; dict6["puller"] = true; dict6["pullet"] = true; dict6["pulley"] = true; dict7["pulling"] = true; dict7["pullman"] = true; dict7["pullout"] = true; dict4["pulp"] = true; dict6["pulpit"] = true; dict5["pulpy"] = true; dict6["pulque"] = true; dict6["pulsar"] = true; dict7["pulsate"] = true; dict5["pulse"] = true; dict7["pulsing"] = true; dict4["puma"] = true; dict6["pumice"] = true; dict6["pummel"] = true; dict7["pummelo"] = true; dict4["pump"] = true; dict6["pumped"] = true; dict7["pumpkin"] = true; dict5["punch"] = true; dict7["puncher"] = true; dict7["punctum"] = true; dict6["pundit"] = true; dict4["pung"] = true; dict7["pungent"] = true; dict5["punic"] = true; dict6["punica"] = true; dict6["punily"] = true; dict6["punish"] = true; dict6["punjab"] = true; dict7["punjabi"] = true; dict4["punk"] = true; dict6["punkah"] = true; dict6["punkey"] = true; dict6["punkie"] = true; dict5["punks"] = true; dict5["punky"] = true; dict6["punnet"] = true; dict7["punning"] = true; dict7["punster"] = true; dict4["punt"] = true; dict6["punter"] = true; dict7["punting"] = true; dict4["puny"] = true; dict4["pupa"] = true; dict5["pupal"] = true; dict6["pupate"] = true; dict5["pupil"] = true; dict6["puppet"] = true; dict6["puppis"] = true; dict5["puppy"] = true; dict6["purace"] = true; dict6["purana"] = true; dict7["puranic"] = true; dict5["purau"] = true; dict7["purcell"] = true; dict6["purdah"] = true; dict4["pure"] = true; dict5["puree"] = true; dict6["purely"] = true; dict5["purge"] = true; dict7["purging"] = true; dict6["purify"] = true; dict5["purim"] = true; dict6["purine"] = true; dict6["purism"] = true; dict6["purist"] = true; dict7["puritan"] = true; dict6["purity"] = true; dict4["purl"] = true; dict7["purlieu"] = true; dict7["purloin"] = true; dict6["purloo"] = true; dict6["purple"] = true; dict7["purport"] = true; dict7["purpose"] = true; dict7["purpura"] = true; dict4["purr"] = true; dict5["purse"] = true; dict6["purser"] = true; dict7["pursual"] = true; dict6["pursue"] = true; dict7["pursued"] = true; dict7["pursuer"] = true; dict7["pursuit"] = true; dict5["pursy"] = true; dict5["purus"] = true; dict6["purvey"] = true; dict7["purview"] = true; dict5["pusan"] = true; dict5["pusey"] = true; dict4["push"] = true; dict6["pushan"] = true; dict6["pusher"] = true; dict7["pushful"] = true; dict7["pushing"] = true; dict7["pushkin"] = true; dict7["pushpin"] = true; dict7["pushtun"] = true; dict6["pushup"] = true; dict5["pushy"] = true; dict4["puss"] = true; dict7["pussley"] = true; dict6["pussly"] = true; dict5["pussy"] = true; dict7["pustule"] = true; dict6["put-on"] = true; dict7["put-put"] = true; dict6["put-up"] = true; dict7["putamen"] = true; dict5["putin"] = true; dict6["putoff"] = true; dict6["putout"] = true; dict7["putrefy"] = true; dict6["putrid"] = true; dict6["putsch"] = true; dict4["putt"] = true; dict6["puttee"] = true; dict6["putter"] = true; dict7["putting"] = true; dict5["putty"] = true; dict4["putz"] = true; dict6["puzzle"] = true; dict7["puzzled"] = true; dict7["puzzler"] = true; dict7["pyaemia"] = true; dict7["pyaemic"] = true; dict5["pydna"] = true; dict7["pye-dog"] = true; dict6["pyemia"] = true; dict6["pyemic"] = true; dict5["pygmy"] = true; dict7["pygopus"] = true; dict6["pyinma"] = true; dict6["pyjama"] = true; dict6["pyknic"] = true; dict4["pyle"] = true; dict5["pylon"] = true; dict7["pyloric"] = true; dict7["pylorus"] = true; dict7["pynchon"] = true; dict7["pyralid"] = true; dict7["pyralis"] = true; dict7["pyramid"] = true; dict4["pyre"] = true; dict6["pyrene"] = true; dict7["pyretic"] = true; dict5["pyrex"] = true; dict7["pyrexia"] = true; dict6["pyrite"] = true; dict7["pyrites"] = true; dict7["pyrogen"] = true; dict6["pyrola"] = true; dict6["pyrope"] = true; dict7["pyrosis"] = true; dict7["pyrrhic"] = true; dict7["pyrrhus"] = true; dict5["pyrus"] = true; dict6["pythia"] = true; dict7["pythias"] = true; dict7["pythium"] = true; dict7["pythius"] = true; dict6["python"] = true; dict6["pyuria"] = true; dict5["pyxie"] = true; dict5["pyxis"] = true; dict6["qabala"] = true; dict7["qabalah"] = true; dict7["qabbala"] = true; dict7["qaddafi"] = true; dict7["qadhafi"] = true; dict4["qadi"] = true; dict5["qaeda"] = true; dict5["qatar"] = true; dict6["qatari"] = true; dict5["qepiq"] = true; dict5["qiang"] = true; dict7["qiangic"] = true; dict5["qibla"] = true; dict4["qing"] = true; dict6["qintar"] = true; dict4["qoph"] = true; dict5["quack"] = true; dict4["quad"] = true; dict7["quadric"] = true; dict5["quaff"] = true; dict7["quaffer"] = true; dict4["quag"] = true; dict6["quagga"] = true; dict6["quaggy"] = true; dict7["quahaug"] = true; dict6["quahog"] = true; dict5["quail"] = true; dict6["quaint"] = true; dict5["quake"] = true; dict6["quaker"] = true; dict7["quakers"] = true; dict7["qualify"] = true; dict7["quality"] = true; dict5["qualm"] = true; dict7["quamash"] = true; dict6["quango"] = true; dict7["quantal"] = true; dict7["quantic"] = true; dict7["quantum"] = true; dict6["quaoar"] = true; dict6["quapaw"] = true; dict5["quark"] = true; dict7["quarrel"] = true; dict6["quarry"] = true; dict5["quart"] = true; dict7["quartan"] = true; dict7["quarter"] = true; dict7["quartet"] = true; dict7["quartic"] = true; dict6["quarto"] = true; dict6["quartz"] = true; dict6["quasar"] = true; dict5["quash"] = true; dict5["quasi"] = true; dict7["quassia"] = true; dict4["quat"] = true; dict7["quatern"] = true; dict6["quaver"] = true; dict4["quay"] = true; dict7["quayage"] = true; dict6["queasy"] = true; dict6["quebec"] = true; dict7["quechua"] = true; dict5["queen"] = true; dict7["queenly"] = true; dict6["queens"] = true; dict5["queer"] = true; dict7["queerly"] = true; dict5["quell"] = true; dict7["quelled"] = true; dict6["quench"] = true; dict7["quercus"] = true; dict7["querier"] = true; dict5["quern"] = true; dict5["query"] = true; dict5["quest"] = true; dict7["quester"] = true; dict6["quetch"] = true; dict7["quetzal"] = true; dict5["queue"] = true; dict7["quibble"] = true; dict6["quiche"] = true; dict5["quick"] = true; dict7["quicken"] = true; dict7["quicker"] = true; dict7["quickie"] = true; dict7["quickly"] = true; dict6["quicky"] = true; dict4["quid"] = true; dict7["quiesce"] = true; dict5["quiet"] = true; dict7["quieten"] = true; dict7["quietly"] = true; dict7["quietus"] = true; dict5["quiff"] = true; dict5["quill"] = true; dict5["quilt"] = true; dict7["quilted"] = true; dict4["quin"] = true; dict6["quince"] = true; dict6["quincy"] = true; dict5["quine"] = true; dict7["quinine"] = true; dict7["quinone"] = true; dict7["quinora"] = true; dict6["quinsy"] = true; dict5["quint"] = true; dict7["quintal"] = true; dict7["quintet"] = true; dict4["quip"] = true; dict5["quipu"] = true; dict5["quira"] = true; dict5["quire"] = true; dict5["quirk"] = true; dict6["quirky"] = true; dict5["quirt"] = true; dict4["quit"] = true; dict5["quite"] = true; dict5["quito"] = true; dict5["quits"] = true; dict7["quitter"] = true; dict6["quiver"] = true; dict4["quiz"] = true; dict7["quizzer"] = true; dict5["quoin"] = true; dict5["quoit"] = true; dict6["quoits"] = true; dict7["quondam"] = true; dict6["quorum"] = true; dict5["quota"] = true; dict5["quote"] = true; dict6["quoter"] = true; dict5["quran"] = true; dict6["qurush"] = true; dict4["r.c."] = true; dict4["r.v."] = true; dict5["rabat"] = true; dict6["rabato"] = true; dict6["rabbet"] = true; dict5["rabbi"] = true; dict6["rabbit"] = true; dict6["rabble"] = true; dict5["rabid"] = true; dict6["rabies"] = true; dict7["raccoon"] = true; dict4["race"] = true; dict6["raceme"] = true; dict5["racer"] = true; dict7["raceway"] = true; dict6["rachel"] = true; dict6["rachet"] = true; dict6["rachis"] = true; dict6["racial"] = true; dict6["racily"] = true; dict6["racine"] = true; dict6["racing"] = true; dict6["racism"] = true; dict6["racist"] = true; dict4["rack"] = true; dict6["racker"] = true; dict6["racket"] = true; dict7["rackety"] = true; dict7["racking"] = true; dict5["racon"] = true; dict6["racoon"] = true; dict7["racquet"] = true; dict4["racy"] = true; dict5["radar"] = true; dict6["raddle"] = true; dict7["raddled"] = true; dict6["radial"] = true; dict6["radian"] = true; dict7["radiant"] = true; dict7["radiate"] = true; dict7["radical"] = true; dict7["radicle"] = true; dict5["radio"] = true; dict6["radish"] = true; dict6["radium"] = true; dict6["radius"] = true; dict5["radix"] = true; dict6["radome"] = true; dict5["radon"] = true; dict7["radyera"] = true; dict6["raetam"] = true; dict6["raffia"] = true; dict7["raffish"] = true; dict6["raffle"] = true; dict7["raffles"] = true; dict4["raft"] = true; dict6["rafter"] = true; dict7["raftman"] = true; dict5["rafts"] = true; dict6["ragbag"] = true; dict4["rage"] = true; dict5["ragee"] = true; dict6["ragged"] = true; dict4["ragi"] = true; dict6["raging"] = true; dict6["raglan"] = true; dict6["ragout"] = true; dict6["ragtag"] = true; dict7["ragtime"] = true; dict6["ragusa"] = true; dict7["ragweed"] = true; dict7["ragwort"] = true; dict4["rahu"] = true; dict4["raid"] = true; dict6["raider"] = true; dict7["raiding"] = true; dict4["rail"] = true; dict7["railcar"] = true; dict7["railing"] = true; dict5["rails"] = true; dict7["railway"] = true; dict7["raiment"] = true; dict4["rain"] = true; dict7["rainbow"] = true; dict7["rainfly"] = true; dict7["raining"] = true; dict5["rainy"] = true; dict5["raise"] = true; dict6["raised"] = true; dict6["raiser"] = true; dict6["raisin"] = true; dict7["raising"] = true; dict5["raita"] = true; dict4["raiu"] = true; dict4["raja"] = true; dict5["rajab"] = true; dict5["rajah"] = true; dict7["rajanya"] = true; dict7["rajidae"] = true; dict7["rajpoot"] = true; dict6["rajput"] = true; dict4["rake"] = true; dict6["rakish"] = true; dict4["rale"] = true; dict6["ralegh"] = true; dict7["raleigh"] = true; dict5["rally"] = true; dict4["rama"] = true; dict7["ramadan"] = true; dict6["ramate"] = true; dict6["ramble"] = true; dict7["rambler"] = true; dict6["rameau"] = true; dict5["ramee"] = true; dict7["ramekin"] = true; dict7["rameses"] = true; dict5["ramie"] = true; dict6["ramify"] = true; dict6["ramjet"] = true; dict6["ramman"] = true; dict6["rammer"] = true; dict6["ramona"] = true; dict6["ramose"] = true; dict6["ramous"] = true; dict4["ramp"] = true; dict7["rampage"] = true; dict7["rampant"] = true; dict7["rampart"] = true; dict7["rampion"] = true; dict6["ramrod"] = true; dict6["ramses"] = true; dict7["ramsons"] = true; dict5["ramus"] = true; dict4["rana"] = true; dict7["ranales"] = true; dict7["ranatra"] = true; dict5["ranch"] = true; dict7["rancher"] = true; dict6["rancid"] = true; dict6["rancor"] = true; dict7["rancour"] = true; dict4["rand"] = true; dict6["random"] = true; dict5["randy"] = true; dict5["ranee"] = true; dict5["range"] = true; dict6["ranger"] = true; dict7["ranging"] = true; dict7["rangoon"] = true; dict7["rangpur"] = true; dict5["rangy"] = true; dict4["rani"] = true; dict5["ranid"] = true; dict7["ranidae"] = true; dict6["ranier"] = true; dict4["rank"] = true; dict6["ranked"] = true; dict6["ranker"] = true; dict6["rankin"] = true; dict7["rankine"] = true; dict7["ranking"] = true; dict6["rankle"] = true; dict7["ransack"] = true; dict6["ransom"] = true; dict4["rant"] = true; dict6["ranter"] = true; dict7["ranting"] = true; dict6["ranula"] = true; dict7["raoulia"] = true; dict4["rape"] = true; dict5["raped"] = true; dict5["raper"] = true; dict7["raphael"] = true; dict5["raphe"] = true; dict6["raphia"] = true; dict6["raphus"] = true; dict5["rapid"] = true; dict7["rapidly"] = true; dict6["rapier"] = true; dict6["rapine"] = true; dict6["rapist"] = true; dict6["rappee"] = true; dict6["rappel"] = true; dict6["rapper"] = true; dict7["rapport"] = true; dict4["rapt"] = true; dict6["raptor"] = true; dict7["rapture"] = true; dict6["raptus"] = true; dict4["rare"] = true; dict7["rarebit"] = true; dict6["rarefy"] = true; dict6["rarely"] = true; dict6["rarify"] = true; dict6["raring"] = true; dict7["rariora"] = true; dict6["rarity"] = true; dict6["rascal"] = true; dict4["rase"] = true; dict4["rash"] = true; dict6["rasher"] = true; dict6["rashly"] = true; dict5["rasht"] = true; dict4["rask"] = true; dict4["rasp"] = true; dict7["rasping"] = true; dict5["raspy"] = true; dict5["rasta"] = true; dict6["rastas"] = true; dict6["raster"] = true; dict7["rat-tat"] = true; dict7["ratable"] = true; dict7["ratafee"] = true; dict7["ratafia"] = true; dict5["ratan"] = true; dict5["ratch"] = true; dict7["ratchet"] = true; dict4["rate"] = true; dict5["ratel"] = true; dict5["rates"] = true; dict6["rather"] = true; dict7["rathole"] = true; dict6["ratify"] = true; dict6["rating"] = true; dict5["ratio"] = true; dict6["ration"] = true; dict7["ratitae"] = true; dict6["ratite"] = true; dict7["ratlike"] = true; dict6["ratlin"] = true; dict7["ratline"] = true; dict7["rattail"] = true; dict6["rattan"] = true; dict6["ratter"] = true; dict7["ratting"] = true; dict6["rattle"] = true; dict7["rattled"] = true; dict7["rattler"] = true; dict7["rattrap"] = true; dict6["rattus"] = true; dict5["ratty"] = true; dict7["rau-sed"] = true; dict7["raucous"] = true; dict6["raunch"] = true; dict7["raunchy"] = true; dict6["ravage"] = true; dict7["ravaged"] = true; dict4["rave"] = true; dict7["rave-up"] = true; dict5["ravel"] = true; dict5["raven"] = true; dict7["ravenna"] = true; dict5["raver"] = true; dict6["ravine"] = true; dict6["raving"] = true; dict7["ravioli"] = true; dict6["ravish"] = true; dict7["rawhide"] = true; dict7["rawness"] = true; dict7["rayless"] = true; dict5["rayon"] = true; dict6["rayons"] = true; dict4["raze"] = true; dict5["razed"] = true; dict6["razing"] = true; dict5["razor"] = true; dict4["razz"] = true; dict7["razzing"] = true; dict6["razzle"] = true; dict4["rcmp"] = true; dict6["re-arm"] = true; dict7["re-echo"] = true; dict5["reach"] = true; dict5["react"] = true; dict7["reactor"] = true; dict4["read"] = true; dict7["readapt"] = true; dict6["reader"] = true; dict7["readily"] = true; dict7["reading"] = true; dict7["readmit"] = true; dict7["readout"] = true; dict5["ready"] = true; dict6["reagan"] = true; dict7["reagent"] = true; dict6["reagin"] = true; dict4["real"] = true; dict7["realgar"] = true; dict7["realign"] = true; dict7["realine"] = true; dict7["realise"] = true; dict7["realism"] = true; dict7["realist"] = true; dict7["reality"] = true; dict7["realize"] = true; dict7["reallot"] = true; dict6["really"] = true; dict5["realm"] = true; dict7["realtor"] = true; dict6["realty"] = true; dict4["ream"] = true; dict6["reamer"] = true; dict4["reap"] = true; dict6["reaper"] = true; dict4["rear"] = true; dict7["rearing"] = true; dict5["rearm"] = true; dict6["reason"] = true; dict5["reata"] = true; dict7["reaumur"] = true; dict5["reave"] = true; dict6["rebate"] = true; dict6["rebato"] = true; dict7["rebecca"] = true; dict7["rebekah"] = true; dict5["rebel"] = true; dict6["rebind"] = true; dict7["rebirth"] = true; dict6["reboot"] = true; dict6["reborn"] = true; dict7["rebound"] = true; dict6["rebozo"] = true; dict6["rebuff"] = true; dict7["rebuild"] = true; dict6["rebuke"] = true; dict7["rebuker"] = true; dict6["rebury"] = true; dict5["rebus"] = true; dict5["rebut"] = true; dict6["recall"] = true; dict6["recant"] = true; dict5["recap"] = true; dict6["recast"] = true; dict5["recce"] = true; dict5["recco"] = true; dict5["reccy"] = true; dict6["recede"] = true; dict7["receipt"] = true; dict7["receive"] = true; dict7["recency"] = true; dict6["recent"] = true; dict6["recess"] = true; dict6["recife"] = true; dict6["recipe"] = true; dict7["recital"] = true; dict6["recite"] = true; dict7["reciter"] = true; dict6["reckon"] = true; dict7["reclaim"] = true; dict7["recline"] = true; dict7["recluse"] = true; dict6["recode"] = true; dict6["recoil"] = true; dict6["recopy"] = true; dict6["record"] = true; dict7["recount"] = true; dict6["recoup"] = true; dict7["recover"] = true; dict7["recruit"] = true; dict6["rectal"] = true; dict7["rectify"] = true; dict5["recto"] = true; dict6["rector"] = true; dict7["rectory"] = true; dict6["rectum"] = true; dict6["rectus"] = true; dict6["recumb"] = true; dict5["recur"] = true; dict7["recurve"] = true; dict7["recusal"] = true; dict6["recuse"] = true; dict7["recycle"] = true; dict7["red-eye"] = true; dict7["red-hot"] = true; dict7["red-ink"] = true; dict6["redact"] = true; dict7["redbird"] = true; dict7["redbone"] = true; dict6["redbud"] = true; dict6["redbug"] = true; dict6["redcap"] = true; dict7["redcoat"] = true; dict6["redden"] = true; dict7["redding"] = true; dict7["reddish"] = true; dict6["reddle"] = true; dict4["rede"] = true; dict6["redeem"] = true; dict6["redeye"] = true; dict7["redfish"] = true; dict7["redford"] = true; dict7["redhead"] = true; dict7["redline"] = true; dict5["redly"] = true; dict7["redneck"] = true; dict7["redness"] = true; dict4["redo"] = true; dict7["redonda"] = true; dict7["redoubt"] = true; dict7["redound"] = true; dict5["redox"] = true; dict7["redpoll"] = true; dict7["redraft"] = true; dict7["redress"] = true; dict7["redroot"] = true; dict7["redskin"] = true; dict7["redtail"] = true; dict6["reduce"] = true; dict7["reduced"] = true; dict7["reducer"] = true; dict5["redux"] = true; dict7["redwing"] = true; dict7["redwood"] = true; dict6["reecho"] = true; dict4["reed"] = true; dict5["reedy"] = true; dict4["reef"] = true; dict6["reefer"] = true; dict5["reefy"] = true; dict4["reek"] = true; dict7["reeking"] = true; dict4["reel"] = true; dict7["reelect"] = true; dict6["reeler"] = true; dict7["reenact"] = true; dict7["reentry"] = true; dict5["reeve"] = true; dict6["reface"] = true; dict5["refer"] = true; dict7["referee"] = true; dict6["refill"] = true; dict6["refine"] = true; dict7["refined"] = true; dict7["refiner"] = true; dict5["refit"] = true; dict7["reflate"] = true; dict7["reflect"] = true; dict6["reflex"] = true; dict7["refloat"] = true; dict6["reflux"] = true; dict7["refocus"] = true; dict7["reforge"] = true; dict6["reform"] = true; dict7["refract"] = true; dict7["refrain"] = true; dict7["refresh"] = true; dict6["refuel"] = true; dict6["refuge"] = true; dict7["refugee"] = true; dict6["refund"] = true; dict7["refusal"] = true; dict6["refuse"] = true; dict7["refutal"] = true; dict6["refute"] = true; dict7["refuter"] = true; dict6["regain"] = true; dict5["regal"] = true; dict6["regale"] = true; dict7["regalia"] = true; dict7["regally"] = true; dict6["regard"] = true; dict7["regatta"] = true; dict7["regency"] = true; dict6["regent"] = true; dict6["reggae"] = true; dict7["reggane"] = true; dict6["regime"] = true; dict7["regimen"] = true; dict6["regina"] = true; dict6["region"] = true; dict7["regnant"] = true; dict7["regorge"] = true; dict7["regosol"] = true; dict7["regress"] = true; dict6["regret"] = true; dict7["regrets"] = true; dict7["regroup"] = true; dict6["regrow"] = true; dict7["regular"] = true; dict7["regulus"] = true; dict5["regur"] = true; dict6["rehash"] = true; dict6["rehear"] = true; dict6["reheat"] = true; dict6["reheel"] = true; dict7["rehouse"] = true; dict5["reich"] = true; dict4["reid"] = true; dict5["reify"] = true; dict5["reign"] = true; dict5["reims"] = true; dict4["rein"] = true; dict7["reissue"] = true; dict4["reit"] = true; dict6["reiter"] = true; dict6["reject"] = true; dict5["rejig"] = true; dict7["rejoice"] = true; dict6["rejoin"] = true; dict6["relace"] = true; dict7["relafen"] = true; dict7["relapse"] = true; dict6["relate"] = true; dict7["related"] = true; dict7["relatum"] = true; dict5["relax"] = true; dict7["relaxed"] = true; dict7["relaxer"] = true; dict7["relaxin"] = true; dict5["relay"] = true; dict7["relearn"] = true; dict7["release"] = true; dict6["relent"] = true; dict7["reliant"] = true; dict5["relic"] = true; dict6["relict"] = true; dict6["relief"] = true; dict7["relieve"] = true; dict7["relievo"] = true; dict6["reline"] = true; dict6["relish"] = true; dict6["relive"] = true; dict6["reload"] = true; dict4["rely"] = true; dict7["relyric"] = true; dict6["remain"] = true; dict7["remains"] = true; dict6["remake"] = true; dict6["remand"] = true; dict6["remark"] = true; dict7["remarry"] = true; dict7["rematch"] = true; dict6["remedy"] = true; dict6["remind"] = true; dict6["remise"] = true; dict6["remiss"] = true; dict5["remit"] = true; dict7["remnant"] = true; dict7["remodel"] = true; dict6["remold"] = true; dict6["remora"] = true; dict7["remorse"] = true; dict6["remote"] = true; dict7["remould"] = true; dict7["remount"] = true; dict7["removal"] = true; dict6["remove"] = true; dict7["removed"] = true; dict7["remover"] = true; dict6["remuda"] = true; dict5["remus"] = true; dict5["renal"] = true; dict6["rename"] = true; dict4["rend"] = true; dict6["render"] = true; dict7["rending"] = true; dict6["renege"] = true; dict5["renew"] = true; dict7["renewal"] = true; dict7["renewed"] = true; dict5["renin"] = true; dict6["rennet"] = true; dict6["rennin"] = true; dict4["reno"] = true; dict6["renoir"] = true; dict6["renown"] = true; dict4["rent"] = true; dict6["rental"] = true; dict5["rente"] = true; dict6["renter"] = true; dict7["rentier"] = true; dict7["renting"] = true; dict6["reopen"] = true; dict7["reorder"] = true; dict7["repaint"] = true; dict6["repair"] = true; dict6["repand"] = true; dict6["repast"] = true; dict5["repay"] = true; dict6["repeal"] = true; dict6["repeat"] = true; dict5["repel"] = true; dict6["repent"] = true; dict6["repine"] = true; dict7["replace"] = true; dict7["replant"] = true; dict6["replay"] = true; dict7["replete"] = true; dict7["replica"] = true; dict5["reply"] = true; dict7["repoint"] = true; dict6["report"] = true; dict6["repose"] = true; dict7["reposit"] = true; dict5["repot"] = true; dict4["repp"] = true; dict7["repress"] = true; dict7["reprint"] = true; dict7["reprise"] = true; dict7["reprize"] = true; dict7["reproof"] = true; dict7["reprove"] = true; dict7["reptile"] = true; dict6["repugn"] = true; dict7["repulse"] = true; dict6["repute"] = true; dict7["request"] = true; dict7["requiem"] = true; dict7["require"] = true; dict7["requite"] = true; dict6["reread"] = true; dict7["reredos"] = true; dict5["rerun"] = true; dict6["resale"] = true; dict7["rescale"] = true; dict7["rescind"] = true; dict6["rescue"] = true; dict7["rescued"] = true; dict7["rescuer"] = true; dict6["reseal"] = true; dict6["reseat"] = true; dict6["reseau"] = true; dict6["resect"] = true; dict6["reseda"] = true; dict6["reseed"] = true; dict6["resell"] = true; dict6["resent"] = true; dict7["reserve"] = true; dict5["reset"] = true; dict5["resew"] = true; dict4["resh"] = true; dict7["reshape"] = true; dict6["reship"] = true; dict7["reshoot"] = true; dict5["resht"] = true; dict5["resid"] = true; dict6["reside"] = true; dict7["residue"] = true; dict6["resift"] = true; dict6["resign"] = true; dict6["resile"] = true; dict5["resin"] = true; dict6["resiny"] = true; dict6["resist"] = true; dict6["resize"] = true; dict6["resole"] = true; dict7["resolve"] = true; dict6["resorb"] = true; dict6["resort"] = true; dict7["resound"] = true; dict7["respect"] = true; dict7["respire"] = true; dict7["respite"] = true; dict7["respond"] = true; dict4["rest"] = true; dict7["restart"] = true; dict7["restate"] = true; dict6["rested"] = true; dict6["rester"] = true; dict7["restful"] = true; dict7["restive"] = true; dict7["restock"] = true; dict7["restore"] = true; dict6["result"] = true; dict6["resume"] = true; dict7["resurge"] = true; dict6["retail"] = true; dict6["retain"] = true; dict6["retake"] = true; dict6["retama"] = true; dict6["retard"] = true; dict5["retch"] = true; dict4["rete"] = true; dict6["retell"] = true; dict5["retem"] = true; dict7["rethink"] = true; dict6["retick"] = true; dict7["reticle"] = true; dict5["retie"] = true; dict6["retina"] = true; dict7["retinal"] = true; dict7["retinol"] = true; dict7["retinue"] = true; dict6["retire"] = true; dict7["retired"] = true; dict7["retiree"] = true; dict6["retool"] = true; dict6["retort"] = true; dict7["retouch"] = true; dict7["retrace"] = true; dict7["retract"] = true; dict7["retrain"] = true; dict6["retral"] = true; dict7["retread"] = true; dict7["retreat"] = true; dict7["retrial"] = true; dict5["retro"] = true; dict5["retry"] = true; dict7["retsina"] = true; dict6["return"] = true; dict6["reuben"] = true; dict7["reunify"] = true; dict7["reunion"] = true; dict7["reunite"] = true; dict5["reuse"] = true; dict7["revalue"] = true; dict6["revamp"] = true; dict6["reveal"] = true; dict5["revel"] = true; dict7["reveler"] = true; dict7["revelry"] = true; dict7["revenge"] = true; dict7["revenue"] = true; dict6["revere"] = true; dict7["revered"] = true; dict7["reverie"] = true; dict6["revers"] = true; dict7["reverse"] = true; dict6["revert"] = true; dict6["revery"] = true; dict5["revet"] = true; dict6["review"] = true; dict6["revile"] = true; dict7["revisal"] = true; dict6["revise"] = true; dict7["revised"] = true; dict7["reviser"] = true; dict7["revisit"] = true; dict7["revival"] = true; dict6["revive"] = true; dict7["revived"] = true; dict6["revoke"] = true; dict6["revolt"] = true; dict7["revolve"] = true; dict5["revue"] = true; dict6["reward"] = true; dict6["rewire"] = true; dict6["reword"] = true; dict6["rework"] = true; dict7["rewrite"] = true; dict5["reyes"] = true; dict7["reynard"] = true; dict7["rhamnus"] = true; dict6["rhaphe"] = true; dict6["rhapis"] = true; dict4["rhea"] = true; dict7["rheidae"] = true; dict6["rheims"] = true; dict5["rhein"] = true; dict7["rhenish"] = true; dict7["rhenium"] = true; dict6["rhesus"] = true; dict5["rheum"] = true; dict6["rheumy"] = true; dict6["rhexia"] = true; dict7["rhibhus"] = true; dict6["rhinal"] = true; dict5["rhine"] = true; dict7["rhinion"] = true; dict5["rhino"] = true; dict7["rhizoid"] = true; dict7["rhizome"] = true; dict6["rhodes"] = true; dict7["rhodium"] = true; dict5["rhomb"] = true; dict7["rhombic"] = true; dict7["rhombus"] = true; dict5["rhone"] = true; dict7["rhubarb"] = true; dict5["rhumb"] = true; dict6["rhumba"] = true; dict4["rhus"] = true; dict5["rhyme"] = true; dict6["rhymed"] = true; dict6["rhymer"] = true; dict7["rhyming"] = true; dict6["rhynia"] = true; dict6["rhythm"] = true; dict4["rial"] = true; dict5["riant"] = true; dict5["riata"] = true; dict6["ribald"] = true; dict6["riband"] = true; dict7["ribband"] = true; dict6["ribbed"] = true; dict7["ribbing"] = true; dict6["ribbon"] = true; dict7["ribbony"] = true; dict5["ribes"] = true; dict6["ribhus"] = true; dict6["ribier"] = true; dict7["ribless"] = true; dict7["riblike"] = true; dict6["ribose"] = true; dict7["ribwort"] = true; dict7["ricardo"] = true; dict4["rice"] = true; dict5["ricer"] = true; dict4["rich"] = true; dict6["richea"] = true; dict6["riches"] = true; dict7["richler"] = true; dict6["richly"] = true; dict5["ricin"] = true; dict7["ricinus"] = true; dict4["rick"] = true; dict7["rickets"] = true; dict7["rickety"] = true; dict6["rickey"] = true; dict7["ricksha"] = true; dict4["rico"] = true; dict7["ricotta"] = true; dict6["ricrac"] = true; dict6["rictus"] = true; dict6["riddle"] = true; dict7["riddled"] = true; dict4["ride"] = true; dict5["rider"] = true; dict5["ridge"] = true; dict6["ridged"] = true; dict6["ridgel"] = true; dict6["ridgil"] = true; dict6["riding"] = true; dict6["ridley"] = true; dict4["riel"] = true; dict7["riemann"] = true; dict7["riesman"] = true; dict7["rifadin"] = true; dict4["rife"] = true; dict4["riff"] = true; dict7["riffian"] = true; dict6["riffle"] = true; dict5["rifle"] = true; dict6["rifled"] = true; dict7["rifling"] = true; dict4["rift"] = true; dict4["riga"] = true; dict5["rigel"] = true; dict6["rigged"] = true; dict6["rigger"] = true; dict7["rigging"] = true; dict5["right"] = true; dict7["rightly"] = true; dict5["rigid"] = true; dict7["rigidly"] = true; dict5["rigil"] = true; dict5["rigor"] = true; dict6["rigour"] = true; dict6["rigout"] = true; dict7["riksmal"] = true; dict4["rile"] = true; dict5["riled"] = true; dict5["riley"] = true; dict7["rilievo"] = true; dict5["rilke"] = true; dict4["rill"] = true; dict4["rima"] = true; dict7["rimbaud"] = true; dict4["rime"] = true; dict5["rimed"] = true; dict6["riming"] = true; dict7["rimless"] = true; dict6["rimmed"] = true; dict6["rimose"] = true; dict4["rimu"] = true; dict4["rimy"] = true; dict4["rind"] = true; dict4["ring"] = true; dict6["ringed"] = true; dict6["ringer"] = true; dict7["ringgit"] = true; dict7["ringing"] = true; dict7["ringlet"] = true; dict5["rings"] = true; dict7["ringway"] = true; dict4["rink"] = true; dict5["rinse"] = true; dict7["rinsing"] = true; dict5["rioja"] = true; dict4["riot"] = true; dict6["rioter"] = true; dict7["rioting"] = true; dict7["riotous"] = true; dict7["rip-off"] = true; dict7["riparia"] = true; dict7["ripcord"] = true; dict4["ripe"] = true; dict6["ripely"] = true; dict5["ripen"] = true; dict7["ripened"] = true; dict7["riposte"] = true; dict6["ripper"] = true; dict7["ripping"] = true; dict6["ripple"] = true; dict7["rippled"] = true; dict6["ripsaw"] = true; dict7["riptide"] = true; dict4["rira"] = true; dict4["risc"] = true; dict4["rise"] = true; dict5["risen"] = true; dict5["riser"] = true; dict7["risible"] = true; dict6["rising"] = true; dict4["risk"] = true; dict7["riskily"] = true; dict5["risky"] = true; dict7["risotto"] = true; dict6["risque"] = true; dict5["rissa"] = true; dict7["rissole"] = true; dict4["rit."] = true; dict7["ritalin"] = true; dict4["rite"] = true; dict6["ritual"] = true; dict4["ritz"] = true; dict5["ritzy"] = true; dict5["rival"] = true; dict7["rivalry"] = true; dict4["rive"] = true; dict5["river"] = true; dict6["rivera"] = true; dict5["rivet"] = true; dict7["riveter"] = true; dict7["riviera"] = true; dict6["rivina"] = true; dict7["rivulet"] = true; dict7["rivulus"] = true; dict6["riyadh"] = true; dict5["riyal"] = true; dict5["rnase"] = true; dict5["roach"] = true; dict4["road"] = true; dict7["roadbed"] = true; dict7["roadhog"] = true; dict7["roadman"] = true; dict5["roads"] = true; dict7["roadway"] = true; dict4["roam"] = true; dict6["roamer"] = true; dict4["roan"] = true; dict7["roanoke"] = true; dict4["roar"] = true; dict6["roarer"] = true; dict7["roaring"] = true; dict5["roast"] = true; dict7["roasted"] = true; dict7["roaster"] = true; dict6["robalo"] = true; dict7["robaxin"] = true; dict6["robber"] = true; dict7["robbery"] = true; dict7["robbins"] = true; dict4["robe"] = true; dict5["robed"] = true; dict6["robert"] = true; dict7["roberts"] = true; dict7["robeson"] = true; dict5["robin"] = true; dict7["robinia"] = true; dict5["roble"] = true; dict5["robot"] = true; dict7["robotic"] = true; dict6["robust"] = true; dict6["roccus"] = true; dict4["rock"] = true; dict6["rocker"] = true; dict7["rockers"] = true; dict7["rockery"] = true; dict6["rocket"] = true; dict7["rockies"] = true; dict5["rocky"] = true; dict6["rococo"] = true; dict6["rocroi"] = true; dict6["rodent"] = true; dict5["rodeo"] = true; dict7["rodgers"] = true; dict6["rodhos"] = true; dict5["rodin"] = true; dict7["rodlike"] = true; dict7["rodolia"] = true; dict7["roebuck"] = true; dict7["rogaine"] = true; dict6["rogers"] = true; dict5["roget"] = true; dict5["rogue"] = true; dict7["roguery"] = true; dict7["roguish"] = true; dict4["roil"] = true; dict6["roiled"] = true; dict7["roiling"] = true; dict5["roily"] = true; dict7["roister"] = true; dict7["rolaids"] = true; dict4["role"] = true; dict4["rolf"] = true; dict4["roll"] = true; dict7["roll-on"] = true; dict6["rolled"] = true; dict6["roller"] = true; dict7["rollick"] = true; dict7["rolling"] = true; dict5["rollo"] = true; dict7["rolodex"] = true; dict4["roma"] = true; dict6["romaic"] = true; dict7["romaine"] = true; dict5["roman"] = true; dict7["romanal"] = true; dict7["romance"] = true; dict6["romani"] = true; dict7["romania"] = true; dict7["romanic"] = true; dict7["romanov"] = true; dict6["romans"] = true; dict7["romansh"] = true; dict6["romany"] = true; dict7["romberg"] = true; dict4["rome"] = true; dict5["romeo"] = true; dict6["romish"] = true; dict7["rommany"] = true; dict6["rommel"] = true; dict7["romneya"] = true; dict4["romp"] = true; dict6["romper"] = true; dict7["romulus"] = true; dict7["rondeau"] = true; dict6["rondel"] = true; dict5["rondo"] = true; dict5["roneo"] = true; dict7["rontgen"] = true; dict4["rood"] = true; dict4["roof"] = true; dict6["roofed"] = true; dict6["roofer"] = true; dict7["roofing"] = true; dict7["rooftop"] = true; dict5["roofy"] = true; dict7["rooibos"] = true; dict4["rook"] = true; dict7["rookery"] = true; dict6["rookie"] = true; dict4["room"] = true; dict6["roomer"] = true; dict7["roomful"] = true; dict6["roomie"] = true; dict7["roomily"] = true; dict5["rooms"] = true; dict5["roomy"] = true; dict5["roost"] = true; dict7["rooster"] = true; dict4["root"] = true; dict7["rootage"] = true; dict6["rooted"] = true; dict6["rooter"] = true; dict7["rooting"] = true; dict6["rootle"] = true; dict7["rootlet"] = true; dict5["roots"] = true; dict4["rope"] = true; dict5["roper"] = true; dict7["ropeway"] = true; dict5["ropey"] = true; dict5["rophy"] = true; dict6["roping"] = true; dict4["ropy"] = true; dict7["rorippa"] = true; dict7["rorqual"] = true; dict4["rosa"] = true; dict7["rosacea"] = true; dict7["rosales"] = true; dict7["rosario"] = true; dict6["rosary"] = true; dict4["rose"] = true; dict7["roseate"] = true; dict6["roseau"] = true; dict7["rosebay"] = true; dict7["rosebud"] = true; dict7["rosehip"] = true; dict7["roselle"] = true; dict7["roseola"] = true; dict7["rosette"] = true; dict7["rosidae"] = true; dict7["rosilla"] = true; dict5["rosin"] = true; dict6["rosita"] = true; dict4["ross"] = true; dict7["rossini"] = true; dict7["rostand"] = true; dict6["roster"] = true; dict7["rostock"] = true; dict6["rostov"] = true; dict7["rostrum"] = true; dict7["roswell"] = true; dict4["rosy"] = true; dict4["rota"] = true; dict6["rotary"] = true; dict6["rotate"] = true; dict7["rotated"] = true; dict4["rotc"] = true; dict4["rote"] = true; dict6["rotgut"] = true; dict4["roth"] = true; dict6["rothko"] = true; dict7["rotifer"] = true; dict4["rotl"] = true; dict5["rotor"] = true; dict6["rotted"] = true; dict6["rotten"] = true; dict6["rotter"] = true; dict7["rotting"] = true; dict6["rotund"] = true; dict7["rotunda"] = true; dict6["rouble"] = true; dict4["roue"] = true; dict5["rouge"] = true; dict6["rouged"] = true; dict5["rough"] = true; dict7["roughen"] = true; dict7["roughly"] = true; dict7["roulade"] = true; dict7["rouleau"] = true; dict5["round"] = true; dict7["rounded"] = true; dict7["roundel"] = true; dict7["rounder"] = true; dict7["roundly"] = true; dict7["roundup"] = true; dict4["rous"] = true; dict5["rouse"] = true; dict6["rouser"] = true; dict7["rousing"] = true; dict4["rout"] = true; dict5["route"] = true; dict6["router"] = true; dict7["routine"] = true; dict4["roux"] = true; dict4["rove"] = true; dict5["rover"] = true; dict6["roving"] = true; dict5["rowan"] = true; dict7["rowboat"] = true; dict7["rowdily"] = true; dict5["rowdy"] = true; dict5["rowel"] = true; dict5["rower"] = true; dict6["rowing"] = true; dict7["rowlock"] = true; dict5["royal"] = true; dict7["royally"] = true; dict7["royalty"] = true; dict7["rozelle"] = true; dict7["rpa-abb"] = true; dict4["rtlt"] = true; dict6["ruanda"] = true; dict7["ruandan"] = true; dict6["rubato"] = true; dict6["rubber"] = true; dict7["rubbery"] = true; dict7["rubbing"] = true; dict7["rubbish"] = true; dict6["rubble"] = true; dict7["rubdown"] = true; dict4["rube"] = true; dict5["rubel"] = true; dict7["rubella"] = true; dict6["rubens"] = true; dict7["rubeola"] = true; dict5["rubia"] = true; dict7["rubicon"] = true; dict6["rubify"] = true; dict5["ruble"] = true; dict5["rubor"] = true; dict6["rubric"] = true; dict5["rubus"] = true; dict4["ruby"] = true; dict4["ruck"] = true; dict6["ruckle"] = true; dict6["ruckus"] = true; dict7["ruction"] = true; dict4["rudd"] = true; dict6["rudder"] = true; dict6["ruddle"] = true; dict7["ruddles"] = true; dict5["ruddy"] = true; dict4["rude"] = true; dict6["rudely"] = true; dict5["rudra"] = true; dict6["rueful"] = true; dict4["ruff"] = true; dict7["ruffian"] = true; dict6["ruffle"] = true; dict7["ruffled"] = true; dict4["ruga"] = true; dict5["rugby"] = true; dict6["rugged"] = true; dict6["rugger"] = true; dict6["rugose"] = true; dict7["rugulah"] = true; dict4["ruhr"] = true; dict4["ruin"] = true; dict6["ruined"] = true; dict6["ruiner"] = true; dict7["ruining"] = true; dict7["ruinous"] = true; dict4["rule"] = true; dict5["ruled"] = true; dict5["ruler"] = true; dict6["ruling"] = true; dict4["ruly"] = true; dict7["rumania"] = true; dict7["rumansh"] = true; dict5["rumba"] = true; dict6["rumble"] = true; dict5["rumen"] = true; dict5["rumex"] = true; dict7["rummage"] = true; dict6["rummer"] = true; dict5["rummy"] = true; dict7["rumohra"] = true; dict5["rumor"] = true; dict6["rumour"] = true; dict4["rump"] = true; dict6["rumple"] = true; dict7["rumpled"] = true; dict6["rumpus"] = true; dict6["run-in"] = true; dict6["run-on"] = true; dict6["run-up"] = true; dict7["runaway"] = true; dict5["runch"] = true; dict6["rundle"] = true; dict7["rundown"] = true; dict4["rune"] = true; dict4["rung"] = true; dict5["runic"] = true; dict6["runnel"] = true; dict6["runner"] = true; dict7["running"] = true; dict5["runny"] = true; dict6["runoff"] = true; dict4["runt"] = true; dict5["runty"] = true; dict5["runup"] = true; dict6["runway"] = true; dict6["runyon"] = true; dict5["rupee"] = true; dict6["rupert"] = true; dict6["rupiah"] = true; dict7["rupture"] = true; dict5["rural"] = true; dict7["rurally"] = true; dict6["ruscus"] = true; dict4["ruse"] = true; dict4["rush"] = true; dict7["rushdie"] = true; dict6["rushed"] = true; dict6["rusher"] = true; dict7["rushing"] = true; dict5["rushy"] = true; dict4["rusk"] = true; dict6["ruskin"] = true; dict7["russell"] = true; dict6["russet"] = true; dict6["russia"] = true; dict7["russian"] = true; dict7["russula"] = true; dict4["rust"] = true; dict6["rusted"] = true; dict6["rustic"] = true; dict7["rusting"] = true; dict6["rustle"] = true; dict7["rustler"] = true; dict5["rusty"] = true; dict4["ruta"] = true; dict4["ruth"] = true; dict7["ruthful"] = true; dict6["rutile"] = true; dict7["rutilus"] = true; dict7["rutland"] = true; dict6["rutted"] = true; dict7["ruttish"] = true; dict5["rutty"] = true; dict6["rwanda"] = true; dict7["rwandan"] = true; dict7["rydberg"] = true; dict7["s-shape"] = true; dict6["s.t.p."] = true; dict6["s.u.v."] = true; dict5["saale"] = true; dict5["saame"] = true; dict5["saami"] = true; dict4["saba"] = true; dict5["sabah"] = true; dict7["sabahan"] = true; dict5["sabal"] = true; dict7["sabaoth"] = true; dict7["sabaton"] = true; dict7["sabayon"] = true; dict6["sabbat"] = true; dict7["sabbath"] = true; dict5["saber"] = true; dict6["sabicu"] = true; dict5["sabin"] = true; dict6["sabine"] = true; dict7["sabinea"] = true; dict5["sable"] = true; dict5["sabot"] = true; dict5["sabra"] = true; dict5["sabre"] = true; dict7["saccade"] = true; dict5["sacco"] = true; dict7["saccule"] = true; dict6["saceur"] = true; dict6["sachem"] = true; dict6["sachet"] = true; dict7["sachsen"] = true; dict4["sack"] = true; dict7["sackbut"] = true; dict6["sacked"] = true; dict7["sackful"] = true; dict7["sacking"] = true; dict7["saclant"] = true; dict7["saclike"] = true; dict6["sacque"] = true; dict6["sacral"] = true; dict6["sacred"] = true; dict6["sacrum"] = true; dict5["sadat"] = true; dict6["saddam"] = true; dict6["sadden"] = true; dict6["saddhu"] = true; dict6["saddle"] = true; dict7["saddled"] = true; dict7["saddler"] = true; dict4["sade"] = true; dict5["sadhe"] = true; dict5["sadhu"] = true; dict6["sadism"] = true; dict6["sadist"] = true; dict5["sadly"] = true; dict7["sadness"] = true; dict4["saek"] = true; dict7["safaqis"] = true; dict5["safar"] = true; dict6["safari"] = true; dict4["safe"] = true; dict6["safely"] = true; dict6["safety"] = true; dict7["saffron"] = true; dict4["saga"] = true; dict4["sage"] = true; dict6["sagely"] = true; dict7["sagging"] = true; dict6["sagina"] = true; dict7["saginaw"] = true; dict7["sagitta"] = true; dict4["sago"] = true; dict7["saguaro"] = true; dict6["sahara"] = true; dict7["saharan"] = true; dict5["sahib"] = true; dict7["sahuaro"] = true; dict4["said"] = true; dict5["saida"] = true; dict5["saiga"] = true; dict6["saigon"] = true; dict4["sail"] = true; dict7["sailing"] = true; dict6["sailor"] = true; dict7["saimiri"] = true; dict5["saint"] = true; dict7["sainted"] = true; dict7["saintly"] = true; dict6["saipan"] = true; dict6["sajama"] = true; dict4["sake"] = true; dict4["saki"] = true; dict7["sakkara"] = true; dict5["sakti"] = true; dict7["saktism"] = true; dict6["salaah"] = true; dict6["salaam"] = true; dict6["salaat"] = true; dict7["salable"] = true; dict5["salad"] = true; dict6["salade"] = true; dict7["saladin"] = true; dict5["salah"] = true; dict5["salai"] = true; dict5["salal"] = true; dict6["salami"] = true; dict6["salary"] = true; dict5["salat"] = true; dict4["sale"] = true; dict5["salem"] = true; dict7["salerno"] = true; dict5["sales"] = true; dict6["salian"] = true; dict7["salient"] = true; dict5["salim"] = true; dict6["salina"] = true; dict6["saline"] = true; dict6["salish"] = true; dict6["saliva"] = true; dict5["salix"] = true; dict4["salk"] = true; dict6["sallet"] = true; dict6["sallow"] = true; dict5["sally"] = true; dict5["salmi"] = true; dict5["salmo"] = true; dict6["salmon"] = true; dict5["salol"] = true; dict6["salome"] = true; dict7["salomon"] = true; dict5["salon"] = true; dict6["saloon"] = true; dict4["salp"] = true; dict5["salpa"] = true; dict7["salpinx"] = true; dict5["salsa"] = true; dict7["salsify"] = true; dict7["salsola"] = true; dict4["salt"] = true; dict7["saltate"] = true; dict7["saltbox"] = true; dict6["salted"] = true; dict6["salter"] = true; dict7["saltine"] = true; dict7["salting"] = true; dict7["saltire"] = true; dict7["saltish"] = true; dict7["saltpan"] = true; dict5["salty"] = true; dict6["saluki"] = true; dict6["salute"] = true; dict7["saluter"] = true; dict7["salvage"] = true; dict5["salve"] = true; dict6["salver"] = true; dict6["salvia"] = true; dict7["salving"] = true; dict5["salvo"] = true; dict6["salvor"] = true; dict6["salwar"] = true; dict6["salyut"] = true; dict5["saman"] = true; dict6["samara"] = true; dict7["samaria"] = true; dict5["samba"] = true; dict6["sambar"] = true; dict6["sambre"] = true; dict7["sambuca"] = true; dict6["sambur"] = true; dict4["same"] = true; dict6["samekh"] = true; dict7["samhita"] = true; dict4["sami"] = true; dict5["samia"] = true; dict6["samiel"] = true; dict7["samisen"] = true; dict6["samite"] = true; dict7["samnite"] = true; dict5["samoa"] = true; dict6["samoan"] = true; dict7["samolus"] = true; dict6["samosa"] = true; dict7["samovar"] = true; dict7["samoyed"] = true; dict6["sampan"] = true; dict6["sample"] = true; dict7["sampler"] = true; dict7["samsara"] = true; dict6["samson"] = true; dict6["samuel"] = true; dict7["samurai"] = true; dict4["sana"] = true; dict6["sana'a"] = true; dict5["sanaa"] = true; dict7["sanchez"] = true; dict7["sanctum"] = true; dict4["sand"] = true; dict6["sandal"] = true; dict7["sandbag"] = true; dict7["sandbar"] = true; dict7["sandbox"] = true; dict7["sandboy"] = true; dict7["sandbur"] = true; dict6["sander"] = true; dict7["sandfly"] = true; dict6["sandhi"] = true; dict7["sandlot"] = true; dict7["sandman"] = true; dict7["sandpit"] = true; dict7["sandril"] = true; dict5["sands"] = true; dict5["sandy"] = true; dict4["sane"] = true; dict6["sanely"] = true; dict7["sanfoin"] = true; dict4["sang"] = true; dict6["sangay"] = true; dict6["sanger"] = true; dict5["sango"] = true; dict7["sangoma"] = true; dict7["sangria"] = true; dict7["sanicle"] = true; dict6["sanies"] = true; dict7["sanious"] = true; dict6["sanity"] = true; dict6["sannup"] = true; dict5["santa"] = true; dict6["santee"] = true; dict7["santims"] = true; dict6["santos"] = true; dict7["sanyasi"] = true; dict5["saone"] = true; dict6["saphar"] = true; dict7["saphead"] = true; dict5["sapid"] = true; dict7["sapiens"] = true; dict7["sapient"] = true; dict5["sapir"] = true; dict7["sapless"] = true; dict7["sapling"] = true; dict7["saponin"] = true; dict6["sapota"] = true; dict6["sapote"] = true; dict6["sapper"] = true; dict7["sapphic"] = true; dict6["sappho"] = true; dict7["sapporo"] = true; dict5["sappy"] = true; dict7["saprobe"] = true; dict7["sapsago"] = true; dict7["sapwood"] = true; dict7["saqqara"] = true; dict7["saracen"] = true; dict7["sarafem"] = true; dict5["sarah"] = true; dict5["saran"] = true; dict6["sarape"] = true; dict7["saratov"] = true; dict7["sarawak"] = true; dict7["sarazen"] = true; dict7["sarcasm"] = true; dict7["sarcoid"] = true; dict7["sarcoma"] = true; dict4["sard"] = true; dict5["sarda"] = true; dict7["sardina"] = true; dict7["sardine"] = true; dict6["sardis"] = true; dict7["sardius"] = true; dict5["saree"] = true; dict7["sargent"] = true; dict4["sari"] = true; dict5["sarin"] = true; dict7["sarnoff"] = true; dict6["sarong"] = true; dict7["saroyan"] = true; dict4["sars"] = true; dict6["sartor"] = true; dict6["sartre"] = true; dict4["sash"] = true; dict6["sashay"] = true; dict7["sashimi"] = true; dict4["sass"] = true; dict7["sassaby"] = true; dict7["sassing"] = true; dict5["sassy"] = true; dict5["satan"] = true; dict6["satang"] = true; dict7["satanic"] = true; dict7["satchel"] = true; dict7["satchmo"] = true; dict4["sate"] = true; dict6["sateen"] = true; dict7["satiate"] = true; dict5["satie"] = true; dict7["satiety"] = true; dict5["satin"] = true; dict7["satinet"] = true; dict6["satiny"] = true; dict6["satire"] = true; dict7["satiric"] = true; dict7["satisfy"] = true; dict6["satori"] = true; dict6["satrap"] = true; dict7["satsuma"] = true; dict6["saturn"] = true; dict5["satyr"] = true; dict7["satyric"] = true; dict5["sauce"] = true; dict6["saucer"] = true; dict7["saucily"] = true; dict5["saucy"] = true; dict5["saudi"] = true; dict4["sauk"] = true; dict4["saul"] = true; dict5["sauna"] = true; dict7["saunter"] = true; dict6["saurel"] = true; dict6["sauria"] = true; dict7["saurian"] = true; dict5["saury"] = true; dict7["sausage"] = true; dict5["saute"] = true; dict7["sauteed"] = true; dict6["savage"] = true; dict7["savanna"] = true; dict6["savant"] = true; dict6["savara"] = true; dict7["savarin"] = true; dict4["save"] = true; dict5["saved"] = true; dict7["saveloy"] = true; dict5["saver"] = true; dict5["savin"] = true; dict6["saving"] = true; dict7["savings"] = true; dict6["savior"] = true; dict7["saviour"] = true; dict7["savitar"] = true; dict5["savor"] = true; dict6["savory"] = true; dict6["savour"] = true; dict7["savoury"] = true; dict5["savoy"] = true; dict5["savvy"] = true; dict5["sawan"] = true; dict7["sawbill"] = true; dict7["sawbuck"] = true; dict7["sawdust"] = true; dict7["sawfish"] = true; dict6["sawfly"] = true; dict4["sawm"] = true; dict7["sawmill"] = true; dict6["sawpit"] = true; dict7["sawwort"] = true; dict6["sawyer"] = true; dict4["saxe"] = true; dict7["saxhorn"] = true; dict6["saxist"] = true; dict5["saxon"] = true; dict6["saxony"] = true; dict6["say-so"] = true; dict7["sayanci"] = true; dict5["sayda"] = true; dict7["sayeret"] = true; dict6["sayers"] = true; dict6["saying"] = true; dict7["sazerac"] = true; dict4["scab"] = true; dict6["scabby"] = true; dict7["scabies"] = true; dict4["scad"] = true; dict5["scads"] = true; dict4["scag"] = true; dict7["scalage"] = true; dict6["scalar"] = true; dict5["scald"] = true; dict5["scale"] = true; dict6["scaled"] = true; dict7["scalene"] = true; dict6["scaler"] = true; dict6["scaley"] = true; dict6["scalic"] = true; dict7["scaling"] = true; dict7["scallop"] = true; dict5["scalp"] = true; dict7["scalpel"] = true; dict7["scalper"] = true; dict5["scaly"] = true; dict4["scam"] = true; dict7["scammer"] = true; dict5["scamp"] = true; dict7["scamper"] = true; dict6["scampi"] = true; dict6["scampo"] = true; dict4["scan"] = true; dict7["scandal"] = true; dict7["scanner"] = true; dict5["scant"] = true; dict6["scanty"] = true; dict5["scape"] = true; dict7["scapose"] = true; dict7["scapula"] = true; dict4["scar"] = true; dict6["scarab"] = true; dict6["scarce"] = true; dict5["scare"] = true; dict6["scared"] = true; dict6["scarer"] = true; dict6["scarey"] = true; dict5["scarf"] = true; dict7["scarify"] = true; dict7["scarily"] = true; dict7["scarlet"] = true; dict5["scarp"] = true; dict7["scarper"] = true; dict7["scarred"] = true; dict5["scary"] = true; dict4["scat"] = true; dict6["scathe"] = true; dict7["scatter"] = true; dict6["scatty"] = true; dict5["scaup"] = true; dict7["scauper"] = true; dict5["scend"] = true; dict5["scene"] = true; dict7["scenery"] = true; dict6["scenic"] = true; dict5["scent"] = true; dict7["scented"] = true; dict7["scepter"] = true; dict7["sceptic"] = true; dict7["sceptre"] = true; dict4["scet"] = true; dict7["scheele"] = true; dict7["scheldt"] = true; dict6["schema"] = true; dict6["scheme"] = true; dict7["schemer"] = true; dict6["scheol"] = true; dict7["scherzo"] = true; dict7["schinus"] = true; dict6["schism"] = true; dict6["schist"] = true; dict6["schlep"] = true; dict7["schlock"] = true; dict7["schmalz"] = true; dict7["schmear"] = true; dict7["schmeer"] = true; dict7["schmidt"] = true; dict5["schmo"] = true; dict7["schmuck"] = true; dict7["schnaps"] = true; dict7["schnook"] = true; dict7["schnorr"] = true; dict6["schnoz"] = true; dict7["scholar"] = true; dict7["scholia"] = true; dict6["school"] = true; dict6["schorl"] = true; dict6["schrod"] = true; dict7["schtick"] = true; dict6["schtik"] = true; dict7["schtikl"] = true; dict6["schulz"] = true; dict6["schuss"] = true; dict5["schwa"] = true; dict7["schwann"] = true; dict7["schweiz"] = true; dict7["sciaena"] = true; dict6["sciara"] = true; dict7["sciarid"] = true; dict7["sciatic"] = true; dict4["scid"] = true; dict7["science"] = true; dict6["scilla"] = true; dict7["scincid"] = true; dict7["scincus"] = true; dict5["scion"] = true; dict6["scipio"] = true; dict7["scirpus"] = true; dict7["scissor"] = true; dict7["sciurus"] = true; dict6["sclaff"] = true; dict6["sclera"] = true; dict4["sclk"] = true; dict4["scnt"] = true; dict5["scoff"] = true; dict7["scoffer"] = true; dict5["scoke"] = true; dict5["scold"] = true; dict7["scolder"] = true; dict7["scolion"] = true; dict7["scollop"] = true; dict7["scomber"] = true; dict6["sconce"] = true; dict5["scone"] = true; dict5["scoop"] = true; dict5["scoot"] = true; dict7["scooter"] = true; dict6["scopal"] = true; dict5["scope"] = true; dict6["scopes"] = true; dict6["scorch"] = true; dict5["score"] = true; dict6["scorer"] = true; dict6["scores"] = true; dict6["scoria"] = true; dict7["scoring"] = true; dict5["scorn"] = true; dict7["scorned"] = true; dict7["scorner"] = true; dict7["scorper"] = true; dict7["scorpio"] = true; dict4["scot"] = true; dict6["scotch"] = true; dict6["scoter"] = true; dict7["scotoma"] = true; dict5["scots"] = true; dict5["scott"] = true; dict7["scottie"] = true; dict5["scour"] = true; dict7["scoured"] = true; dict7["scourer"] = true; dict7["scourge"] = true; dict6["scours"] = true; dict6["scouse"] = true; dict7["scouser"] = true; dict5["scout"] = true; dict7["scouter"] = true; dict4["scow"] = true; dict5["scowl"] = true; dict4["scpo"] = true; dict5["scrag"] = true; dict7["scraggy"] = true; dict5["scram"] = true; dict7["scranch"] = true; dict5["scrap"] = true; dict6["scrape"] = true; dict7["scraper"] = true; dict7["scrapie"] = true; dict7["scrappy"] = true; dict6["scraps"] = true; dict7["scratch"] = true; dict6["scrawl"] = true; dict7["scrawny"] = true; dict6["screak"] = true; dict7["screaky"] = true; dict6["scream"] = true; dict5["scree"] = true; dict7["screech"] = true; dict6["screed"] = true; dict6["screen"] = true; dict5["screw"] = true; dict7["screwup"] = true; dict6["screwy"] = true; dict6["scribe"] = true; dict7["scriber"] = true; dict5["scrim"] = true; dict6["scrimp"] = true; dict7["scrimpy"] = true; dict6["scrimy"] = true; dict5["scrip"] = true; dict7["scripps"] = true; dict6["script"] = true; dict5["scrod"] = true; dict6["scroll"] = true; dict7["scrooge"] = true; dict7["scrotal"] = true; dict7["scrotum"] = true; dict5["scrub"] = true; dict7["scrubby"] = true; dict6["scrubs"] = true; dict6["scruff"] = true; dict7["scruffy"] = true; dict5["scrum"] = true; dict7["scrumpy"] = true; dict7["scrunch"] = true; dict7["scruple"] = true; dict4["scry"] = true; dict4["scsi"] = true; dict5["scuba"] = true; dict4["scud"] = true; dict5["scuff"] = true; dict7["scuffer"] = true; dict7["scuffle"] = true; dict5["scull"] = true; dict7["sculler"] = true; dict7["sculpin"] = true; dict6["sculpt"] = true; dict4["scum"] = true; dict7["scumble"] = true; dict6["scummy"] = true; dict7["scunner"] = true; dict4["scup"] = true; dict7["scupper"] = true; dict5["scurf"] = true; dict6["scurfy"] = true; dict6["scurry"] = true; dict6["scurvy"] = true; dict4["scut"] = true; dict5["scute"] = true; dict7["scuttle"] = true; dict6["scylla"] = true; dict7["scyphus"] = true; dict6["scythe"] = true; dict7["scythia"] = true; dict7["sea-ear"] = true; dict6["seabag"] = true; dict6["seabed"] = true; dict7["seabird"] = true; dict7["seaborg"] = true; dict7["seafood"] = true; dict7["seafowl"] = true; dict7["seagirt"] = true; dict7["seagull"] = true; dict4["seal"] = true; dict7["sealant"] = true; dict6["sealed"] = true; dict6["sealer"] = true; dict7["sealing"] = true; dict4["seam"] = true; dict6["seaman"] = true; dict6["seamed"] = true; dict5["seamy"] = true; dict6["seanad"] = true; dict6["seance"] = true; dict7["seaport"] = true; dict4["sear"] = true; dict6["search"] = true; dict6["seared"] = true; dict7["searing"] = true; dict7["seasick"] = true; dict7["seaside"] = true; dict6["season"] = true; dict4["seat"] = true; dict6["seated"] = true; dict7["seating"] = true; dict5["seats"] = true; dict7["seattle"] = true; dict7["seawall"] = true; dict7["seaward"] = true; dict6["seaway"] = true; dict7["seaweed"] = true; dict4["sebe"] = true; dict4["sebs"] = true; dict5["sebum"] = true; dict6["secale"] = true; dict6["secant"] = true; dict6["secede"] = true; dict6["secern"] = true; dict6["seckel"] = true; dict7["seclude"] = true; dict7["seconal"] = true; dict6["second"] = true; dict7["secondo"] = true; dict6["secpar"] = true; dict7["secrecy"] = true; dict6["secret"] = true; dict7["secrete"] = true; dict4["sect"] = true; dict7["sectary"] = true; dict7["section"] = true; dict6["sector"] = true; dict7["sectral"] = true; dict7["secular"] = true; dict6["secure"] = true; dict7["securer"] = true; dict7["sedalia"] = true; dict5["sedan"] = true; dict6["sedate"] = true; dict5["seder"] = true; dict5["sedge"] = true; dict5["sedgy"] = true; dict5["sedna"] = true; dict6["seduce"] = true; dict7["seducer"] = true; dict5["sedum"] = true; dict7["seeable"] = true; dict4["seed"] = true; dict7["seedbed"] = true; dict6["seeded"] = true; dict6["seeder"] = true; dict7["seedman"] = true; dict7["seedpod"] = true; dict5["seedy"] = true; dict6["seeger"] = true; dict6["seeing"] = true; dict4["seek"] = true; dict6["seeker"] = true; dict7["seeking"] = true; dict4["seel"] = true; dict7["seeland"] = true; dict4["seem"] = true; dict7["seeming"] = true; dict6["seemly"] = true; dict4["seep"] = true; dict7["seepage"] = true; dict7["seeping"] = true; dict4["seer"] = true; dict6["seesaw"] = true; dict6["seethe"] = true; dict5["segal"] = true; dict7["segment"] = true; dict5["segno"] = true; dict7["segovia"] = true; dict5["segue"] = true; dict6["segway"] = true; dict6["seiche"] = true; dict6["seidel"] = true; dict5["seine"] = true; dict5["seism"] = true; dict7["seismal"] = true; dict7["seismic"] = true; dict7["seiurus"] = true; dict5["seize"] = true; dict6["seizer"] = true; dict7["seizing"] = true; dict7["seizure"] = true; dict6["sekhet"] = true; dict5["selar"] = true; dict6["seldom"] = true; dict6["select"] = true; dict6["selene"] = true; dict5["seles"] = true; dict4["self"] = true; dict7["selfish"] = true; dict6["seljuk"] = true; dict7["selkirk"] = true; dict6["selkup"] = true; dict4["sell"] = true; dict6["seller"] = true; dict7["sellers"] = true; dict7["selling"] = true; dict7["selloff"] = true; dict7["sellout"] = true; dict5["selma"] = true; dict6["selsyn"] = true; dict7["seltzer"] = true; dict5["selva"] = true; dict7["selvage"] = true; dict5["semen"] = true; dict4["semi"] = true; dict7["seminal"] = true; dict7["seminar"] = true; dict7["semipro"] = true; dict6["semite"] = true; dict7["semitic"] = true; dict6["senate"] = true; dict7["senator"] = true; dict4["send"] = true; dict6["sendee"] = true; dict6["sender"] = true; dict7["sending"] = true; dict6["sendup"] = true; dict4["sene"] = true; dict6["seneca"] = true; dict7["senecan"] = true; dict7["senecio"] = true; dict6["senega"] = true; dict7["senegal"] = true; dict7["senesce"] = true; dict6["senhor"] = true; dict6["senile"] = true; dict6["senior"] = true; dict6["seniti"] = true; dict5["senna"] = true; dict7["sennett"] = true; dict6["sennit"] = true; dict5["senor"] = true; dict6["senora"] = true; dict4["sens"] = true; dict7["sensate"] = true; dict5["sense"] = true; dict6["sensed"] = true; dict7["sensify"] = true; dict7["sensing"] = true; dict6["sensor"] = true; dict7["sensory"] = true; dict7["sensual"] = true; dict4["sent"] = true; dict5["sente"] = true; dict6["sentry"] = true; dict5["seoul"] = true; dict5["sepal"] = true; dict5["sepia"] = true; dict7["seppuku"] = true; dict6["sepsis"] = true; dict4["sept"] = true; dict6["septal"] = true; dict7["septate"] = true; dict6["septet"] = true; dict6["septic"] = true; dict6["septum"] = true; dict6["sequel"] = true; dict7["sequela"] = true; dict7["sequent"] = true; dict6["sequin"] = true; dict7["sequoia"] = true; dict7["sequoya"] = true; dict6["serail"] = true; dict6["serape"] = true; dict6["seraph"] = true; dict5["serax"] = true; dict4["serb"] = true; dict6["serbia"] = true; dict7["serbian"] = true; dict7["serdica"] = true; dict4["sere"] = true; dict6["serene"] = true; dict7["serenoa"] = true; dict5["serer"] = true; dict4["serf"] = true; dict7["serfdom"] = true; dict5["serge"] = true; dict6["serger"] = true; dict6["serial"] = true; dict7["seriema"] = true; dict6["series"] = true; dict5["serif"] = true; dict5["serin"] = true; dict6["serine"] = true; dict7["serinus"] = true; dict7["seriola"] = true; dict7["serious"] = true; dict6["seriph"] = true; dict6["serkin"] = true; dict6["sermon"] = true; dict6["serosa"] = true; dict6["serous"] = true; dict5["serow"] = true; dict7["serpens"] = true; dict7["serpent"] = true; dict5["serra"] = true; dict7["serrate"] = true; dict7["serried"] = true; dict5["serum"] = true; dict6["serval"] = true; dict7["servant"] = true; dict5["serve"] = true; dict6["server"] = true; dict7["service"] = true; dict7["servile"] = true; dict7["serving"] = true; dict5["servo"] = true; dict7["serzone"] = true; dict6["sesame"] = true; dict7["sesamum"] = true; dict6["seseli"] = true; dict7["sesotho"] = true; dict4["sess"] = true; dict7["sessile"] = true; dict7["session"] = true; dict6["sestet"] = true; dict6["set-to"] = true; dict4["seta"] = true; dict7["setaria"] = true; dict7["setback"] = true; dict4["seth"] = true; dict7["setline"] = true; dict6["setoff"] = true; dict5["seton"] = true; dict6["setose"] = true; dict4["sett"] = true; dict6["settee"] = true; dict6["setter"] = true; dict7["setting"] = true; dict6["settle"] = true; dict7["settled"] = true; dict7["settler"] = true; dict7["settlor"] = true; dict7["setubal"] = true; dict5["setup"] = true; dict6["seurat"] = true; dict5["seven"] = true; dict7["sevener"] = true; dict6["sevens"] = true; dict7["seventh"] = true; dict7["seventy"] = true; dict5["sever"] = true; dict7["several"] = true; dict6["severe"] = true; dict7["severed"] = true; dict6["severn"] = true; dict7["sevilla"] = true; dict7["seville"] = true; dict6["sewage"] = true; dict6["seward"] = true; dict5["sewed"] = true; dict5["sewer"] = true; dict6["sewing"] = true; dict4["sewn"] = true; dict5["sexed"] = true; dict6["sexism"] = true; dict6["sexist"] = true; dict7["sexless"] = true; dict6["sexpot"] = true; dict4["sext"] = true; dict7["sextant"] = true; dict6["sextet"] = true; dict6["sexton"] = true; dict6["sexual"] = true; dict4["sexy"] = true; dict6["seyhan"] = true; dict7["seymour"] = true; dict4["sfax"] = true; dict4["sgml"] = true; dict7["sha'ban"] = true; dict7["shaaban"] = true; dict6["shabby"] = true; dict5["shabu"] = true; dict5["shack"] = true; dict7["shackle"] = true; dict4["shad"] = true; dict5["shade"] = true; dict6["shaded"] = true; dict6["shades"] = true; dict7["shadfly"] = true; dict7["shading"] = true; dict6["shadow"] = true; dict7["shadowy"] = true; dict5["shady"] = true; dict5["shaft"] = true; dict4["shag"] = true; dict7["shagged"] = true; dict6["shaggy"] = true; dict4["shah"] = true; dict7["shaheed"] = true; dict5["shahn"] = true; dict7["shaitan"] = true; dict5["shake"] = true; dict6["shaken"] = true; dict6["shaker"] = true; dict7["shakers"] = true; dict7["shakeup"] = true; dict7["shakily"] = true; dict7["shaking"] = true; dict5["shako"] = true; dict6["shakti"] = true; dict5["shaky"] = true; dict5["shale"] = true; dict7["shallon"] = true; dict7["shallot"] = true; dict7["shallow"] = true; dict6["shallu"] = true; dict7["shalwar"] = true; dict4["sham"] = true; dict6["shaman"] = true; dict7["shamash"] = true; dict7["shamble"] = true; dict5["shame"] = true; dict6["shamed"] = true; dict7["shammer"] = true; dict6["shammy"] = true; dict7["shampoo"] = true; dict6["shamus"] = true; dict4["shan"] = true; dict6["shandy"] = true; dict5["shang"] = true; dict5["shank"] = true; dict7["shankar"] = true; dict7["shannon"] = true; dict6["shanny"] = true; dict6["shanty"] = true; dict5["shape"] = true; dict6["shaped"] = true; dict7["shapely"] = true; dict6["shaper"] = true; dict7["shaping"] = true; dict7["shapley"] = true; dict5["shard"] = true; dict5["share"] = true; dict6["shared"] = true; dict6["sharer"] = true; dict5["shari"] = true; dict6["sharia"] = true; dict7["shariah"] = true; dict7["sharing"] = true; dict5["shark"] = true; dict5["sharp"] = true; dict7["sharpen"] = true; dict7["sharper"] = true; dict7["sharpie"] = true; dict7["sharply"] = true; dict6["sharpy"] = true; dict6["shasta"] = true; dict7["shastan"] = true; dict7["shatter"] = true; dict5["shave"] = true; dict6["shaved"] = true; dict6["shaven"] = true; dict6["shaver"] = true; dict7["shavian"] = true; dict7["shaving"] = true; dict7["shavous"] = true; dict7["shavuot"] = true; dict4["shaw"] = true; dict5["shawl"] = true; dict5["shawm"] = true; dict5["shawn"] = true; dict7["shawnee"] = true; dict6["shawny"] = true; dict7["shawwal"] = true; dict4["shay"] = true; dict7["shaytan"] = true; dict7["she-bop"] = true; dict7["she-oak"] = true; dict5["sheaf"] = true; dict5["shear"] = true; dict7["sheared"] = true; dict7["shearer"] = true; dict6["shears"] = true; dict6["sheath"] = true; dict7["sheathe"] = true; dict7["shebang"] = true; dict6["shebat"] = true; dict7["shebeen"] = true; dict4["shed"] = true; dict7["shedder"] = true; dict5["sheen"] = true; dict6["sheeny"] = true; dict5["sheep"] = true; dict5["sheer"] = true; dict7["sheesha"] = true; dict5["sheet"] = true; dict7["shegetz"] = true; dict5["sheik"] = true; dict6["sheika"] = true; dict6["sheikh"] = true; dict7["sheikha"] = true; dict6["shekel"] = true; dict7["shekels"] = true; dict5["shelf"] = true; dict6["shelfy"] = true; dict5["shell"] = true; dict7["shellac"] = true; dict7["shelled"] = true; dict7["sheller"] = true; dict7["shelley"] = true; dict7["shelter"] = true; dict6["shelve"] = true; dict7["shelver"] = true; dict6["shelvy"] = true; dict4["shem"] = true; dict5["shema"] = true; dict7["shepard"] = true; dict7["sherbet"] = true; dict5["sherd"] = true; dict7["sheriff"] = true; dict7["sherman"] = true; dict6["sherpa"] = true; dict6["sherry"] = true; dict6["shevat"] = true; dict4["shew"] = true; dict7["shi'ite"] = true; dict4["shia"] = true; dict5["shiah"] = true; dict7["shiatsu"] = true; dict6["shibah"] = true; dict6["shield"] = true; dict5["shift"] = true; dict7["shifter"] = true; dict6["shifty"] = true; dict6["shiism"] = true; dict6["shiite"] = true; dict7["shikoku"] = true; dict6["shiksa"] = true; dict6["shikse"] = true; dict5["shill"] = true; dict6["shiloh"] = true; dict4["shim"] = true; dict7["shimmer"] = true; dict6["shimmy"] = true; dict4["shin"] = true; dict5["shina"] = true; dict7["shindig"] = true; dict6["shindy"] = true; dict5["shine"] = true; dict6["shiner"] = true; dict7["shingle"] = true; dict7["shingly"] = true; dict7["shingon"] = true; dict7["shining"] = true; dict7["shinney"] = true; dict6["shinny"] = true; dict7["shinpad"] = true; dict6["shinto"] = true; dict5["shiny"] = true; dict4["ship"] = true; dict7["shipper"] = true; dict7["shipway"] = true; dict6["shiraz"] = true; dict5["shire"] = true; dict6["shirer"] = true; dict5["shirk"] = true; dict7["shirker"] = true; dict5["shirr"] = true; dict5["shirt"] = true; dict6["shirty"] = true; dict6["shisha"] = true; dict4["shit"] = true; dict5["shite"] = true; dict7["shittah"] = true; dict7["shitter"] = true; dict7["shittim"] = true; dict6["shitty"] = true; dict4["shiv"] = true; dict5["shiva"] = true; dict6["shivah"] = true; dict6["shiver"] = true; dict7["shivery"] = true; dict5["shlep"] = true; dict6["shlock"] = true; dict7["shmaltz"] = true; dict6["shmear"] = true; dict4["shmo"] = true; dict7["shmoose"] = true; dict7["shmooze"] = true; dict6["shmuck"] = true; dict6["shnook"] = true; dict6["shnorr"] = true; dict5["shoal"] = true; dict6["shoaly"] = true; dict5["shoat"] = true; dict5["shock"] = true; dict7["shocked"] = true; dict7["shocker"] = true; dict4["shod"] = true; dict7["shodden"] = true; dict6["shoddy"] = true; dict4["shoe"] = true; dict7["shoebox"] = true; dict5["shoed"] = true; dict7["shoeful"] = true; dict5["shoes"] = true; dict6["shofar"] = true; dict5["shogi"] = true; dict6["shogun"] = true; dict5["shoji"] = true; dict5["shona"] = true; dict4["shoo"] = true; dict7["shoo-in"] = true; dict7["shoofly"] = true; dict5["shook"] = true; dict5["shoot"] = true; dict7["shooter"] = true; dict4["shop"] = true; dict7["shophar"] = true; dict7["shopper"] = true; dict5["shore"] = true; dict6["shorea"] = true; dict7["shoring"] = true; dict5["shorn"] = true; dict5["short"] = true; dict7["shorten"] = true; dict7["shortia"] = true; dict7["shortly"] = true; dict6["shorts"] = true; dict4["shot"] = true; dict5["shote"] = true; dict7["shotgun"] = true; dict5["shout"] = true; dict7["shouted"] = true; dict7["shouter"] = true; dict5["shove"] = true; dict6["shovel"] = true; dict6["shover"] = true; dict4["show"] = true; dict6["shower"] = true; dict7["showery"] = true; dict7["showily"] = true; dict7["showing"] = true; dict7["showman"] = true; dict5["showy"] = true; dict5["shred"] = true; dict5["shrew"] = true; dict6["shrewd"] = true; dict6["shriek"] = true; dict6["shrift"] = true; dict6["shrike"] = true; dict6["shrill"] = true; dict7["shrilly"] = true; dict6["shrimp"] = true; dict7["shrimpy"] = true; dict6["shrine"] = true; dict6["shrink"] = true; dict6["shrive"] = true; dict7["shrivel"] = true; dict6["shroud"] = true; dict5["shrub"] = true; dict7["shrubby"] = true; dict5["shrug"] = true; dict6["shtick"] = true; dict7["shtickl"] = true; dict5["shtik"] = true; dict6["shtikl"] = true; dict5["shtup"] = true; dict4["shua"] = true; dict5["shuck"] = true; dict6["shucks"] = true; dict7["shudder"] = true; dict6["shudra"] = true; dict7["shuffle"] = true; dict6["shufti"] = true; dict5["shuha"] = true; dict6["shumac"] = true; dict4["shun"] = true; dict5["shunt"] = true; dict7["shunter"] = true; dict5["shush"] = true; dict4["shut"] = true; dict7["shut-in"] = true; dict5["shute"] = true; dict7["shuteye"] = true; dict7["shutout"] = true; dict7["shutter"] = true; dict7["shuttle"] = true; dict4["shwa"] = true; dict7["shylock"] = true; dict5["shyly"] = true; dict7["shyness"] = true; dict7["shyster"] = true; dict4["sial"] = true; dict6["sialia"] = true; dict6["sialis"] = true; dict4["siam"] = true; dict7["siamang"] = true; dict7["siamese"] = true; dict4["sian"] = true; dict7["siberia"] = true; dict6["sibine"] = true; dict7["sibling"] = true; dict5["sibyl"] = true; dict7["sichuan"] = true; dict7["sicilia"] = true; dict6["sicily"] = true; dict4["sick"] = true; dict7["sickbag"] = true; dict7["sickbay"] = true; dict7["sickbed"] = true; dict6["sicken"] = true; dict7["sickish"] = true; dict6["sickle"] = true; dict6["sickly"] = true; dict4["sida"] = true; dict7["siddons"] = true; dict4["side"] = true; dict7["sidearm"] = true; dict7["sidebar"] = true; dict7["sidecar"] = true; dict7["sideway"] = true; dict6["siding"] = true; dict5["sidle"] = true; dict6["sidney"] = true; dict5["sidon"] = true; dict4["sids"] = true; dict5["siege"] = true; dict7["siemens"] = true; dict6["sienna"] = true; dict6["sierra"] = true; dict6["siesta"] = true; dict5["sieve"] = true; dict4["sift"] = true; dict6["sifter"] = true; dict7["sifting"] = true; dict5["sigeh"] = true; dict4["sigh"] = true; dict5["sight"] = true; dict7["sighted"] = true; dict7["sightly"] = true; dict6["sights"] = true; dict6["sigint"] = true; dict5["sigma"] = true; dict7["sigmoid"] = true; dict4["sign"] = true; dict7["signage"] = true; dict6["signal"] = true; dict6["signed"] = true; dict6["signer"] = true; dict6["signet"] = true; dict7["signify"] = true; dict7["signing"] = true; dict7["signior"] = true; dict6["signor"] = true; dict7["signora"] = true; dict7["signore"] = true; dict7["signory"] = true; dict6["sigurd"] = true; dict5["sigyn"] = true; dict4["sika"] = true; dict4["sikh"] = true; dict7["sikhism"] = true; dict6["sikkim"] = true; dict6["silage"] = true; dict4["sild"] = true; dict7["silence"] = true; dict6["silene"] = true; dict6["silent"] = true; dict7["silents"] = true; dict7["silenus"] = true; dict7["silesia"] = true; dict5["silex"] = true; dict6["silica"] = true; dict7["silicle"] = true; dict7["silicon"] = true; dict7["siliqua"] = true; dict7["silique"] = true; dict4["silk"] = true; dict6["silken"] = true; dict7["silkily"] = true; dict5["silks"] = true; dict5["silky"] = true; dict4["sill"] = true; dict7["sillago"] = true; dict5["sills"] = true; dict5["silly"] = true; dict4["silo"] = true; dict4["silt"] = true; dict5["silty"] = true; dict7["silurid"] = true; dict7["silurus"] = true; dict5["silva"] = true; dict6["silvan"] = true; dict6["silver"] = true; dict7["silvern"] = true; dict7["silvery"] = true; dict6["silvex"] = true; dict6["silvia"] = true; dict7["silybum"] = true; dict4["sima"] = true; dict5["simal"] = true; dict7["simenon"] = true; dict6["simeon"] = true; dict6["simian"] = true; dict7["similar"] = true; dict6["simile"] = true; dict6["simmer"] = true; dict6["simnel"] = true; dict5["simon"] = true; dict7["simoniz"] = true; dict6["simony"] = true; dict6["simoom"] = true; dict6["simoon"] = true; dict6["simper"] = true; dict6["simple"] = true; dict7["simplex"] = true; dict6["simply"] = true; dict7["simpson"] = true; dict5["sinai"] = true; dict7["sinapis"] = true; dict7["sinatra"] = true; dict6["sinbad"] = true; dict7["sincere"] = true; dict4["sind"] = true; dict6["sindhi"] = true; dict4["sine"] = true; dict5["sinew"] = true; dict6["sinewy"] = true; dict6["sinful"] = true; dict4["sing"] = true; dict6["singan"] = true; dict5["singe"] = true; dict6["singer"] = true; dict7["singing"] = true; dict6["single"] = true; dict7["singles"] = true; dict7["singlet"] = true; dict6["singly"] = true; dict7["sinhala"] = true; dict7["sinitic"] = true; dict4["sink"] = true; dict6["sinker"] = true; dict7["sinking"] = true; dict7["sinless"] = true; dict6["sinner"] = true; dict7["sinning"] = true; dict7["sinoper"] = true; dict7["sinopia"] = true; dict7["sinopis"] = true; dict6["sinter"] = true; dict7["sinuate"] = true; dict7["sinuous"] = true; dict5["sinus"] = true; dict4["sion"] = true; dict6["siouan"] = true; dict5["sioux"] = true; dict6["siphon"] = true; dict6["sipper"] = true; dict6["sirach"] = true; dict4["sirc"] = true; dict6["sirdar"] = true; dict4["sire"] = true; dict5["siren"] = true; dict7["sirenia"] = true; dict5["siris"] = true; dict6["sirius"] = true; dict7["sirloin"] = true; dict7["sirocco"] = true; dict6["sirrah"] = true; dict5["sirup"] = true; dict5["sisal"] = true; dict4["sise"] = true; dict6["sisham"] = true; dict6["siskin"] = true; dict5["sison"] = true; dict4["siss"] = true; dict6["sissoo"] = true; dict5["sissu"] = true; dict5["sissy"] = true; dict6["sister"] = true; dict6["sit-in"] = true; dict6["sit-up"] = true; dict4["sita"] = true; dict5["sitar"] = true; dict6["sitcom"] = true; dict4["site"] = true; dict5["sitka"] = true; dict7["sitsang"] = true; dict5["sitta"] = true; dict6["sitter"] = true; dict7["sitting"] = true; dict7["situate"] = true; dict7["sitwell"] = true; dict4["sium"] = true; dict4["siva"] = true; dict7["sivaism"] = true; dict5["sivan"] = true; dict5["siwan"] = true; dict7["six-gun"] = true; dict5["sixer"] = true; dict7["sixfold"] = true; dict7["sixpack"] = true; dict7["sixsome"] = true; dict7["sixteen"] = true; dict5["sixth"] = true; dict7["sixthly"] = true; dict7["sixties"] = true; dict5["sixty"] = true; dict7["sizable"] = true; dict4["size"] = true; dict5["sized"] = true; dict6["sizing"] = true; dict4["sizz"] = true; dict6["sizzle"] = true; dict4["skag"] = true; dict6["skagit"] = true; dict7["skagway"] = true; dict6["skanda"] = true; dict5["skank"] = true; dict6["skanky"] = true; dict5["skate"] = true; dict6["skater"] = true; dict7["skating"] = true; dict4["skaw"] = true; dict5["skeat"] = true; dict5["skeet"] = true; dict4["skeg"] = true; dict5["skein"] = true; dict4["skep"] = true; dict7["skepful"] = true; dict7["skeptic"] = true; dict6["sketch"] = true; dict7["sketchy"] = true; dict4["skew"] = true; dict6["skewed"] = true; dict6["skewer"] = true; dict6["skibob"] = true; dict4["skid"] = true; dict7["skidder"] = true; dict7["skidpan"] = true; dict5["skier"] = true; dict5["skiff"] = true; dict7["skiffle"] = true; dict6["skiing"] = true; dict7["skilful"] = true; dict5["skill"] = true; dict7["skilled"] = true; dict7["skillet"] = true; dict6["skilly"] = true; dict4["skim"] = true; dict7["skimmed"] = true; dict7["skimmer"] = true; dict5["skimp"] = true; dict6["skimpy"] = true; dict4["skin"] = true; dict7["skinful"] = true; dict5["skink"] = true; dict7["skinned"] = true; dict7["skinner"] = true; dict6["skinny"] = true; dict5["skint"] = true; dict4["skip"] = true; dict7["skipper"] = true; dict5["skirl"] = true; dict7["skirret"] = true; dict5["skirt"] = true; dict4["skit"] = true; dict7["skitter"] = true; dict7["skittle"] = true; dict5["skive"] = true; dict6["skivvy"] = true; dict6["skopje"] = true; dict7["skoplje"] = true; dict6["skreak"] = true; dict7["skreigh"] = true; dict4["skua"] = true; dict5["skuld"] = true; dict5["skulk"] = true; dict7["skulker"] = true; dict5["skull"] = true; dict5["skunk"] = true; dict6["skybox"] = true; dict6["skycap"] = true; dict7["skydive"] = true; dict7["skyhook"] = true; dict7["skyjack"] = true; dict6["skylab"] = true; dict7["skylark"] = true; dict7["skyline"] = true; dict7["skysail"] = true; dict7["skywalk"] = true; dict7["skyward"] = true; dict6["skyway"] = true; dict4["slab"] = true; dict7["slabber"] = true; dict5["slack"] = true; dict7["slacken"] = true; dict7["slacker"] = true; dict7["slackly"] = true; dict6["slacks"] = true; dict4["slag"] = true; dict5["slain"] = true; dict5["slake"] = true; dict6["slaked"] = true; dict6["slalom"] = true; dict4["slam"] = true; dict7["slammer"] = true; dict7["slander"] = true; dict5["slang"] = true; dict6["slangy"] = true; dict5["slant"] = true; dict7["slanted"] = true; dict4["slap"] = true; dict7["slap-up"] = true; dict7["slapper"] = true; dict5["slash"] = true; dict7["slashed"] = true; dict7["slasher"] = true; dict5["slask"] = true; dict4["slat"] = true; dict5["slate"] = true; dict6["slater"] = true; dict6["slatey"] = true; dict7["slather"] = true; dict7["slating"] = true; dict5["slaty"] = true; dict4["slav"] = true; dict5["slave"] = true; dict6["slaver"] = true; dict7["slavery"] = true; dict6["slavey"] = true; dict6["slavic"] = true; dict7["slavish"] = true; dict4["slaw"] = true; dict4["slay"] = true; dict6["slayer"] = true; dict7["slaying"] = true; dict6["sleaze"] = true; dict6["sleazy"] = true; dict4["sled"] = true; dict7["sledder"] = true; dict6["sledge"] = true; dict5["sleek"] = true; dict7["sleekly"] = true; dict5["sleep"] = true; dict7["sleeper"] = true; dict6["sleepy"] = true; dict5["sleet"] = true; dict6["sleety"] = true; dict6["sleeve"] = true; dict7["sleeved"] = true; dict6["sleigh"] = true; dict7["sleight"] = true; dict7["slender"] = true; dict6["sleuth"] = true; dict4["slew"] = true; dict5["slews"] = true; dict7["slezsko"] = true; dict5["slice"] = true; dict6["sliced"] = true; dict6["slicer"] = true; dict7["slicing"] = true; dict5["slick"] = true; dict7["slicked"] = true; dict7["slicker"] = true; dict7["slickly"] = true; dict5["slide"] = true; dict6["slider"] = true; dict7["sliding"] = true; dict6["slight"] = true; dict4["slim"] = true; dict5["slime"] = true; dict6["slimed"] = true; dict6["slimly"] = true; dict5["slimy"] = true; dict5["sling"] = true; dict7["slinger"] = true; dict5["slink"] = true; dict4["slip"] = true; dict7["slip-on"] = true; dict7["slip-up"] = true; dict7["slipper"] = true; dict6["slippy"] = true; dict7["slipway"] = true; dict4["slit"] = true; dict7["slither"] = true; dict6["sliver"] = true; dict7["slivery"] = true; dict7["slo-bid"] = true; dict7["sloanea"] = true; dict4["slob"] = true; dict7["slobber"] = true; dict4["sloe"] = true; dict4["slog"] = true; dict6["slogan"] = true; dict7["slogger"] = true; dict5["sloop"] = true; dict4["slop"] = true; dict5["slope"] = true; dict6["sloped"] = true; dict7["sloping"] = true; dict7["slopped"] = true; dict6["sloppy"] = true; dict5["slops"] = true; dict5["slosh"] = true; dict7["sloshed"] = true; dict4["slot"] = true; dict5["sloth"] = true; dict6["slouch"] = true; dict7["slouchy"] = true; dict6["slough"] = true; dict7["sloughy"] = true; dict6["slovak"] = true; dict6["sloven"] = true; dict7["slovene"] = true; dict4["slow"] = true; dict6["slower"] = true; dict7["slowest"] = true; dict7["slowing"] = true; dict6["slowly"] = true; dict4["slub"] = true; dict7["slubbed"] = true; dict6["sludge"] = true; dict4["slue"] = true; dict4["slug"] = true; dict7["slugger"] = true; dict6["sluice"] = true; dict4["slum"] = true; dict7["slumber"] = true; dict6["slummy"] = true; dict5["slump"] = true; dict4["slur"] = true; dict5["slurp"] = true; dict7["slurred"] = true; dict6["slurry"] = true; dict5["slush"] = true; dict6["slushy"] = true; dict4["slut"] = true; dict5["slyly"] = true; dict7["slyness"] = true; dict5["smack"] = true; dict7["smacker"] = true; dict5["small"] = true; dict7["smaller"] = true; dict7["smalley"] = true; dict5["smarm"] = true; dict6["smarmy"] = true; dict5["smart"] = true; dict6["smarta"] = true; dict7["smartly"] = true; dict5["smash"] = true; dict7["smashed"] = true; dict7["smasher"] = true; dict7["smatter"] = true; dict5["smear"] = true; dict6["smegma"] = true; dict5["smell"] = true; dict6["smelly"] = true; dict5["smelt"] = true; dict7["smelter"] = true; dict7["smetana"] = true; dict4["smew"] = true; dict6["smidge"] = true; dict7["smidgen"] = true; dict7["smidgin"] = true; dict6["smilax"] = true; dict5["smile"] = true; dict6["smiler"] = true; dict6["smiley"] = true; dict7["smiling"] = true; dict5["smilo"] = true; dict6["smirch"] = true; dict5["smirk"] = true; dict7["smirker"] = true; dict7["smitane"] = true; dict5["smite"] = true; dict5["smith"] = true; dict6["smithy"] = true; dict7["smitten"] = true; dict5["smock"] = true; dict4["smog"] = true; dict6["smoggy"] = true; dict5["smoke"] = true; dict6["smoked"] = true; dict6["smoker"] = true; dict7["smoking"] = true; dict5["smoky"] = true; dict7["smolder"] = true; dict6["smooch"] = true; dict6["smooth"] = true; dict7["smoothy"] = true; dict7["smother"] = true; dict5["smsgt"] = true; dict6["smudge"] = true; dict6["smudgy"] = true; dict4["smug"] = true; dict7["smuggle"] = true; dict6["smugly"] = true; dict4["smut"] = true; dict6["smutch"] = true; dict5["smuts"] = true; dict6["smutty"] = true; dict6["smyrna"] = true; dict5["snack"] = true; dict7["snacker"] = true; dict7["snaffle"] = true; dict5["snafu"] = true; dict4["snag"] = true; dict5["snail"] = true; dict5["snake"] = true; dict5["snaky"] = true; dict4["snap"] = true; dict7["snapper"] = true; dict6["snappy"] = true; dict5["snare"] = true; dict6["snarer"] = true; dict5["snarf"] = true; dict5["snarl"] = true; dict7["snarled"] = true; dict6["snarly"] = true; dict6["snatch"] = true; dict6["snazzy"] = true; dict5["snead"] = true; dict5["sneak"] = true; dict7["sneaker"] = true; dict6["sneaky"] = true; dict5["sneer"] = true; dict7["sneerer"] = true; dict6["sneeze"] = true; dict7["sneezer"] = true; dict6["sneezy"] = true; dict7["snellen"] = true; dict5["snick"] = true; dict7["snicker"] = true; dict5["snide"] = true; dict7["snidely"] = true; dict5["sniff"] = true; dict7["sniffer"] = true; dict7["sniffle"] = true; dict7["sniffly"] = true; dict6["sniffy"] = true; dict7["snifter"] = true; dict7["snigger"] = true; dict4["snip"] = true; dict5["snipe"] = true; dict6["sniper"] = true; dict7["snippet"] = true; dict5["snips"] = true; dict4["snit"] = true; dict6["snitch"] = true; dict6["snivel"] = true; dict7["sno-cat"] = true; dict4["snob"] = true; dict6["snobby"] = true; dict5["snoek"] = true; dict4["snog"] = true; dict5["snood"] = true; dict5["snook"] = true; dict7["snooker"] = true; dict5["snoop"] = true; dict7["snooper"] = true; dict6["snoopy"] = true; dict5["snoot"] = true; dict6["snooty"] = true; dict6["snooze"] = true; dict5["snore"] = true; dict6["snorer"] = true; dict7["snoring"] = true; dict7["snorkel"] = true; dict5["snort"] = true; dict7["snorter"] = true; dict6["snorty"] = true; dict4["snot"] = true; dict6["snotty"] = true; dict5["snout"] = true; dict4["snow"] = true; dict7["snowcap"] = true; dict7["snowman"] = true; dict5["snowy"] = true; dict4["snub"] = true; dict5["snuff"] = true; dict7["snuffer"] = true; dict7["snuffle"] = true; dict7["snuffly"] = true; dict4["snug"] = true; dict7["snuggle"] = true; dict6["snugly"] = true; dict5["so-so"] = true; dict4["soak"] = true; dict7["soakage"] = true; dict6["soaked"] = true; dict6["soaker"] = true; dict7["soaking"] = true; dict4["soap"] = true; dict7["soapbox"] = true; dict5["soapy"] = true; dict4["soar"] = true; dict7["soaring"] = true; dict5["soave"] = true; dict7["sobbing"] = true; dict5["sober"] = true; dict7["soberly"] = true; dict6["socage"] = true; dict6["soccer"] = true; dict6["social"] = true; dict7["society"] = true; dict7["socinus"] = true; dict4["sock"] = true; dict6["socket"] = true; dict7["sockeye"] = true; dict5["socle"] = true; dict4["soda"] = true; dict6["sodden"] = true; dict7["sodding"] = true; dict5["soddy"] = true; dict6["sodium"] = true; dict6["sodoku"] = true; dict5["sodom"] = true; dict6["sodomy"] = true; dict4["sofa"] = true; dict6["soffit"] = true; dict5["sofia"] = true; dict4["soft"] = true; dict6["soften"] = true; dict6["softie"] = true; dict7["softish"] = true; dict6["softly"] = true; dict5["softy"] = true; dict5["soggy"] = true; dict4["soho"] = true; dict6["soigne"] = true; dict7["soignee"] = true; dict4["soil"] = true; dict6["soiled"] = true; dict7["soiling"] = true; dict7["soilure"] = true; dict6["soiree"] = true; dict4["soja"] = true; dict7["sojourn"] = true; dict6["sokoro"] = true; dict6["solace"] = true; dict5["solan"] = true; dict7["solanum"] = true; dict5["solar"] = true; dict4["sold"] = true; dict6["solder"] = true; dict7["soldier"] = true; dict4["sole"] = true; dict5["solea"] = true; dict5["soled"] = true; dict7["soledad"] = true; dict6["solely"] = true; dict6["solemn"] = true; dict6["solent"] = true; dict6["soleus"] = true; dict5["solfa"] = true; dict7["solfege"] = true; dict7["solicit"] = true; dict5["solid"] = true; dict7["solidly"] = true; dict7["solidus"] = true; dict7["soliton"] = true; dict4["solo"] = true; dict7["soloist"] = true; dict7["solomon"] = true; dict5["solon"] = true; dict7["soluble"] = true; dict6["solute"] = true; dict7["solvate"] = true; dict6["solvay"] = true; dict5["solve"] = true; dict6["solved"] = true; dict7["solvent"] = true; dict6["solver"] = true; dict7["solving"] = true; dict4["soma"] = true; dict6["somali"] = true; dict7["somalia"] = true; dict5["soman"] = true; dict7["somatic"] = true; dict6["somber"] = true; dict6["sombre"] = true; dict4["some"] = true; dict7["someday"] = true; dict7["somehow"] = true; dict7["someone"] = true; dict7["someway"] = true; dict6["somite"] = true; dict5["somme"] = true; dict6["somrai"] = true; dict6["sonant"] = true; dict5["sonar"] = true; dict6["sonata"] = true; dict7["sonchus"] = true; dict4["sone"] = true; dict4["song"] = true; dict7["songful"] = true; dict7["songhai"] = true; dict5["sonic"] = true; dict6["sonnet"] = true; dict5["sonny"] = true; dict6["sonora"] = true; dict6["sonsie"] = true; dict5["sonsy"] = true; dict6["sontag"] = true; dict4["soon"] = true; dict6["sooner"] = true; dict7["soonest"] = true; dict4["soot"] = true; dict5["sooth"] = true; dict6["soothe"] = true; dict5["sooty"] = true; dict4["soph"] = true; dict7["sophism"] = true; dict7["sophist"] = true; dict7["sophora"] = true; dict5["sopor"] = true; dict7["sopping"] = true; dict5["soppy"] = true; dict7["soprano"] = true; dict4["sops"] = true; dict4["sorb"] = true; dict7["sorbate"] = true; dict6["sorbed"] = true; dict7["sorbent"] = true; dict6["sorbet"] = true; dict7["sorbian"] = true; dict6["sorbus"] = true; dict7["sorcery"] = true; dict6["sordid"] = true; dict7["sordino"] = true; dict4["sore"] = true; dict6["sorely"] = true; dict5["sorex"] = true; dict6["sorgho"] = true; dict7["sorghum"] = true; dict5["sorgo"] = true; dict7["sororal"] = true; dict6["sorrel"] = true; dict6["sorrow"] = true; dict5["sorry"] = true; dict4["sort"] = true; dict6["sorted"] = true; dict6["sorter"] = true; dict6["sortie"] = true; dict7["sorting"] = true; dict5["sorus"] = true; dict6["sothis"] = true; dict5["sotho"] = true; dict7["sottish"] = true; dict6["souari"] = true; dict7["soubise"] = true; dict6["soudan"] = true; dict7["souffle"] = true; dict5["sough"] = true; dict6["sought"] = true; dict4["souk"] = true; dict4["soul"] = true; dict7["soulful"] = true; dict5["sound"] = true; dict7["sounder"] = true; dict7["soundly"] = true; dict4["soup"] = true; dict7["soupcon"] = true; dict7["soupfin"] = true; dict5["soupy"] = true; dict4["sour"] = true; dict6["source"] = true; dict6["soured"] = true; dict7["souring"] = true; dict7["sourish"] = true; dict6["sourly"] = true; dict7["soursop"] = true; dict5["sousa"] = true; dict5["souse"] = true; dict6["soused"] = true; dict7["sousing"] = true; dict7["souslik"] = true; dict6["sousse"] = true; dict7["soutane"] = true; dict5["south"] = true; dict7["souther"] = true; dict7["southey"] = true; dict7["soutine"] = true; dict6["soviet"] = true; dict7["soviets"] = true; dict7["sowbane"] = true; dict5["sower"] = true; dict6["soweto"] = true; dict4["sown"] = true; dict4["soya"] = true; dict7["soybean"] = true; dict7["soymilk"] = true; dict7["sozzled"] = true; dict5["space"] = true; dict6["spaced"] = true; dict6["spacey"] = true; dict7["spacial"] = true; dict7["spacing"] = true; dict7["spackle"] = true; dict5["spacy"] = true; dict5["spade"] = true; dict6["spadix"] = true; dict5["spain"] = true; dict6["spalax"] = true; dict5["spall"] = true; dict4["spam"] = true; dict7["spammer"] = true; dict4["span"] = true; dict7["spandau"] = true; dict7["spandex"] = true; dict5["spang"] = true; dict7["spangle"] = true; dict7["spangly"] = true; dict7["spaniel"] = true; dict7["spanish"] = true; dict5["spank"] = true; dict7["spanker"] = true; dict7["spanner"] = true; dict4["spar"] = true; dict5["spare"] = true; dict7["sparely"] = true; dict6["sparer"] = true; dict6["sparge"] = true; dict6["sparid"] = true; dict7["sparing"] = true; dict5["spark"] = true; dict7["sparker"] = true; dict7["sparkle"] = true; dict7["sparkly"] = true; dict7["sparrow"] = true; dict6["sparse"] = true; dict6["sparta"] = true; dict7["spartan"] = true; dict5["spasm"] = true; dict7["spassky"] = true; dict7["spastic"] = true; dict4["spat"] = true; dict5["spate"] = true; dict6["spathe"] = true; dict7["spatial"] = true; dict7["spatter"] = true; dict7["spatula"] = true; dict6["spavin"] = true; dict5["spawl"] = true; dict5["spawn"] = true; dict7["spawner"] = true; dict4["spay"] = true; dict6["spayed"] = true; dict7["spaying"] = true; dict5["speak"] = true; dict7["speaker"] = true; dict5["spear"] = true; dict4["spec"] = true; dict7["special"] = true; dict6["specie"] = true; dict7["species"] = true; dict7["specify"] = true; dict5["speck"] = true; dict7["specked"] = true; dict7["speckle"] = true; dict5["specs"] = true; dict7["specter"] = true; dict7["spectre"] = true; dict6["speech"] = true; dict5["speed"] = true; dict7["speeder"] = true; dict7["speedup"] = true; dict6["speedy"] = true; dict5["speer"] = true; dict5["speke"] = true; dict5["spell"] = true; dict7["speller"] = true; dict5["spelt"] = true; dict7["spelter"] = true; dict7["spelunk"] = true; dict7["spencer"] = true; dict5["spend"] = true; dict7["spender"] = true; dict7["spenser"] = true; dict5["spent"] = true; dict5["sperm"] = true; dict6["sperry"] = true; dict4["spew"] = true; dict6["spewer"] = true; dict6["sphere"] = true; dict7["spheric"] = true; dict6["sphinx"] = true; dict7["sphyrna"] = true; dict4["spic"] = true; dict5["spica"] = true; dict7["spicate"] = true; dict5["spice"] = true; dict7["spicery"] = true; dict7["spicily"] = true; dict5["spick"] = true; dict7["spicule"] = true; dict5["spicy"] = true; dict6["spider"] = true; dict7["spidery"] = true; dict7["spiegel"] = true; dict5["spiel"] = true; dict5["spiff"] = true; dict6["spiffy"] = true; dict6["spigot"] = true; dict4["spik"] = true; dict5["spike"] = true; dict6["spiked"] = true; dict5["spiky"] = true; dict5["spile"] = true; dict5["spill"] = true; dict7["spiller"] = true; dict4["spin"] = true; dict7["spinach"] = true; dict6["spinal"] = true; dict7["spindle"] = true; dict7["spindly"] = true; dict5["spine"] = true; dict6["spinel"] = true; dict6["spinet"] = true; dict7["spinner"] = true; dict7["spinney"] = true; dict7["spinose"] = true; dict7["spinous"] = true; dict7["spinoza"] = true; dict6["spinus"] = true; dict5["spiny"] = true; dict7["spiraea"] = true; dict6["spiral"] = true; dict7["spirant"] = true; dict5["spire"] = true; dict6["spirea"] = true; dict6["spirit"] = true; dict7["spirits"] = true; dict5["spirt"] = true; dict7["spirula"] = true; dict4["spit"] = true; dict5["spite"] = true; dict7["spitter"] = true; dict7["spittle"] = true; dict5["spitz"] = true; dict4["spiv"] = true; dict6["splash"] = true; dict7["splashy"] = true; dict5["splat"] = true; dict5["splay"] = true; dict6["spleen"] = true; dict7["splenic"] = true; dict6["splice"] = true; dict7["splicer"] = true; dict6["spliff"] = true; dict6["spline"] = true; dict6["splint"] = true; dict5["split"] = true; dict7["splodge"] = true; dict6["splosh"] = true; dict7["splotch"] = true; dict7["splurge"] = true; dict5["spock"] = true; dict5["spode"] = true; dict5["spoil"] = true; dict7["spoiled"] = true; dict7["spoiler"] = true; dict6["spoilt"] = true; dict7["spokane"] = true; dict5["spoke"] = true; dict6["spoken"] = true; dict7["spondee"] = true; dict6["sponge"] = true; dict7["sponger"] = true; dict6["spongy"] = true; dict7["sponsor"] = true; dict5["spoof"] = true; dict5["spook"] = true; dict6["spooky"] = true; dict5["spool"] = true; dict5["spoon"] = true; dict5["spoor"] = true; dict5["spore"] = true; dict5["spork"] = true; dict7["sporran"] = true; dict5["sport"] = true; dict6["sporty"] = true; dict4["spot"] = true; dict5["spots"] = true; dict7["spotted"] = true; dict7["spotter"] = true; dict6["spotty"] = true; dict7["spousal"] = true; dict6["spouse"] = true; dict5["spout"] = true; dict7["spouter"] = true; dict5["sprag"] = true; dict6["sprain"] = true; dict5["sprat"] = true; dict6["sprawl"] = true; dict7["sprawly"] = true; dict5["spray"] = true; dict7["sprayer"] = true; dict6["spread"] = true; dict5["spree"] = true; dict5["sprig"] = true; dict6["spring"] = true; dict7["springy"] = true; dict6["sprint"] = true; dict5["sprit"] = true; dict6["sprite"] = true; dict7["sprites"] = true; dict6["spritz"] = true; dict5["sprog"] = true; dict6["sprout"] = true; dict6["spruce"] = true; dict5["sprue"] = true; dict4["spry"] = true; dict4["spud"] = true; dict4["spue"] = true; dict5["spume"] = true; dict5["spumy"] = true; dict5["spunk"] = true; dict6["spunky"] = true; dict4["spur"] = true; dict6["spurge"] = true; dict5["spurn"] = true; dict7["spurned"] = true; dict7["spurner"] = true; dict5["spurt"] = true; dict7["sputnik"] = true; dict7["sputter"] = true; dict6["sputum"] = true; dict7["spyeria"] = true; dict7["spyhole"] = true; dict6["spying"] = true; dict7["spyware"] = true; dict5["squab"] = true; dict7["squabby"] = true; dict5["squad"] = true; dict7["squalid"] = true; dict6["squall"] = true; dict7["squally"] = true; dict7["squalor"] = true; dict7["squalus"] = true; dict6["squama"] = true; dict6["square"] = true; dict7["squared"] = true; dict6["squark"] = true; dict6["squash"] = true; dict7["squashy"] = true; dict5["squat"] = true; dict7["squatty"] = true; dict5["squaw"] = true; dict6["squawk"] = true; dict7["squawky"] = true; dict6["squeak"] = true; dict7["squeaky"] = true; dict6["squeal"] = true; dict7["squeeze"] = true; dict7["squelch"] = true; dict5["squib"] = true; dict5["squid"] = true; dict7["squiffy"] = true; dict6["squill"] = true; dict7["squilla"] = true; dict7["squinch"] = true; dict6["squint"] = true; dict7["squinty"] = true; dict6["squire"] = true; dict6["squirm"] = true; dict6["squirt"] = true; dict6["squish"] = true; dict7["squishy"] = true; dict7["sravana"] = true; dict6["srbija"] = true; dict4["sspe"] = true; dict4["ssri"] = true; dict4["stab"] = true; dict7["stabber"] = true; dict7["stabile"] = true; dict6["stable"] = true; dict6["stably"] = true; dict7["stachys"] = true; dict5["stack"] = true; dict7["stacked"] = true; dict7["stacker"] = true; dict6["stacks"] = true; dict6["stacte"] = true; dict7["staddle"] = true; dict7["stadium"] = true; dict5["stael"] = true; dict5["staff"] = true; dict6["staffa"] = true; dict7["staffer"] = true; dict4["stag"] = true; dict5["stage"] = true; dict6["staged"] = true; dict6["stager"] = true; dict6["stagey"] = true; dict7["stagger"] = true; dict7["stagily"] = true; dict7["staging"] = true; dict7["stagira"] = true; dict5["stagy"] = true; dict5["staid"] = true; dict7["staidly"] = true; dict5["stain"] = true; dict7["stained"] = true; dict7["stainer"] = true; dict5["stair"] = true; dict6["stairs"] = true; dict5["stake"] = true; dict6["stakes"] = true; dict5["stale"] = true; dict6["stalin"] = true; dict7["stalino"] = true; dict5["stalk"] = true; dict7["stalked"] = true; dict7["stalker"] = true; dict5["stall"] = true; dict6["stalls"] = true; dict7["stambul"] = true; dict6["stamen"] = true; dict7["stamina"] = true; dict7["stammel"] = true; dict7["stammer"] = true; dict5["stamp"] = true; dict7["stamper"] = true; dict6["stance"] = true; dict6["stanch"] = true; dict5["stand"] = true; dict7["standby"] = true; dict7["standee"] = true; dict7["stander"] = true; dict7["stanley"] = true; dict7["stannic"] = true; dict7["stanton"] = true; dict6["stanza"] = true; dict6["stapes"] = true; dict5["staph"] = true; dict6["staple"] = true; dict7["stapler"] = true; dict4["star"] = true; dict6["starch"] = true; dict7["starchy"] = true; dict7["stardom"] = true; dict5["stare"] = true; dict6["starer"] = true; dict7["starets"] = true; dict7["staring"] = true; dict5["stark"] = true; dict7["starkey"] = true; dict7["starkly"] = true; dict7["starlet"] = true; dict7["starlit"] = true; dict5["starr"] = true; dict7["starred"] = true; dict6["starry"] = true; dict5["start"] = true; dict7["starter"] = true; dict7["startle"] = true; dict7["startup"] = true; dict6["starve"] = true; dict7["starved"] = true; dict5["stash"] = true; dict6["stasis"] = true; dict7["statant"] = true; dict5["state"] = true; dict6["stated"] = true; dict7["stately"] = true; dict6["stater"] = true; dict6["static"] = true; dict7["statice"] = true; dict7["statics"] = true; dict6["statin"] = true; dict7["station"] = true; dict7["stative"] = true; dict6["stator"] = true; dict6["statue"] = true; dict7["stature"] = true; dict6["status"] = true; dict7["statute"] = true; dict7["staunch"] = true; dict5["stave"] = true; dict4["stay"] = true; dict6["stayer"] = true; dict7["stayman"] = true; dict5["stays"] = true; dict5["stead"] = true; dict6["steady"] = true; dict5["steak"] = true; dict5["steal"] = true; dict7["stealer"] = true; dict7["stealth"] = true; dict5["steam"] = true; dict7["steamed"] = true; dict7["steamer"] = true; dict6["steamy"] = true; dict7["stearic"] = true; dict7["stearin"] = true; dict5["steed"] = true; dict5["steel"] = true; dict6["steele"] = true; dict6["steely"] = true; dict5["steen"] = true; dict5["steep"] = true; dict7["steepen"] = true; dict7["steeper"] = true; dict7["steeple"] = true; dict7["steeply"] = true; dict5["steer"] = true; dict7["steerer"] = true; dict5["stein"] = true; dict7["steinem"] = true; dict7["steiner"] = true; dict5["stela"] = true; dict5["stele"] = true; dict6["stelis"] = true; dict6["stella"] = true; dict7["stellar"] = true; dict7["steller"] = true; dict4["stem"] = true; dict6["stemma"] = true; dict7["stemmed"] = true; dict7["stemmer"] = true; dict6["stench"] = true; dict7["stencil"] = true; dict7["stengel"] = true; dict5["stent"] = true; dict7["stentor"] = true; dict4["step"] = true; dict7["step-in"] = true; dict7["step-up"] = true; dict7["stephen"] = true; dict6["steppe"] = true; dict7["stepper"] = true; dict5["steps"] = true; dict7["stepson"] = true; dict6["stereo"] = true; dict7["sterile"] = true; dict5["stern"] = true; dict6["sterna"] = true; dict7["sternal"] = true; dict6["sterne"] = true; dict7["sternly"] = true; dict7["sternum"] = true; dict7["steroid"] = true; dict6["sterol"] = true; dict7["sterope"] = true; dict7["stertor"] = true; dict4["stet"] = true; dict7["stetson"] = true; dict7["steuben"] = true; dict7["stevens"] = true; dict6["stevia"] = true; dict4["stew"] = true; dict7["steward"] = true; dict7["stewart"] = true; dict6["stewed"] = true; dict7["stewing"] = true; dict7["stewpan"] = true; dict6["sthene"] = true; dict6["stheno"] = true; dict5["stick"] = true; dict7["sticker"] = true; dict7["stickle"] = true; dict7["stickup"] = true; dict6["sticky"] = true; dict5["stiff"] = true; dict7["stiffen"] = true; dict7["stiffly"] = true; dict6["stifle"] = true; dict7["stifled"] = true; dict7["stifler"] = true; dict6["stigma"] = true; dict5["stile"] = true; dict5["still"] = true; dict6["stilly"] = true; dict5["stilt"] = true; dict7["stilted"] = true; dict7["stilton"] = true; dict5["sting"] = true; dict7["stinger"] = true; dict6["stingy"] = true; dict5["stink"] = true; dict7["stinker"] = true; dict6["stinky"] = true; dict5["stint"] = true; dict7["stinter"] = true; dict5["stipe"] = true; dict7["stipend"] = true; dict7["stipple"] = true; dict7["stipule"] = true; dict4["stir"] = true; dict5["stirk"] = true; dict7["stirred"] = true; dict7["stirrer"] = true; dict7["stirrup"] = true; dict6["stitch"] = true; dict5["stoat"] = true; dict4["stob"] = true; dict5["stock"] = true; dict7["stocked"] = true; dict7["stocker"] = true; dict6["stocks"] = true; dict6["stocky"] = true; dict6["stodge"] = true; dict6["stodgy"] = true; dict5["stoep"] = true; dict6["stogie"] = true; dict5["stogy"] = true; dict5["stoic"] = true; dict7["stoical"] = true; dict5["stoke"] = true; dict6["stoker"] = true; dict5["stole"] = true; dict6["stolid"] = true; dict6["stolon"] = true; dict5["stoma"] = true; dict7["stomach"] = true; dict7["stomate"] = true; dict5["stomp"] = true; dict7["stomper"] = true; dict5["stone"] = true; dict6["stoned"] = true; dict6["stoner"] = true; dict7["stonily"] = true; dict7["stoning"] = true; dict5["stony"] = true; dict6["stooge"] = true; dict5["stool"] = true; dict7["stoolie"] = true; dict5["stoop"] = true; dict7["stooped"] = true; dict7["stooper"] = true; dict4["stop"] = true; dict6["stopes"] = true; dict7["stopgap"] = true; dict7["stopped"] = true; dict7["stopper"] = true; dict7["stopple"] = true; dict5["stops"] = true; dict7["storage"] = true; dict6["storax"] = true; dict5["store"] = true; dict6["storey"] = true; dict7["storied"] = true; dict5["stork"] = true; dict5["storm"] = true; dict6["stormy"] = true; dict5["story"] = true; dict5["stoup"] = true; dict5["stout"] = true; dict7["stoutly"] = true; dict5["stove"] = true; dict6["stover"] = true; dict4["stow"] = true; dict7["stowage"] = true; dict5["stowe"] = true; dict7["stowing"] = true; dict5["strad"] = true; dict6["strafe"] = true; dict7["strafer"] = true; dict6["strain"] = true; dict6["strait"] = true; dict7["straits"] = true; dict6["strake"] = true; dict6["strand"] = true; dict7["strange"] = true; dict5["strap"] = true; dict7["stratum"] = true; dict7["stratus"] = true; dict7["strauss"] = true; dict5["straw"] = true; dict5["stray"] = true; dict7["strayer"] = true; dict6["streak"] = true; dict7["streaky"] = true; dict6["stream"] = true; dict6["streep"] = true; dict6["street"] = true; dict5["strep"] = true; dict6["stress"] = true; dict7["stretch"] = true; dict5["strew"] = true; dict5["stria"] = true; dict7["striate"] = true; dict6["strict"] = true; dict6["stride"] = true; dict7["strider"] = true; dict7["stridor"] = true; dict6["strife"] = true; dict6["strike"] = true; dict7["striker"] = true; dict6["string"] = true; dict7["strings"] = true; dict7["stringy"] = true; dict5["strip"] = true; dict6["stripe"] = true; dict7["striped"] = true; dict7["striper"] = true; dict7["stripes"] = true; dict6["stripy"] = true; dict6["strive"] = true; dict7["striver"] = true; dict5["strix"] = true; dict6["strobe"] = true; dict6["stroke"] = true; dict6["stroll"] = true; dict6["stroma"] = true; dict6["strong"] = true; dict5["strop"] = true; dict7["strophe"] = true; dict7["stroppy"] = true; dict6["struck"] = true; dict7["strudel"] = true; dict5["strum"] = true; dict6["struma"] = true; dict6["strung"] = true; dict5["strut"] = true; dict7["strymon"] = true; dict6["stuart"] = true; dict4["stub"] = true; dict7["stubble"] = true; dict7["stubbly"] = true; dict6["stubbs"] = true; dict6["stubby"] = true; dict6["stucco"] = true; dict5["stuck"] = true; dict4["stud"] = true; dict7["studded"] = true; dict7["student"] = true; dict7["studied"] = true; dict6["studio"] = true; dict5["study"] = true; dict5["stuff"] = true; dict7["stuffed"] = true; dict7["stuffer"] = true; dict6["stuffy"] = true; dict7["stumble"] = true; dict5["stump"] = true; dict7["stumper"] = true; dict6["stumpy"] = true; dict4["stun"] = true; dict5["stung"] = true; dict7["stunned"] = true; dict7["stunner"] = true; dict5["stunt"] = true; dict7["stunted"] = true; dict5["stupa"] = true; dict5["stupe"] = true; dict7["stupefy"] = true; dict6["stupid"] = true; dict6["stupor"] = true; dict6["sturdy"] = true; dict7["sturnus"] = true; dict7["stutter"] = true; dict4["stye"] = true; dict7["stygian"] = true; dict5["style"] = true; dict6["styler"] = true; dict6["stylet"] = true; dict7["stylise"] = true; dict7["stylish"] = true; dict7["stylist"] = true; dict7["stylite"] = true; dict7["stylize"] = true; dict6["stylus"] = true; dict6["stymie"] = true; dict5["stymy"] = true; dict7["stypsis"] = true; dict7["styptic"] = true; dict6["styrax"] = true; dict7["styrene"] = true; dict6["styron"] = true; dict4["styx"] = true; dict7["suasion"] = true; dict5["suave"] = true; dict7["suavely"] = true; dict7["suavity"] = true; dict7["subacid"] = true; dict7["subbase"] = true; dict7["subbing"] = true; dict6["subdue"] = true; dict7["subdued"] = true; dict7["subduer"] = true; dict7["subedit"] = true; dict7["subfusc"] = true; dict7["subhead"] = true; dict7["subject"] = true; dict7["subjoin"] = true; dict6["sublet"] = true; dict7["sublime"] = true; dict7["submenu"] = true; dict6["submit"] = true; dict6["suborn"] = true; dict7["subpart"] = true; dict6["subset"] = true; dict7["subside"] = true; dict7["subsidy"] = true; dict7["subsist"] = true; dict7["subsoil"] = true; dict7["subsume"] = true; dict7["subtend"] = true; dict6["subtle"] = true; dict6["subtly"] = true; dict7["subunit"] = true; dict6["suburb"] = true; dict7["subvent"] = true; dict7["subvert"] = true; dict6["subway"] = true; dict7["succade"] = true; dict7["succeed"] = true; dict7["success"] = true; dict6["succor"] = true; dict7["succory"] = true; dict6["succos"] = true; dict7["succoth"] = true; dict7["succour"] = true; dict7["succuba"] = true; dict7["succumb"] = true; dict6["succus"] = true; dict7["succuss"] = true; dict4["such"] = true; dict4["suck"] = true; dict6["sucker"] = true; dict7["sucking"] = true; dict6["suckle"] = true; dict7["suckled"] = true; dict7["sucrase"] = true; dict5["sucre"] = true; dict7["sucrose"] = true; dict7["suction"] = true; dict7["sudafed"] = true; dict5["sudan"] = true; dict6["sudate"] = true; dict7["sudbury"] = true; dict6["sudden"] = true; dict6["sudoku"] = true; dict5["sudor"] = true; dict5["sudra"] = true; dict4["suds"] = true; dict5["sudsy"] = true; dict5["suede"] = true; dict4["suer"] = true; dict4["suet"] = true; dict5["suety"] = true; dict4["suez"] = true; dict6["suffer"] = true; dict7["suffice"] = true; dict6["suffix"] = true; dict7["suffuse"] = true; dict4["sufi"] = true; dict6["sufism"] = true; dict5["sugar"] = true; dict7["sugared"] = true; dict6["sugary"] = true; dict7["suggest"] = true; dict4["sugi"] = true; dict7["suharto"] = true; dict7["suicide"] = true; dict6["suidae"] = true; dict7["suillus"] = true; dict6["suisse"] = true; dict4["suit"] = true; dict5["suite"] = true; dict6["suited"] = true; dict7["suiting"] = true; dict6["suitor"] = true; dict7["sukarno"] = true; dict7["sukkoth"] = true; dict5["sukur"] = true; dict4["sula"] = true; dict7["sulamyd"] = true; dict7["sulcate"] = true; dict6["sulcus"] = true; dict5["sulfa"] = true; dict7["sulfate"] = true; dict7["sulfide"] = true; dict6["sulfur"] = true; dict7["sulidae"] = true; dict4["sulk"] = true; dict7["sulkily"] = true; dict5["sulky"] = true; dict5["sulla"] = true; dict6["sullen"] = true; dict5["sully"] = true; dict6["sulpha"] = true; dict7["sulphur"] = true; dict6["sultan"] = true; dict7["sultana"] = true; dict6["sultry"] = true; dict6["sum-up"] = true; dict5["sumac"] = true; dict6["sumach"] = true; dict7["sumatra"] = true; dict5["sumer"] = true; dict7["summary"] = true; dict7["summate"] = true; dict6["summer"] = true; dict7["summery"] = true; dict6["summit"] = true; dict6["summon"] = true; dict7["summons"] = true; dict6["sumner"] = true; dict4["sumo"] = true; dict4["sump"] = true; dict7["sumpter"] = true; dict7["sun-ray"] = true; dict7["sunbeam"] = true; dict7["sunbelt"] = true; dict7["sunburn"] = true; dict6["sundae"] = true; dict6["sunday"] = true; dict6["sunder"] = true; dict6["sundew"] = true; dict7["sundial"] = true; dict6["sundog"] = true; dict7["sundown"] = true; dict6["sundry"] = true; dict7["sunfish"] = true; dict4["sung"] = true; dict6["sunhat"] = true; dict4["sunk"] = true; dict6["sunken"] = true; dict7["sunlamp"] = true; dict7["sunless"] = true; dict6["sunlit"] = true; dict5["sunna"] = true; dict6["sunnah"] = true; dict5["sunni"] = true; dict7["sunnily"] = true; dict7["sunnite"] = true; dict5["sunny"] = true; dict6["sunray"] = true; dict7["sunrise"] = true; dict7["sunroof"] = true; dict7["sunroom"] = true; dict7["sunrose"] = true; dict6["sunset"] = true; dict7["sunspot"] = true; dict7["sunsuit"] = true; dict6["suntan"] = true; dict7["suntrap"] = true; dict5["sunup"] = true; dict5["suomi"] = true; dict5["super"] = true; dict6["superb"] = true; dict6["supine"] = true; dict6["supper"] = true; dict7["supping"] = true; dict6["supple"] = true; dict6["supply"] = true; dict7["support"] = true; dict7["suppose"] = true; dict5["supra"] = true; dict7["supreme"] = true; dict7["supremo"] = true; dict4["sura"] = true; dict7["surbase"] = true; dict7["surcoat"] = true; dict4["surd"] = true; dict4["sure"] = true; dict6["surely"] = true; dict6["surety"] = true; dict4["surf"] = true; dict7["surface"] = true; dict7["surfeit"] = true; dict6["surfer"] = true; dict7["surfing"] = true; dict5["surge"] = true; dict7["surgeon"] = true; dict7["surgery"] = true; dict7["surging"] = true; dict7["surinam"] = true; dict7["surlily"] = true; dict5["surly"] = true; dict7["surmise"] = true; dict7["surname"] = true; dict6["surnia"] = true; dict7["surpass"] = true; dict7["surplus"] = true; dict7["surreal"] = true; dict6["surrey"] = true; dict6["surtax"] = true; dict7["surtout"] = true; dict7["surveil"] = true; dict6["survey"] = true; dict7["survive"] = true; dict5["surya"] = true; dict4["susa"] = true; dict5["susah"] = true; dict7["susanna"] = true; dict5["sushi"] = true; dict6["susian"] = true; dict7["susiana"] = true; dict6["suslik"] = true; dict7["suspect"] = true; dict7["suspend"] = true; dict7["suspire"] = true; dict6["sussex"] = true; dict7["sustain"] = true; dict6["sutler"] = true; dict5["sutra"] = true; dict6["suttee"] = true; dict6["sutura"] = true; dict6["suture"] = true; dict4["suva"] = true; dict6["svelte"] = true; dict7["sverige"] = true; dict7["svoboda"] = true; dict4["swab"] = true; dict4["swad"] = true; dict7["swaddle"] = true; dict4["swag"] = true; dict5["swage"] = true; dict7["swagger"] = true; dict7["swaggie"] = true; dict7["swagman"] = true; dict7["swahili"] = true; dict5["swain"] = true; dict5["swale"] = true; dict7["swallow"] = true; dict5["swami"] = true; dict5["swamp"] = true; dict6["swampy"] = true; dict4["swan"] = true; dict5["swank"] = true; dict6["swanky"] = true; dict7["swansea"] = true; dict7["swanson"] = true; dict4["swap"] = true; dict5["sward"] = true; dict5["swarm"] = true; dict5["swart"] = true; dict7["swarthy"] = true; dict5["swash"] = true; dict4["swat"] = true; dict6["swatch"] = true; dict5["swath"] = true; dict6["swathe"] = true; dict7["swatter"] = true; dict4["sway"] = true; dict6["swayer"] = true; dict5["swazi"] = true; dict4["swbs"] = true; dict4["swbw"] = true; dict5["swear"] = true; dict7["swearer"] = true; dict5["sweat"] = true; dict7["sweater"] = true; dict6["sweats"] = true; dict5["swede"] = true; dict6["sweden"] = true; dict7["swedish"] = true; dict5["sweep"] = true; dict7["sweeper"] = true; dict5["sweet"] = true; dict7["sweeten"] = true; dict7["sweetie"] = true; dict7["sweetly"] = true; dict5["swell"] = true; dict7["swelled"] = true; dict7["swelter"] = true; dict7["sweltry"] = true; dict5["swept"] = true; dict7["swertia"] = true; dict6["swerve"] = true; dict5["swift"] = true; dict7["swiftly"] = true; dict4["swig"] = true; dict5["swill"] = true; dict4["swim"] = true; dict7["swimmer"] = true; dict7["swindle"] = true; dict5["swine"] = true; dict5["swing"] = true; dict6["swinge"] = true; dict7["swinger"] = true; dict6["swingy"] = true; dict7["swinish"] = true; dict5["swipe"] = true; dict5["swirl"] = true; dict5["swish"] = true; dict6["swishy"] = true; dict5["swiss"] = true; dict6["switch"] = true; dict7["swither"] = true; dict6["swivel"] = true; dict6["swivet"] = true; dict4["swiz"] = true; dict7["swizzle"] = true; dict4["swob"] = true; dict7["swollen"] = true; dict5["swoon"] = true; dict5["swoop"] = true; dict6["swoosh"] = true; dict4["swop"] = true; dict5["sword"] = true; dict5["sworn"] = true; dict5["swosh"] = true; dict4["swot"] = true; dict6["sydney"] = true; dict5["sylph"] = true; dict5["sylva"] = true; dict6["sylvan"] = true; dict7["sylvine"] = true; dict7["sylvite"] = true; dict6["symbol"] = true; dict7["symonds"] = true; dict6["symons"] = true; dict7["symptom"] = true; dict7["synapse"] = true; dict4["sync"] = true; dict7["syncarp"] = true; dict7["synchro"] = true; dict7["syncope"] = true; dict6["syndic"] = true; dict7["synergy"] = true; dict5["synge"] = true; dict5["synod"] = true; dict7["synonym"] = true; dict7["synovia"] = true; dict6["synset"] = true; dict7["syntagm"] = true; dict6["syntax"] = true; dict4["syph"] = true; dict6["syphon"] = true; dict5["syria"] = true; dict6["syrian"] = true; dict7["syringa"] = true; dict7["syringe"] = true; dict6["syrinx"] = true; dict5["syrup"] = true; dict6["syrupy"] = true; dict6["system"] = true; dict7["systole"] = true; dict6["syzygy"] = true; dict5["szell"] = true; dict7["szilard"] = true; dict5["t-bar"] = true; dict6["t-bill"] = true; dict5["t-man"] = true; dict7["t-scope"] = true; dict7["t-shirt"] = true; dict4["t.b."] = true; dict4["taal"] = true; dict6["tabard"] = true; dict7["tabasco"] = true; dict5["tabby"] = true; dict5["tabes"] = true; dict4["tabi"] = true; dict5["tabis"] = true; dict5["table"] = true; dict7["tableau"] = true; dict6["tablet"] = true; dict7["tabloid"] = true; dict5["taboo"] = true; dict7["tabooli"] = true; dict5["tabor"] = true; dict6["tabora"] = true; dict7["taboret"] = true; dict6["tabour"] = true; dict6["tabriz"] = true; dict4["tabu"] = true; dict5["tabuk"] = true; dict7["tabular"] = true; dict5["tabun"] = true; dict5["tacca"] = true; dict4["tach"] = true; dict5["tacit"] = true; dict7["tacitly"] = true; dict7["tacitus"] = true; dict4["tack"] = true; dict6["tacker"] = true; dict7["tacking"] = true; dict6["tackle"] = true; dict7["tackler"] = true; dict5["tacky"] = true; dict4["taco"] = true; dict6["tacoma"] = true; dict4["tact"] = true; dict7["tactful"] = true; dict6["tactic"] = true; dict7["tactics"] = true; dict7["tactile"] = true; dict7["tactual"] = true; dict6["tadjik"] = true; dict7["tadorna"] = true; dict7["tadpole"] = true; dict7["tadzhik"] = true; dict5["taegu"] = true; dict4["tael"] = true; dict6["taenia"] = true; dict7["taffeta"] = true; dict5["taffy"] = true; dict4["taft"] = true; dict7["tagalog"] = true; dict7["tagamet"] = true; dict6["tagged"] = true; dict6["tagger"] = true; dict6["tagore"] = true; dict6["taguan"] = true; dict5["tagus"] = true; dict6["tahini"] = true; dict6["tahiti"] = true; dict6["taichi"] = true; dict4["taif"] = true; dict4["tail"] = true; dict6["tailed"] = true; dict7["tailfin"] = true; dict7["tailing"] = true; dict6["tailor"] = true; dict5["tails"] = true; dict5["taint"] = true; dict7["tainted"] = true; dict6["taipan"] = true; dict6["taipeh"] = true; dict6["taipei"] = true; dict5["taira"] = true; dict6["taiwan"] = true; dict7["taiyuan"] = true; dict5["tajik"] = true; dict6["tajiki"] = true; dict4["taka"] = true; dict6["takahe"] = true; dict4["take"] = true; dict7["take-in"] = true; dict7["take-up"] = true; dict7["takelma"] = true; dict5["taken"] = true; dict7["takeoff"] = true; dict7["takeout"] = true; dict5["taker"] = true; dict5["takin"] = true; dict6["taking"] = true; dict7["takings"] = true; dict4["tala"] = true; dict7["talaria"] = true; dict6["talbot"] = true; dict4["talc"] = true; dict6["talcum"] = true; dict4["tale"] = true; dict7["taleban"] = true; dict6["talent"] = true; dict7["taliban"] = true; dict6["talien"] = true; dict7["talinum"] = true; dict7["taliped"] = true; dict7["talipes"] = true; dict7["talipot"] = true; dict4["talk"] = true; dict6["talker"] = true; dict6["talkie"] = true; dict7["talkily"] = true; dict7["talking"] = true; dict5["talks"] = true; dict5["talky"] = true; dict4["tall"] = true; dict7["tallboy"] = true; dict6["tallin"] = true; dict7["tallinn"] = true; dict6["tallis"] = true; dict7["tallish"] = true; dict7["tallith"] = true; dict6["tallow"] = true; dict5["tally"] = true; dict6["talmud"] = true; dict5["talon"] = true; dict7["taloned"] = true; dict5["talus"] = true; dict6["talwin"] = true; dict7["tam-tam"] = true; dict7["tamable"] = true; dict6["tamale"] = true; dict7["tamandu"] = true; dict7["tamarao"] = true; dict7["tamarau"] = true; dict7["tamarin"] = true; dict7["tamarix"] = true; dict6["tambac"] = true; dict7["tambala"] = true; dict7["tambour"] = true; dict4["tame"] = true; dict5["tamed"] = true; dict6["tamely"] = true; dict5["tamer"] = true; dict6["tamias"] = true; dict5["tamil"] = true; dict4["tamm"] = true; dict7["tammany"] = true; dict6["tammuz"] = true; dict5["tammy"] = true; dict4["tamp"] = true; dict5["tampa"] = true; dict6["tampax"] = true; dict6["tamper"] = true; dict7["tampere"] = true; dict7["tampico"] = true; dict7["tampion"] = true; dict6["tampon"] = true; dict5["tamus"] = true; dict6["tanach"] = true; dict7["tanager"] = true; dict6["tanakh"] = true; dict7["tanbark"] = true; dict7["tancred"] = true; dict6["tandem"] = true; dict7["tandoor"] = true; dict5["tandy"] = true; dict5["taney"] = true; dict4["tang"] = true; dict5["tanga"] = true; dict5["tange"] = true; dict7["tangelo"] = true; dict7["tangent"] = true; dict7["tangier"] = true; dict6["tangle"] = true; dict7["tangled"] = true; dict5["tango"] = true; dict6["tangor"] = true; dict7["tangram"] = true; dict6["tanguy"] = true; dict5["tangy"] = true; dict4["tank"] = true; dict5["tanka"] = true; dict7["tankage"] = true; dict7["tankard"] = true; dict6["tanker"] = true; dict7["tankful"] = true; dict6["tanned"] = true; dict6["tanner"] = true; dict7["tannery"] = true; dict6["tannia"] = true; dict6["tannic"] = true; dict6["tannin"] = true; dict7["tanning"] = true; dict7["tannish"] = true; dict6["tannoy"] = true; dict6["tanoan"] = true; dict5["tansy"] = true; dict6["tantra"] = true; dict7["tantric"] = true; dict7["tantrik"] = true; dict7["tantrum"] = true; dict6["tanzim"] = true; dict6["taoism"] = true; dict6["taoist"] = true; dict4["taos"] = true; dict7["tap-off"] = true; dict4["tapa"] = true; dict4["tape"] = true; dict5["taped"] = true; dict5["taper"] = true; dict7["tapered"] = true; dict6["taping"] = true; dict7["tapioca"] = true; dict5["tapir"] = true; dict7["tapirus"] = true; dict5["tapis"] = true; dict5["tappa"] = true; dict6["tappan"] = true; dict6["tapped"] = true; dict6["tapper"] = true; dict6["tappet"] = true; dict7["tapping"] = true; dict7["taproom"] = true; dict7["taproot"] = true; dict4["taps"] = true; dict7["tapster"] = true; dict4["tara"] = true; dict6["tarawa"] = true; dict7["tarbell"] = true; dict7["tardily"] = true; dict7["tardive"] = true; dict5["tardy"] = true; dict4["tare"] = true; dict6["target"] = true; dict7["tarheel"] = true; dict7["taricha"] = true; dict6["tariff"] = true; dict6["tarmac"] = true; dict4["tarn"] = true; dict7["tarnish"] = true; dict4["taro"] = true; dict5["tarot"] = true; dict4["tarp"] = true; dict6["tarpan"] = true; dict6["tarpon"] = true; dict7["tarquin"] = true; dict5["tarry"] = true; dict6["tarsal"] = true; dict7["tarsier"] = true; dict7["tarsius"] = true; dict6["tarsus"] = true; dict4["tart"] = true; dict6["tartan"] = true; dict6["tartar"] = true; dict7["tartary"] = true; dict7["tartlet"] = true; dict6["tartly"] = true; dict5["tartu"] = true; dict7["tartufe"] = true; dict7["tarweed"] = true; dict7["tarwood"] = true; dict6["tarzan"] = true; dict7["tashmit"] = true; dict4["task"] = true; dict7["taskent"] = true; dict6["tasman"] = true; dict5["tasse"] = true; dict6["tassel"] = true; dict6["tasset"] = true; dict5["tasso"] = true; dict5["taste"] = true; dict6["taster"] = true; dict7["tastily"] = true; dict7["tasting"] = true; dict5["tasty"] = true; dict5["tatar"] = true; dict6["tatary"] = true; dict4["tate"] = true; dict5["tater"] = true; dict4["tati"] = true; dict5["tatou"] = true; dict7["tatouay"] = true; dict6["tatter"] = true; dict7["tattily"] = true; dict7["tatting"] = true; dict6["tattle"] = true; dict7["tattler"] = true; dict6["tattoo"] = true; dict5["tatty"] = true; dict4["tatu"] = true; dict5["tatum"] = true; dict5["taunt"] = true; dict5["tauon"] = true; dict5["taupe"] = true; dict7["taurine"] = true; dict6["taurus"] = true; dict4["taut"] = true; dict6["tauten"] = true; dict6["tautly"] = true; dict6["tautog"] = true; dict7["tautoga"] = true; dict6["tavern"] = true; dict6["tawdry"] = true; dict6["tawney"] = true; dict5["tawny"] = true; dict5["tawse"] = true; dict7["taxable"] = true; dict7["taxales"] = true; dict5["taxer"] = true; dict4["taxi"] = true; dict7["taxicab"] = true; dict7["taxidea"] = true; dict7["taximan"] = true; dict6["taxing"] = true; dict5["taxis"] = true; dict7["taxiway"] = true; dict6["taxman"] = true; dict5["taxon"] = true; dict5["taxus"] = true; dict7["tayalic"] = true; dict7["tayassu"] = true; dict6["taylor"] = true; dict5["tayra"] = true; dict7["tazicef"] = true; dict7["tbilisi"] = true; dict4["tbit"] = true; dict5["tchad"] = true; dict6["tcp/ip"] = true; dict7["teacake"] = true; dict7["teacart"] = true; dict5["teach"] = true; dict7["teacher"] = true; dict6["teacup"] = true; dict4["teak"] = true; dict4["teal"] = true; dict4["team"] = true; dict6["teapot"] = true; dict4["tear"] = true; dict7["tearful"] = true; dict7["teargas"] = true; dict7["tearing"] = true; dict7["tearoom"] = true; dict5["tears"] = true; dict5["teary"] = true; dict5["tease"] = true; dict6["teased"] = true; dict6["teasel"] = true; dict6["teaser"] = true; dict7["teashop"] = true; dict7["teasing"] = true; dict6["teasle"] = true; dict4["teat"] = true; dict7["teatime"] = true; dict6["teazel"] = true; dict7["tebaldi"] = true; dict5["tebet"] = true; dict7["tebibit"] = true; dict4["tech"] = true; dict6["techie"] = true; dict6["techno"] = true; dict5["techy"] = true; dict7["tectona"] = true; dict5["teddy"] = true; dict7["tedious"] = true; dict6["tedium"] = true; dict4["teem"] = true; dict7["teeming"] = true; dict4["teen"] = true; dict7["teenage"] = true; dict5["teens"] = true; dict6["teensy"] = true; dict7["teentsy"] = true; dict5["teeny"] = true; dict6["teeoff"] = true; dict6["teepee"] = true; dict6["teeter"] = true; dict5["teeth"] = true; dict6["teethe"] = true; dict4["teff"] = true; dict6["teflon"] = true; dict4["tegu"] = true; dict7["tegular"] = true; dict7["teheran"] = true; dict6["tehran"] = true; dict5["teiid"] = true; dict7["teiidae"] = true; dict4["teju"] = true; dict5["tekki"] = true; dict7["tektite"] = true; dict7["telamon"] = true; dict5["telco"] = true; dict7["telecom"] = true; dict7["telefax"] = true; dict7["teleost"] = true; dict5["telex"] = true; dict6["telfer"] = true; dict6["telint"] = true; dict4["tell"] = true; dict6["teller"] = true; dict7["tellima"] = true; dict7["telling"] = true; dict6["tellus"] = true; dict5["telly"] = true; dict7["telopea"] = true; dict7["telpher"] = true; dict6["telugu"] = true; dict7["temblor"] = true; dict4["temp"] = true; dict6["temper"] = true; dict7["tempera"] = true; dict7["tempest"] = true; dict7["templar"] = true; dict6["temple"] = true; dict7["templet"] = true; dict5["tempo"] = true; dict6["tempra"] = true; dict5["tempt"] = true; dict7["tempter"] = true; dict7["tempura"] = true; dict6["temuco"] = true; dict7["temujin"] = true; dict7["tenable"] = true; dict7["tenancy"] = true; dict6["tenant"] = true; dict5["tench"] = true; dict4["tend"] = true; dict6["tender"] = true; dict7["tending"] = true; dict6["tendon"] = true; dict7["tendrac"] = true; dict7["tendril"] = true; dict5["tenet"] = true; dict7["tenfold"] = true; dict5["tenge"] = true; dict5["tenia"] = true; dict6["tenner"] = true; dict7["tenniel"] = true; dict6["tennis"] = true; dict5["tenno"] = true; dict5["tenon"] = true; dict5["tenor"] = true; dict6["tenpin"] = true; dict7["tenpins"] = true; dict6["tenrec"] = true; dict5["tense"] = true; dict6["tensed"] = true; dict7["tensely"] = true; dict7["tensile"] = true; dict7["tension"] = true; dict7["tensity"] = true; dict6["tensor"] = true; dict4["tent"] = true; dict6["tenter"] = true; dict5["tenth"] = true; dict7["tenthly"] = true; dict7["tenting"] = true; dict7["tenuity"] = true; dict7["tenuous"] = true; dict6["tenure"] = true; dict7["tenured"] = true; dict5["tepal"] = true; dict5["tepee"] = true; dict5["tepic"] = true; dict5["tepid"] = true; dict7["tepidly"] = true; dict7["tequila"] = true; dict4["tera"] = true; dict7["terabit"] = true; dict5["teras"] = true; dict7["terbium"] = true; dict5["terce"] = true; dict6["tercel"] = true; dict6["tercet"] = true; dict6["teredo"] = true; dict7["terefah"] = true; dict7["terence"] = true; dict5["teres"] = true; dict6["teresa"] = true; dict6["terete"] = true; dict4["term"] = true; dict6["termer"] = true; dict6["termes"] = true; dict7["termite"] = true; dict5["terms"] = true; dict4["tern"] = true; dict7["ternary"] = true; dict7["ternate"] = true; dict7["ternion"] = true; dict7["terpene"] = true; dict7["terrace"] = true; dict7["terrain"] = true; dict7["terrene"] = true; dict7["terrier"] = true; dict7["terrify"] = true; dict7["terrine"] = true; dict6["terror"] = true; dict5["terry"] = true; dict5["terse"] = true; dict7["tersely"] = true; dict7["tertian"] = true; dict6["tertry"] = true; dict5["tesla"] = true; dict7["tessera"] = true; dict6["tessin"] = true; dict4["test"] = true; dict5["testa"] = true; dict7["testate"] = true; dict6["tested"] = true; dict6["testee"] = true; dict6["tester"] = true; dict7["testify"] = true; dict7["testily"] = true; dict7["testing"] = true; dict6["testis"] = true; dict7["testudo"] = true; dict5["testy"] = true; dict7["tetanic"] = true; dict7["tetanus"] = true; dict6["tetany"] = true; dict6["tetchy"] = true; dict4["teth"] = true; dict6["tether"] = true; dict6["tethys"] = true; dict5["teton"] = true; dict5["tetra"] = true; dict6["tetrad"] = true; dict6["tetrao"] = true; dict5["tetri"] = true; dict7["tetrode"] = true; dict7["tetrose"] = true; dict6["tetryl"] = true; dict6["teuton"] = true; dict6["tevere"] = true; dict5["tevet"] = true; dict5["texan"] = true; dict5["texas"] = true; dict4["text"] = true; dict7["textile"] = true; dict7["textual"] = true; dict7["texture"] = true; dict4["thai"] = true; dict6["thales"] = true; dict6["thalia"] = true; dict7["thallus"] = true; dict7["thalweg"] = true; dict6["thames"] = true; dict7["thammuz"] = true; dict5["thane"] = true; dict5["thank"] = true; dict6["thanks"] = true; dict5["tharp"] = true; dict6["thatch"] = true; dict4["thaw"] = true; dict6["thawed"] = true; dict7["thawing"] = true; dict4["thea"] = true; dict7["theater"] = true; dict7["theatre"] = true; dict6["theban"] = true; dict5["thebe"] = true; dict6["thebes"] = true; dict5["theca"] = true; dict7["theelin"] = true; dict5["theft"] = true; dict5["theia"] = true; dict6["theism"] = true; dict6["theist"] = true; dict5["theme"] = true; dict6["themis"] = true; dict4["then"] = true; dict6["thenal"] = true; dict6["thenar"] = true; dict6["thence"] = true; dict7["theobid"] = true; dict7["theorem"] = true; dict6["theory"] = true; dict7["therapy"] = true; dict5["there"] = true; dict7["thereby"] = true; dict7["therein"] = true; dict7["thereof"] = true; dict7["thereon"] = true; dict7["theresa"] = true; dict7["thereto"] = true; dict5["therm"] = true; dict7["thermal"] = true; dict7["thermel"] = true; dict7["thermic"] = true; dict7["thermos"] = true; dict7["theseus"] = true; dict6["thesis"] = true; dict7["thespis"] = true; dict5["theta"] = true; dict6["thetis"] = true; dict7["theurgy"] = true; dict7["thiamin"] = true; dict6["thibet"] = true; dict5["thick"] = true; dict7["thicken"] = true; dict7["thicket"] = true; dict7["thickly"] = true; dict5["thief"] = true; dict6["thieve"] = true; dict5["thigh"] = true; dict5["thill"] = true; dict7["thimble"] = true; dict4["thin"] = true; dict5["thing"] = true; dict6["things"] = true; dict5["think"] = true; dict7["thinker"] = true; dict6["thinly"] = true; dict7["thinned"] = true; dict7["thinner"] = true; dict5["third"] = true; dict7["thirdly"] = true; dict6["thirst"] = true; dict7["thirsty"] = true; dict6["thirty"] = true; dict7["thistle"] = true; dict7["thither"] = true; dict7["thlaspi"] = true; dict5["thole"] = true; dict6["thomas"] = true; dict7["thomism"] = true; dict7["thomson"] = true; dict5["thong"] = true; dict4["thor"] = true; dict6["thorax"] = true; dict7["thoreau"] = true; dict7["thorite"] = true; dict7["thorium"] = true; dict5["thorn"] = true; dict6["thorny"] = true; dict6["thorpe"] = true; dict5["thoth"] = true; dict4["thou"] = true; dict6["though"] = true; dict7["thought"] = true; dict6["thrace"] = true; dict6["thrall"] = true; dict6["thrash"] = true; dict6["thread"] = true; dict7["threads"] = true; dict7["thready"] = true; dict6["threat"] = true; dict5["three"] = true; dict7["three-d"] = true; dict6["thresh"] = true; dict6["thrice"] = true; dict6["thrift"] = true; dict7["thrifty"] = true; dict6["thrill"] = true; dict7["thrinax"] = true; dict5["thrip"] = true; dict7["thripid"] = true; dict6["thrips"] = true; dict6["thrive"] = true; dict6["throat"] = true; dict7["throaty"] = true; dict5["throb"] = true; dict5["throe"] = true; dict6["throes"] = true; dict6["throne"] = true; dict6["throng"] = true; dict7["through"] = true; dict5["throw"] = true; dict7["thrower"] = true; dict6["thrown"] = true; dict5["thrum"] = true; dict6["thrush"] = true; dict6["thrust"] = true; dict7["thruway"] = true; dict4["thud"] = true; dict4["thug"] = true; dict7["thuggee"] = true; dict5["thuja"] = true; dict5["thule"] = true; dict7["thulium"] = true; dict5["thumb"] = true; dict7["thumbed"] = true; dict5["thump"] = true; dict7["thunder"] = true; dict5["thunk"] = true; dict7["thunnus"] = true; dict7["thurber"] = true; dict7["thurify"] = true; dict4["thus"] = true; dict6["thusly"] = true; dict6["thwack"] = true; dict6["thwart"] = true; dict5["thyme"] = true; dict7["thymine"] = true; dict6["thymol"] = true; dict6["thymus"] = true; dict7["thyroid"] = true; dict6["thyrse"] = true; dict7["thyrsus"] = true; dict6["tiamat"] = true; dict7["tianjin"] = true; dict5["tiara"] = true; dict5["tiber"] = true; dict5["tibet"] = true; dict7["tibetan"] = true; dict5["tibia"] = true; dict6["tibial"] = true; dict7["tibicen"] = true; dict5["tibit"] = true; dict5["tibur"] = true; dict5["tical"] = true; dict6["ticino"] = true; dict4["tick"] = true; dict6["ticker"] = true; dict6["ticket"] = true; dict7["ticking"] = true; dict6["tickle"] = true; dict7["tickler"] = true; dict6["tictac"] = true; dict5["tidal"] = true; dict6["tidbit"] = true; dict7["tiddler"] = true; dict6["tiddly"] = true; dict4["tide"] = true; dict7["tideway"] = true; dict6["tidily"] = true; dict7["tidings"] = true; dict4["tidy"] = true; dict7["tie-dye"] = true; dict6["tie-in"] = true; dict6["tie-on"] = true; dict6["tie-up"] = true; dict7["tieback"] = true; dict4["tied"] = true; dict6["tiepin"] = true; dict7["tiepolo"] = true; dict4["tier"] = true; dict6["tierce"] = true; dict7["tiercel"] = true; dict6["tiered"] = true; dict4["tiff"] = true; dict7["tiffany"] = true; dict6["tiffin"] = true; dict6["tiflis"] = true; dict5["tiger"] = true; dict6["tigers"] = true; dict5["tight"] = true; dict7["tighten"] = true; dict7["tightly"] = true; dict6["tights"] = true; dict6["tiglon"] = true; dict5["tigon"] = true; dict7["tigress"] = true; dict6["tigris"] = true; dict7["tijuana"] = true; dict4["tike"] = true; dict7["tilapia"] = true; dict5["tilde"] = true; dict6["tilden"] = true; dict4["tile"] = true; dict5["tiled"] = true; dict5["tiler"] = true; dict5["tilia"] = true; dict6["tiling"] = true; dict4["till"] = true; dict7["tillage"] = true; dict6["tilled"] = true; dict6["tiller"] = true; dict7["tillich"] = true; dict7["tilling"] = true; dict4["tilt"] = true; dict6["tilted"] = true; dict6["tilter"] = true; dict5["tilth"] = true; dict7["timalia"] = true; dict7["timbale"] = true; dict6["timber"] = true; dict6["timbre"] = true; dict7["timbrel"] = true; dict4["time"] = true; dict5["timed"] = true; dict6["timely"] = true; dict5["timer"] = true; dict5["times"] = true; dict6["timgad"] = true; dict5["timid"] = true; dict7["timidly"] = true; dict6["timing"] = true; dict7["timolol"] = true; dict5["timor"] = true; dict7["timothy"] = true; dict7["timpani"] = true; dict6["timucu"] = true; dict5["timur"] = true; dict7["tinamou"] = true; dict5["tinca"] = true; dict5["tinct"] = true; dict6["tindal"] = true; dict7["tindale"] = true; dict6["tinder"] = true; dict4["tine"] = true; dict5["tinea"] = true; dict5["tined"] = true; dict6["tineid"] = true; dict7["tineoid"] = true; dict7["tineola"] = true; dict7["tinfoil"] = true; dict4["ting"] = true; dict5["tinge"] = true; dict6["tingle"] = true; dict4["tink"] = true; dict6["tinker"] = true; dict6["tinkle"] = true; dict6["tinkly"] = true; dict6["tinned"] = true; dict6["tinner"] = true; dict7["tinning"] = true; dict5["tinny"] = true; dict6["tinpot"] = true; dict6["tinsel"] = true; dict4["tint"] = true; dict7["tintack"] = true; dict6["tinter"] = true; dict7["tinting"] = true; dict7["tinware"] = true; dict4["tiny"] = true; dict7["tip-off"] = true; dict7["tip-top"] = true; dict6["tip-up"] = true; dict4["tipi"] = true; dict6["tipped"] = true; dict6["tipper"] = true; dict6["tippet"] = true; dict6["tipple"] = true; dict7["tippler"] = true; dict5["tippy"] = true; dict7["tipster"] = true; dict5["tipsy"] = true; dict6["tiptoe"] = true; dict6["tiptop"] = true; dict4["tipu"] = true; dict7["tipuana"] = true; dict6["tirade"] = true; dict6["tirana"] = true; dict4["tire"] = true; dict5["tired"] = true; dict7["tiredly"] = true; dict6["tiring"] = true; dict4["tiro"] = true; dict5["tirol"] = true; dict6["tisane"] = true; dict6["tishri"] = true; dict6["tissue"] = true; dict5["titan"] = true; dict7["titania"] = true; dict7["titanic"] = true; dict6["titbit"] = true; dict5["titer"] = true; dict6["titfer"] = true; dict5["tithe"] = true; dict6["tither"] = true; dict4["titi"] = true; dict6["titian"] = true; dict7["titlark"] = true; dict5["title"] = true; dict6["titled"] = true; dict4["tito"] = true; dict7["titrate"] = true; dict5["titre"] = true; dict6["titter"] = true; dict6["tittle"] = true; dict6["tittup"] = true; dict5["titty"] = true; dict7["titular"] = true; dict5["titus"] = true; dict6["tivoli"] = true; dict5["tiyin"] = true; dict5["tizzy"] = true; dict7["tlingit"] = true; dict5["to-do"] = true; dict4["toad"] = true; dict5["toady"] = true; dict5["toast"] = true; dict7["toasted"] = true; dict7["toaster"] = true; dict7["tobacco"] = true; dict6["tobago"] = true; dict5["tobey"] = true; dict5["tobin"] = true; dict5["tobit"] = true; dict4["toby"] = true; dict7["toccata"] = true; dict6["tocsin"] = true; dict4["toda"] = true; dict5["today"] = true; dict4["todd"] = true; dict6["toddle"] = true; dict7["toddler"] = true; dict5["toddy"] = true; dict5["todea"] = true; dict7["todidae"] = true; dict5["todus"] = true; dict4["tody"] = true; dict6["toe-in"] = true; dict4["toea"] = true; dict6["toecap"] = true; dict4["toed"] = true; dict7["toehold"] = true; dict7["toeless"] = true; dict7["toenail"] = true; dict6["toetoe"] = true; dict4["toff"] = true; dict6["toffee"] = true; dict5["toffy"] = true; dict4["tofu"] = true; dict4["toga"] = true; dict6["togged"] = true; dict6["toggle"] = true; dict4["togo"] = true; dict4["togs"] = true; dict4["toil"] = true; dict6["toiler"] = true; dict6["toilet"] = true; dict7["toiling"] = true; dict6["toitoi"] = true; dict4["tojo"] = true; dict7["tokamak"] = true; dict5["tokay"] = true; dict4["toke"] = true; dict5["token"] = true; dict5["tokio"] = true; dict6["toklas"] = true; dict5["tokyo"] = true; dict4["tole"] = true; dict6["toledo"] = true; dict7["tolkien"] = true; dict4["toll"] = true; dict7["tollbar"] = true; dict6["toller"] = true; dict7["tollman"] = true; dict6["tollon"] = true; dict7["tolmiea"] = true; dict7["tolstoy"] = true; dict6["toltec"] = true; dict4["tolu"] = true; dict7["toluene"] = true; dict7["tom-tom"] = true; dict6["tomato"] = true; dict4["tomb"] = true; dict6["tombac"] = true; dict6["tombak"] = true; dict7["tombola"] = true; dict6["tomboy"] = true; dict6["tomcat"] = true; dict4["tome"] = true; dict7["tomfool"] = true; dict7["tompion"] = true; dict7["tomtate"] = true; dict6["tomtit"] = true; dict5["tonal"] = true; dict4["tone"] = true; dict5["toned"] = true; dict5["toner"] = true; dict5["tonga"] = true; dict6["tongan"] = true; dict5["tongs"] = true; dict6["tongue"] = true; dict7["tongued"] = true; dict5["tonic"] = true; dict7["tonight"] = true; dict7["tonnage"] = true; dict5["tonne"] = true; dict4["tons"] = true; dict6["tonsil"] = true; dict7["tonsure"] = true; dict7["tontine"] = true; dict5["tonus"] = true; dict4["tool"] = true; dict7["toolbox"] = true; dict4["toon"] = true; dict5["toona"] = true; dict7["tooshie"] = true; dict4["toot"] = true; dict5["tooth"] = true; dict7["toothed"] = true; dict6["toothy"] = true; dict6["tootle"] = true; dict6["top-up"] = true; dict5["topaz"] = true; dict7["topcoat"] = true; dict4["tope"] = true; dict5["topee"] = true; dict6["topeka"] = true; dict5["toper"] = true; dict6["tophus"] = true; dict4["topi"] = true; dict7["topiary"] = true; dict5["topic"] = true; dict7["topical"] = true; dict7["topknot"] = true; dict7["topless"] = true; dict7["topmast"] = true; dict7["topmost"] = true; dict7["toponym"] = true; dict5["topos"] = true; dict6["topped"] = true; dict6["topper"] = true; dict7["topping"] = true; dict6["topple"] = true; dict4["tops"] = true; dict7["topsail"] = true; dict7["topside"] = true; dict7["topsoil"] = true; dict7["topspin"] = true; dict4["topv"] = true; dict5["toque"] = true; dict7["toradol"] = true; dict5["torah"] = true; dict5["torch"] = true; dict4["tore"] = true; dict6["torero"] = true; dict6["torino"] = true; dict7["torment"] = true; dict4["torn"] = true; dict7["tornado"] = true; dict7["torodal"] = true; dict6["toroid"] = true; dict7["toronto"] = true; dict7["torpedo"] = true; dict6["torpid"] = true; dict6["torpor"] = true; dict6["torque"] = true; dict4["torr"] = true; dict7["torrent"] = true; dict7["torreon"] = true; dict7["torreya"] = true; dict6["torrid"] = true; dict7["torsion"] = true; dict5["torsk"] = true; dict5["torso"] = true; dict4["tort"] = true; dict5["torte"] = true; dict7["tortrix"] = true; dict7["torture"] = true; dict5["torus"] = true; dict4["tory"] = true; dict7["toscana"] = true; dict4["tosh"] = true; dict4["tosk"] = true; dict4["toss"] = true; dict7["toss-up"] = true; dict6["tosser"] = true; dict6["tossup"] = true; dict7["tostada"] = true; dict5["total"] = true; dict7["totaled"] = true; dict7["totally"] = true; dict6["totara"] = true; dict4["tote"] = true; dict5["totem"] = true; dict7["totemic"] = true; dict5["toter"] = true; dict6["totter"] = true; dict7["tottery"] = true; dict6["toucan"] = true; dict5["touch"] = true; dict7["touched"] = true; dict7["toucher"] = true; dict6["touchy"] = true; dict5["tough"] = true; dict7["toughen"] = true; dict7["toughie"] = true; dict7["toughly"] = true; dict6["toulon"] = true; dict5["toupe"] = true; dict6["toupee"] = true; dict7["toupeed"] = true; dict4["tour"] = true; dict7["touraco"] = true; dict6["tourer"] = true; dict7["tourism"] = true; dict7["tourist"] = true; dict7["tourney"] = true; dict5["tours"] = true; dict6["tousle"] = true; dict7["tousled"] = true; dict4["tout"] = true; dict6["touter"] = true; dict6["towage"] = true; dict7["towboat"] = true; dict5["towel"] = true; dict5["tower"] = true; dict7["towhead"] = true; dict6["towhee"] = true; dict7["towline"] = true; dict4["town"] = true; dict6["townee"] = true; dict6["towner"] = true; dict6["townes"] = true; dict6["townie"] = true; dict5["towny"] = true; dict7["towpath"] = true; dict7["towrope"] = true; dict7["toxemia"] = true; dict5["toxic"] = true; dict5["toxin"] = true; dict6["toxoid"] = true; dict7["toxotes"] = true; dict6["toying"] = true; dict7["toynbee"] = true; dict5["toyon"] = true; dict6["toyota"] = true; dict7["toyshop"] = true; dict6["tra-la"] = true; dict5["trace"] = true; dict6["tracer"] = true; dict7["tracery"] = true; dict7["trachea"] = true; dict7["tracing"] = true; dict5["track"] = true; dict7["tracked"] = true; dict7["tracker"] = true; dict5["tract"] = true; dict7["tractor"] = true; dict5["tracy"] = true; dict4["trad"] = true; dict5["trade"] = true; dict6["trader"] = true; dict7["trading"] = true; dict7["traduce"] = true; dict7["traffic"] = true; dict7["tragedy"] = true; dict6["tragic"] = true; dict6["tragus"] = true; dict5["trail"] = true; dict7["trailer"] = true; dict5["train"] = true; dict7["trained"] = true; dict7["trainee"] = true; dict7["trainer"] = true; dict7["traipse"] = true; dict5["trait"] = true; dict7["traitor"] = true; dict6["trajan"] = true; dict4["tram"] = true; dict7["tramcar"] = true; dict7["trammel"] = true; dict5["tramp"] = true; dict7["tramper"] = true; dict7["trample"] = true; dict7["tramway"] = true; dict6["trance"] = true; dict7["tranche"] = true; dict7["transit"] = true; dict7["transom"] = true; dict4["trap"] = true; dict5["trapa"] = true; dict7["trapeze"] = true; dict7["trapped"] = true; dict7["trapper"] = true; dict5["trash"] = true; dict6["trashy"] = true; dict7["traubel"] = true; dict6["trauma"] = true; dict7["travail"] = true; dict5["trave"] = true; dict6["travel"] = true; dict5["trawl"] = true; dict7["trawler"] = true; dict4["tray"] = true; dict7["treacle"] = true; dict7["treacly"] = true; dict5["tread"] = true; dict7["treadle"] = true; dict7["treason"] = true; dict5["treat"] = true; dict7["treated"] = true; dict7["treater"] = true; dict6["treaty"] = true; dict6["treble"] = true; dict4["tree"] = true; dict5["treed"] = true; dict7["treelet"] = true; dict7["treetop"] = true; dict4["tref"] = true; dict7["trefoil"] = true; dict4["trek"] = true; dict7["trekker"] = true; dict7["trellis"] = true; dict5["trema"] = true; dict7["tremble"] = true; dict7["tremolo"] = true; dict6["tremor"] = true; dict7["trenail"] = true; dict6["trench"] = true; dict5["trend"] = true; dict6["trendy"] = true; dict5["trent"] = true; dict7["trental"] = true; dict6["trento"] = true; dict7["trenton"] = true; dict6["trepan"] = true; dict7["trepang"] = true; dict6["trepid"] = true; dict5["tress"] = true; dict7["trestle"] = true; dict7["trevino"] = true; dict5["trews"] = true; dict4["trey"] = true; dict5["triad"] = true; dict6["triage"] = true; dict5["trial"] = true; dict7["triavil"] = true; dict7["tribade"] = true; dict6["tribal"] = true; dict5["tribe"] = true; dict7["tribune"] = true; dict7["tribute"] = true; dict5["trice"] = true; dict7["triceps"] = true; dict7["trichys"] = true; dict5["trick"] = true; dict7["tricker"] = true; dict7["trickle"] = true; dict7["tricksy"] = true; dict6["tricky"] = true; dict7["tricorn"] = true; dict6["tricot"] = true; dict7["trident"] = true; dict5["tried"] = true; dict5["trier"] = true; dict6["trifid"] = true; dict6["trifle"] = true; dict7["trifler"] = true; dict4["trig"] = true; dict5["triga"] = true; dict7["trigger"] = true; dict6["trigon"] = true; dict7["trigram"] = true; dict5["trike"] = true; dict6["trilby"] = true; dict7["trilisa"] = true; dict5["trill"] = true; dict7["trilled"] = true; dict7["trilogy"] = true; dict4["trim"] = true; dict6["trimer"] = true; dict6["trimly"] = true; dict7["trimmed"] = true; dict7["trimmer"] = true; dict6["trimox"] = true; dict5["trine"] = true; dict6["tringa"] = true; dict7["trinity"] = true; dict7["trinket"] = true; dict4["trio"] = true; dict6["triode"] = true; dict7["trionyx"] = true; dict6["triops"] = true; dict6["triose"] = true; dict4["trip"] = true; dict7["trip-up"] = true; dict5["tripe"] = true; dict6["triple"] = true; dict7["triplet"] = true; dict7["triplex"] = true; dict6["tripod"] = true; dict7["tripoli"] = true; dict6["tripos"] = true; dict7["tripper"] = true; dict7["trireme"] = true; dict7["trisect"] = true; dict7["trismus"] = true; dict7["trisomy"] = true; dict7["tristan"] = true; dict5["trite"] = true; dict7["tritely"] = true; dict7["tritium"] = true; dict7["tritoma"] = true; dict6["triton"] = true; dict7["triumph"] = true; dict6["triune"] = true; dict6["trivet"] = true; dict6["trivia"] = true; dict7["trivial"] = true; dict7["trivium"] = true; dict4["trna"] = true; dict5["troat"] = true; dict6["troche"] = true; dict7["trochee"] = true; dict7["trogium"] = true; dict6["trogon"] = true; dict6["troika"] = true; dict6["trojan"] = true; dict5["troll"] = true; dict7["troller"] = true; dict7["trolley"] = true; dict7["trollop"] = true; dict5["troop"] = true; dict7["trooper"] = true; dict6["troops"] = true; dict5["trope"] = true; dict7["trophic"] = true; dict6["trophy"] = true; dict6["tropic"] = true; dict7["tropics"] = true; dict7["tropism"] = true; dict4["trot"] = true; dict5["troth"] = true; dict7["trotsky"] = true; dict7["trotter"] = true; dict7["trouble"] = true; dict6["trough"] = true; dict7["trounce"] = true; dict6["troupe"] = true; dict7["trouper"] = true; dict7["trouser"] = true; dict5["trout"] = true; dict5["trove"] = true; dict6["trowel"] = true; dict4["troy"] = true; dict7["truancy"] = true; dict6["truant"] = true; dict5["truce"] = true; dict5["truck"] = true; dict7["trucker"] = true; dict7["truckle"] = true; dict6["trudge"] = true; dict7["trudger"] = true; dict4["true"] = true; dict7["truffle"] = true; dict6["truism"] = true; dict5["truly"] = true; dict6["truman"] = true; dict6["trumbo"] = true; dict5["trump"] = true; dict7["trumpet"] = true; dict7["trundle"] = true; dict5["trunk"] = true; dict6["trunks"] = true; dict7["trunnel"] = true; dict5["truss"] = true; dict7["trussed"] = true; dict5["trust"] = true; dict7["trusted"] = true; dict7["trustee"] = true; dict7["truster"] = true; dict7["trustor"] = true; dict6["trusty"] = true; dict5["truth"] = true; dict6["try-on"] = true; dict6["trying"] = true; dict6["tryout"] = true; dict7["trypsin"] = true; dict5["tryst"] = true; dict4["tsar"] = true; dict7["tsarina"] = true; dict7["tsarist"] = true; dict7["tsatske"] = true; dict6["tsetse"] = true; dict5["tsine"] = true; dict6["tsoris"] = true; dict6["tsouic"] = true; dict5["tsuga"] = true; dict7["tsunami"] = true; dict6["tsuris"] = true; dict6["tswana"] = true; dict6["tuareg"] = true; dict7["tuatara"] = true; dict4["tuba"] = true; dict5["tubal"] = true; dict5["tubby"] = true; dict4["tube"] = true; dict5["tubed"] = true; dict5["tuber"] = true; dict6["tubful"] = true; dict6["tubing"] = true; dict6["tubman"] = true; dict7["tubular"] = true; dict6["tubule"] = true; dict6["tucana"] = true; dict7["tuchman"] = true; dict4["tuck"] = true; dict6["tucked"] = true; dict6["tucker"] = true; dict6["tucket"] = true; dict6["tucson"] = true; dict5["tudor"] = true; dict6["tudung"] = true; dict4["tues"] = true; dict7["tuesday"] = true; dict4["tufa"] = true; dict4["tuff"] = true; dict6["tuffet"] = true; dict4["tuft"] = true; dict6["tufted"] = true; dict7["tugboat"] = true; dict6["tugela"] = true; dict6["tugger"] = true; dict7["tughrik"] = true; dict6["tugrik"] = true; dict6["tuille"] = true; dict7["tuition"] = true; dict5["tulip"] = true; dict6["tulipa"] = true; dict5["tulle"] = true; dict5["tully"] = true; dict5["tulsa"] = true; dict4["tulu"] = true; dict6["tumble"] = true; dict7["tumbler"] = true; dict7["tumbrel"] = true; dict7["tumbril"] = true; dict6["tumefy"] = true; dict7["tumesce"] = true; dict5["tumid"] = true; dict5["tummy"] = true; dict5["tumor"] = true; dict6["tumour"] = true; dict4["tums"] = true; dict6["tumult"] = true; dict7["tumulus"] = true; dict4["tuna"] = true; dict6["tundra"] = true; dict4["tune"] = true; dict7["tune-up"] = true; dict7["tuneful"] = true; dict5["tuner"] = true; dict4["tung"] = true; dict5["tunga"] = true; dict6["tungus"] = true; dict6["tunguz"] = true; dict5["tunic"] = true; dict6["tunica"] = true; dict6["tuning"] = true; dict5["tunis"] = true; dict7["tunisia"] = true; dict6["tunker"] = true; dict7["tunnage"] = true; dict6["tunnel"] = true; dict6["tunney"] = true; dict5["tunny"] = true; dict6["tupaia"] = true; dict5["tupek"] = true; dict6["tupelo"] = true; dict4["tupi"] = true; dict5["tupik"] = true; dict7["tuppeny"] = true; dict6["turaco"] = true; dict7["turacou"] = true; dict7["turakoo"] = true; dict6["turban"] = true; dict6["turbid"] = true; dict7["turbine"] = true; dict6["turbot"] = true; dict4["turd"] = true; dict6["turdus"] = true; dict6["tureen"] = true; dict4["turf"] = true; dict6["turfan"] = true; dict6["turgid"] = true; dict6["turgor"] = true; dict6["turgot"] = true; dict5["turin"] = true; dict6["turing"] = true; dict4["turk"] = true; dict6["turkey"] = true; dict5["turki"] = true; dict6["turkic"] = true; dict7["turkish"] = true; dict7["turkmen"] = true; dict7["turmoil"] = true; dict4["turn"] = true; dict7["turn-on"] = true; dict6["turned"] = true; dict6["turner"] = true; dict7["turnery"] = true; dict7["turning"] = true; dict6["turnip"] = true; dict6["turnix"] = true; dict7["turnkey"] = true; dict7["turnoff"] = true; dict7["turnout"] = true; dict6["turnup"] = true; dict4["turp"] = true; dict6["turpin"] = true; dict5["turps"] = true; dict7["turreae"] = true; dict6["turret"] = true; dict6["turtle"] = true; dict7["turtler"] = true; dict6["tuscan"] = true; dict7["tuscany"] = true; dict4["tush"] = true; dict7["tushery"] = true; dict4["tusk"] = true; dict6["tusked"] = true; dict6["tusker"] = true; dict6["tussah"] = true; dict7["tussaud"] = true; dict6["tusseh"] = true; dict6["tusser"] = true; dict6["tussle"] = true; dict7["tussock"] = true; dict7["tussore"] = true; dict6["tussur"] = true; dict7["tut-tut"] = true; dict5["tutee"] = true; dict7["tutelar"] = true; dict6["tutelo"] = true; dict5["tutor"] = true; dict6["tutsan"] = true; dict5["tutsi"] = true; dict4["tutu"] = true; dict6["tuvalu"] = true; dict6["tuxedo"] = true; dict7["twaddle"] = true; dict5["twain"] = true; dict5["twang"] = true; dict4["twat"] = true; dict5["tweak"] = true; dict4["twee"] = true; dict5["tweed"] = true; dict7["tweedle"] = true; dict6["tweedy"] = true; dict5["tweet"] = true; dict7["tweeter"] = true; dict6["tweeze"] = true; dict7["tweezer"] = true; dict7["twelfth"] = true; dict6["twelve"] = true; dict6["twenty"] = true; dict5["twerp"] = true; dict5["twice"] = true; dict7["twiddle"] = true; dict4["twig"] = true; dict6["twiggy"] = true; dict6["twilit"] = true; dict5["twill"] = true; dict7["twilled"] = true; dict4["twin"] = true; dict5["twine"] = true; dict6["twiner"] = true; dict6["twinge"] = true; dict7["twinjet"] = true; dict7["twinkie"] = true; dict7["twinkle"] = true; dict7["twinkly"] = true; dict7["twinned"] = true; dict5["twins"] = true; dict5["twirl"] = true; dict7["twirler"] = true; dict5["twirp"] = true; dict5["twist"] = true; dict7["twisted"] = true; dict7["twister"] = true; dict6["twisty"] = true; dict4["twit"] = true; dict6["twitch"] = true; dict7["twitter"] = true; dict7["two-ply"] = true; dict7["two-toe"] = true; dict7["two-way"] = true; dict6["twofer"] = true; dict7["twofold"] = true; dict7["twosome"] = true; dict5["tyche"] = true; dict6["tycoon"] = true; dict5["tying"] = true; dict5["tyiyn"] = true; dict4["tyke"] = true; dict7["tylenol"] = true; dict5["tyler"] = true; dict6["tympan"] = true; dict7["tympani"] = true; dict7["tyndale"] = true; dict7["tyndall"] = true; dict4["tyne"] = true; dict4["type"] = true; dict7["typeset"] = true; dict5["typha"] = true; dict7["typhoid"] = true; dict6["typhon"] = true; dict7["typhoon"] = true; dict6["typhus"] = true; dict5["typic"] = true; dict7["typical"] = true; dict6["typify"] = true; dict6["typing"] = true; dict6["typist"] = true; dict4["typo"] = true; dict7["tyranni"] = true; dict7["tyranny"] = true; dict6["tyrant"] = true; dict4["tyre"] = true; dict4["tyro"] = true; dict5["tyrol"] = true; dict4["tyrr"] = true; dict5["tyson"] = true; dict4["tyto"] = true; dict4["tzar"] = true; dict5["tzara"] = true; dict7["tzarina"] = true; dict7["tzarist"] = true; dict6["tzetze"] = true; dict6["u-boat"] = true; dict7["u-drive"] = true; dict6["u-turn"] = true; dict4["u.k."] = true; dict4["u.s."] = true; dict6["u.s.a."] = true; dict4["u308"] = true; dict6["uakari"] = true; dict6["ubiety"] = true; dict5["ubykh"] = true; dict5["udder"] = true; dict6["udmurt"] = true; dict6["uganda"] = true; dict7["ugandan"] = true; dict4["ugli"] = true; dict6["uglify"] = true; dict4["ugly"] = true; dict6["ugrian"] = true; dict5["ugric"] = true; dict6["uhland"] = true; dict6["uighur"] = true; dict5["uigur"] = true; dict5["ukase"] = true; dict7["ukraine"] = true; dict7["ukulele"] = true; dict7["ulalgia"] = true; dict5["ulama"] = true; dict7["ulanova"] = true; dict5["ulcer"] = true; dict5["ulema"] = true; dict4["ulex"] = true; dict6["ulfila"] = true; dict7["ulfilas"] = true; dict6["ulitis"] = true; dict6["ullage"] = true; dict4["ullr"] = true; dict5["ulmus"] = true; dict4["ulna"] = true; dict5["ulnar"] = true; dict6["ulster"] = true; dict6["ultima"] = true; dict6["ultimo"] = true; dict5["ultra"] = true; dict7["ululate"] = true; dict4["ulva"] = true; dict7["ulvales"] = true; dict7["ulysses"] = true; dict7["umayyad"] = true; dict5["umbel"] = true; dict5["umber"] = true; dict4["umbo"] = true; dict5["umbra"] = true; dict7["umbrage"] = true; dict6["umbria"] = true; dict7["umbrian"] = true; dict7["umbrina"] = true; dict7["umbundu"] = true; dict6["umlaut"] = true; dict4["umma"] = true; dict5["ummah"] = true; dict6["umpire"] = true; dict7["umpteen"] = true; dict6["umteen"] = true; dict6["unable"] = true; dict6["unaged"] = true; dict4["unai"] = true; dict7["unaided"] = true; dict7["unaired"] = true; dict7["unalert"] = true; dict7["unalike"] = true; dict7["unangry"] = true; dict5["unarm"] = true; dict7["unarmed"] = true; dict5["unary"] = true; dict7["unasked"] = true; dict4["unau"] = true; dict7["unaware"] = true; dict6["unawed"] = true; dict5["unbar"] = true; dict6["unbelt"] = true; dict6["unbend"] = true; dict6["unbent"] = true; dict6["unbind"] = true; dict7["unblock"] = true; dict6["unbolt"] = true; dict6["unborn"] = true; dict7["unbosom"] = true; dict7["unbound"] = true; dict7["unbowed"] = true; dict5["unbox"] = true; dict7["unbrace"] = true; dict7["unbraid"] = true; dict7["uncanny"] = true; dict6["uncase"] = true; dict7["unchain"] = true; dict6["uncial"] = true; dict7["uncivil"] = true; dict6["unclad"] = true; dict7["unclasp"] = true; dict5["uncle"] = true; dict7["unclean"] = true; dict7["unclear"] = true; dict6["unclip"] = true; dict7["uncloak"] = true; dict6["unclog"] = true; dict4["unco"] = true; dict6["uncoil"] = true; dict6["uncool"] = true; dict6["uncork"] = true; dict7["uncouth"] = true; dict7["uncover"] = true; dict7["uncrate"] = true; dict7["uncross"] = true; dict7["unction"] = true; dict7["uncured"] = true; dict6["uncurl"] = true; dict5["uncus"] = true; dict5["uncut"] = true; dict7["undated"] = true; dict5["under"] = true; dict7["undergo"] = true; dict6["undies"] = true; dict6["undine"] = true; dict4["undo"] = true; dict6["undock"] = true; dict6["undoer"] = true; dict7["undoing"] = true; dict6["undone"] = true; dict7["undrape"] = true; dict7["undrawn"] = true; dict7["undress"] = true; dict7["undried"] = true; dict6["undset"] = true; dict5["undue"] = true; dict6["unduly"] = true; dict6["undyed"] = true; dict7["undying"] = true; dict7["uneager"] = true; dict7["unearth"] = true; dict6["unease"] = true; dict6["uneasy"] = true; dict7["unended"] = true; dict7["unequal"] = true; dict7["unerect"] = true; dict6["unesco"] = true; dict6["uneven"] = true; dict6["unfair"] = true; dict5["unfed"] = true; dict6["unfirm"] = true; dict5["unfit"] = true; dict7["unfixed"] = true; dict6["unfold"] = true; dict6["unfree"] = true; dict7["unfrock"] = true; dict7["unfunny"] = true; dict6["unfurl"] = true; dict7["ungodly"] = true; dict6["ungual"] = true; dict7["unguent"] = true; dict6["unguis"] = true; dict6["unhand"] = true; dict7["unhappy"] = true; dict7["unheard"] = true; dict6["unhewn"] = true; dict7["unhinge"] = true; dict7["unhitch"] = true; dict6["unholy"] = true; dict6["unhook"] = true; dict7["unhoped"] = true; dict7["unhorse"] = true; dict7["unhuman"] = true; dict6["unhurt"] = true; dict5["uniat"] = true; dict6["uniate"] = true; dict6["unicef"] = true; dict7["unicorn"] = true; dict7["unified"] = true; dict7["uniform"] = true; dict5["unify"] = true; dict4["unio"] = true; dict5["union"] = true; dict6["unique"] = true; dict6["unisex"] = true; dict6["unison"] = true; dict4["unit"] = true; dict7["unitard"] = true; dict7["unitary"] = true; dict5["unite"] = true; dict6["united"] = true; dict7["uniting"] = true; dict7["unitise"] = true; dict7["unitize"] = true; dict5["unity"] = true; dict4["unix"] = true; dict6["unjust"] = true; dict7["unkempt"] = true; dict6["unkept"] = true; dict7["unkeyed"] = true; dict6["unkind"] = true; dict6["unknot"] = true; dict7["unknown"] = true; dict6["unlace"] = true; dict7["unlaced"] = true; dict6["unlade"] = true; dict6["unlash"] = true; dict5["unlax"] = true; dict7["unlearn"] = true; dict7["unleash"] = true; dict6["unlike"] = true; dict7["unlined"] = true; dict5["unlit"] = true; dict6["unlive"] = true; dict6["unload"] = true; dict7["unlobed"] = true; dict6["unlock"] = true; dict7["unloose"] = true; dict7["unloved"] = true; dict7["unlucky"] = true; dict6["unmade"] = true; dict6["unmake"] = true; dict5["unman"] = true; dict7["unmanly"] = true; dict6["unmask"] = true; dict7["unmated"] = true; dict7["unmined"] = true; dict7["unmixed"] = true; dict7["unmoved"] = true; dict6["unmown"] = true; dict7["unnamed"] = true; dict7["unnerve"] = true; dict7["unnoted"] = true; dict7["unoiled"] = true; dict6["unopen"] = true; dict7["unowned"] = true; dict6["unpack"] = true; dict6["unpaid"] = true; dict7["unpaved"] = true; dict6["unpick"] = true; dict5["unpin"] = true; dict6["unplug"] = true; dict7["unposed"] = true; dict7["unquiet"] = true; dict7["unravel"] = true; dict6["unread"] = true; dict7["unready"] = true; dict6["unreal"] = true; dict6["unreel"] = true; dict6["unrest"] = true; dict7["unrimed"] = true; dict6["unripe"] = true; dict6["unroll"] = true; dict6["unruly"] = true; dict6["unsafe"] = true; dict6["unsaid"] = true; dict7["unsated"] = true; dict7["unsaved"] = true; dict5["unsay"] = true; dict7["unscrew"] = true; dict6["unseal"] = true; dict6["unseat"] = true; dict6["unseen"] = true; dict7["unseeyn"] = true; dict6["unsent"] = true; dict5["unsex"] = true; dict7["unsexed"] = true; dict6["unsexy"] = true; dict6["unshod"] = true; dict7["unshoed"] = true; dict7["unshorn"] = true; dict7["unsized"] = true; dict7["unsnarl"] = true; dict6["unsold"] = true; dict7["unsound"] = true; dict6["unsown"] = true; dict7["unspell"] = true; dict7["unspent"] = true; dict7["unstrap"] = true; dict7["unstuck"] = true; dict7["unstuff"] = true; dict6["unsung"] = true; dict6["unsure"] = true; dict7["unsweet"] = true; dict7["unswept"] = true; dict7["unsworn"] = true; dict7["untamed"] = true; dict7["untaped"] = true; dict7["untaxed"] = true; dict7["unteach"] = true; dict6["unthaw"] = true; dict6["untidy"] = true; dict5["untie"] = true; dict6["untied"] = true; dict6["untier"] = true; dict7["untired"] = true; dict6["untold"] = true; dict7["untried"] = true; dict6["untrod"] = true; dict6["untrue"] = true; dict7["untruly"] = true; dict7["untruth"] = true; dict6["untune"] = true; dict7["untwine"] = true; dict7["untwist"] = true; dict7["untying"] = true; dict6["unused"] = true; dict7["unusual"] = true; dict7["unvaned"] = true; dict6["unveil"] = true; dict6["unwary"] = true; dict7["unwaxed"] = true; dict7["unweary"] = true; dict7["unweave"] = true; dict5["unwed"] = true; dict6["unwell"] = true; dict6["unwind"] = true; dict6["unwire"] = true; dict6["unwise"] = true; dict7["unwoven"] = true; dict6["unwrap"] = true; dict6["unyoke"] = true; dict5["unzip"] = true; dict6["up-bow"] = true; dict7["up-tick"] = true; dict6["upbeat"] = true; dict7["upbound"] = true; dict7["upbraid"] = true; dict6["upcast"] = true; dict7["upchuck"] = true; dict6["update"] = true; dict6["updike"] = true; dict7["updraft"] = true; dict5["upend"] = true; dict7["upended"] = true; dict7["upfield"] = true; dict7["upfront"] = true; dict7["upgrade"] = true; dict7["upheave"] = true; dict6["uphill"] = true; dict6["uphold"] = true; dict6["upjohn"] = true; dict6["upkeep"] = true; dict6["upland"] = true; dict6["uplift"] = true; dict6["uplink"] = true; dict6["upload"] = true; dict6["upmost"] = true; dict5["upper"] = true; dict6["uppish"] = true; dict6["uppity"] = true; dict4["uppp"] = true; dict7["uppsala"] = true; dict7["upraise"] = true; dict7["upright"] = true; dict6["uprise"] = true; dict7["upriver"] = true; dict6["uproar"] = true; dict6["uproot"] = true; dict6["upsala"] = true; dict7["upscale"] = true; dict5["upset"] = true; dict6["upshot"] = true; dict6["upside"] = true; dict7["upsilon"] = true; dict7["upstage"] = true; dict7["upstair"] = true; dict7["upstart"] = true; dict7["upstate"] = true; dict7["upsurge"] = true; dict6["uptake"] = true; dict7["upthrow"] = true; dict6["uptick"] = true; dict7["uptight"] = true; dict6["uptime"] = true; dict6["uptown"] = true; dict6["upturn"] = true; dict5["upupa"] = true; dict6["upward"] = true; dict7["upwards"] = true; dict6["upwind"] = true; dict6["uracil"] = true; dict7["uraemia"] = true; dict7["uraemic"] = true; dict6["uralic"] = true; dict5["urals"] = true; dict6["urania"] = true; dict7["uranium"] = true; dict6["uranus"] = true; dict6["uranyl"] = true; dict5["urate"] = true; dict5["urban"] = true; dict6["urbana"] = true; dict6["urbane"] = true; dict7["urceole"] = true; dict6["urchin"] = true; dict4["urdu"] = true; dict4["urea"] = true; dict6["urease"] = true; dict6["uremia"] = true; dict6["uremic"] = true; dict6["ureter"] = true; dict7["urethra"] = true; dict4["urex"] = true; dict4["urey"] = true; dict4["urga"] = true; dict4["urge"] = true; dict7["urgency"] = true; dict6["urgent"] = true; dict7["urginea"] = true; dict6["urging"] = true; dict4["uria"] = true; dict5["uriah"] = true; dict5["urial"] = true; dict4["uric"] = true; dict6["urinal"] = true; dict7["urinary"] = true; dict7["urinate"] = true; dict5["urine"] = true; dict5["urmia"] = true; dict7["urocele"] = true; dict7["urocyon"] = true; dict7["urodele"] = true; dict7["urolith"] = true; dict7["urology"] = true; dict7["uropygi"] = true; dict7["ursidae"] = true; dict6["ursine"] = true; dict7["ursinia"] = true; dict5["ursus"] = true; dict4["urth"] = true; dict6["urtica"] = true; dict7["uruguay"] = true; dict4["urus"] = true; dict6["usable"] = true; dict6["usacil"] = true; dict4["usaf"] = true; dict5["usage"] = true; dict6["usance"] = true; dict5["usbeg"] = true; dict5["usbek"] = true; dict4["uscb"] = true; dict4["usda"] = true; dict7["useable"] = true; dict4["used"] = true; dict6["useful"] = true; dict7["useless"] = true; dict4["user"] = true; dict5["ushas"] = true; dict5["usher"] = true; dict5["using"] = true; dict5["uskub"] = true; dict4["usmc"] = true; dict5["usnea"] = true; dict4["usps"] = true; dict6["ussher"] = true; dict4["ussr"] = true; dict4["usss"] = true; dict7["ustinov"] = true; dict5["usual"] = true; dict7["usually"] = true; dict5["usuli"] = true; dict6["usurer"] = true; dict5["usurp"] = true; dict7["usurper"] = true; dict5["usury"] = true; dict4["utah"] = true; dict6["utahan"] = true; dict7["utensil"] = true; dict7["uterine"] = true; dict6["uterus"] = true; dict5["utica"] = true; dict5["utile"] = true; dict7["utilise"] = true; dict7["utility"] = true; dict7["utilize"] = true; dict6["utmost"] = true; dict6["utopia"] = true; dict7["utopian"] = true; dict7["utrecht"] = true; dict7["utricle"] = true; dict7["utrillo"] = true; dict5["utter"] = true; dict7["uttered"] = true; dict7["utterer"] = true; dict7["utterly"] = true; dict4["utug"] = true; dict4["uvea"] = true; dict5["uveal"] = true; dict7["uveitis"] = true; dict6["uveous"] = true; dict5["uvula"] = true; dict6["uvular"] = true; dict4["uxor"] = true; dict7["uxorial"] = true; dict5["uygur"] = true; dict5["uzbak"] = true; dict5["uzbeg"] = true; dict5["uzbek"] = true; dict5["v-day"] = true; dict4["v.p."] = true; dict7["vacancy"] = true; dict6["vacant"] = true; dict6["vacate"] = true; dict7["vaccina"] = true; dict7["vaccine"] = true; dict7["vacuity"] = true; dict7["vacuole"] = true; dict7["vacuous"] = true; dict6["vacuum"] = true; dict5["vaduz"] = true; dict5["vagal"] = true; dict6["vagary"] = true; dict6["vagile"] = true; dict6["vagina"] = true; dict7["vaginal"] = true; dict7["vagrant"] = true; dict5["vague"] = true; dict7["vaguely"] = true; dict5["vagus"] = true; dict4["vain"] = true; dict6["vainly"] = true; dict6["vaisya"] = true; dict5["vajra"] = true; dict7["valance"] = true; dict6["valdez"] = true; dict4["vale"] = true; dict7["valence"] = true; dict7["valency"] = true; dict6["valent"] = true; dict5["valet"] = true; dict7["valetta"] = true; dict6["valgus"] = true; dict4["vali"] = true; dict7["valiant"] = true; dict5["valid"] = true; dict7["validly"] = true; dict6["valine"] = true; dict6["valise"] = true; dict6["valium"] = true; dict6["valley"] = true; dict5["valmy"] = true; dict6["valois"] = true; dict5["valor"] = true; dict6["valour"] = true; dict5["valse"] = true; dict7["valuate"] = true; dict5["value"] = true; dict6["valued"] = true; dict6["valuer"] = true; dict6["values"] = true; dict5["valve"] = true; dict6["valved"] = true; dict7["valvula"] = true; dict7["valvule"] = true; dict7["vamoose"] = true; dict4["vamp"] = true; dict6["vamper"] = true; dict7["vampire"] = true; dict5["vanda"] = true; dict6["vandal"] = true; dict7["vandyke"] = true; dict4["vane"] = true; dict5["vaned"] = true; dict6["vanern"] = true; dict7["vanessa"] = true; dict7["vanilla"] = true; dict5["vanir"] = true; dict6["vanish"] = true; dict6["vanity"] = true; dict7["vantage"] = true; dict7["vanuatu"] = true; dict5["vapid"] = true; dict7["vapidly"] = true; dict5["vapor"] = true; dict6["vapors"] = true; dict6["vapour"] = true; dict7["vapours"] = true; dict7["vaquero"] = true; dict7["vaquita"] = true; dict4["var."] = true; dict4["vara"] = true; dict5["varan"] = true; dict7["varanus"] = true; dict6["varese"] = true; dict6["vargas"] = true; dict7["variant"] = true; dict7["variate"] = true; dict6["varied"] = true; dict7["variety"] = true; dict7["variola"] = true; dict7["various"] = true; dict5["varix"] = true; dict6["varlet"] = true; dict7["varment"] = true; dict7["varmint"] = true; dict5["varna"] = true; dict7["varnish"] = true; dict5["varro"] = true; dict7["varsity"] = true; dict6["varuna"] = true; dict5["varus"] = true; dict4["vary"] = true; dict7["varying"] = true; dict6["vasari"] = true; dict4["vase"] = true; dict7["vasomax"] = true; dict7["vasotec"] = true; dict6["vassal"] = true; dict4["vast"] = true; dict6["vastly"] = true; dict5["vatic"] = true; dict7["vatical"] = true; dict7["vatican"] = true; dict7["vaudois"] = true; dict7["vaughan"] = true; dict5["vault"] = true; dict7["vaulted"] = true; dict7["vaulter"] = true; dict5["vaunt"] = true; dict7["vaunter"] = true; dict4["vaux"] = true; dict4["vayu"] = true; dict6["veadar"] = true; dict4["veal"] = true; dict4["veau"] = true; dict6["veblen"] = true; dict6["vector"] = true; dict4["veda"] = true; dict7["vedalia"] = true; dict7["vedanga"] = true; dict7["vedanta"] = true; dict5["vedic"] = true; dict6["vedism"] = true; dict6["vedist"] = true; dict4["veer"] = true; dict7["veering"] = true; dict5["veery"] = true; dict4["vega"] = true; dict5["vegan"] = true; dict7["vegetal"] = true; dict6["veggie"] = true; dict7["vehicle"] = true; dict4["veil"] = true; dict6["veiled"] = true; dict7["veiling"] = true; dict4["vein"] = true; dict6["veinal"] = true; dict6["veined"] = true; dict4["vela"] = true; dict5["velar"] = true; dict6["velban"] = true; dict6["velcro"] = true; dict4["veld"] = true; dict5["veldt"] = true; dict6["vellum"] = true; dict6["velour"] = true; dict7["velours"] = true; dict7["veloute"] = true; dict5["velum"] = true; dict6["velvet"] = true; dict7["velvety"] = true; dict4["vena"] = true; dict5["venal"] = true; dict7["venally"] = true; dict4["vend"] = true; dict6["vendee"] = true; dict6["vender"] = true; dict7["vending"] = true; dict6["vendor"] = true; dict6["vendue"] = true; dict6["veneer"] = true; dict7["venetia"] = true; dict6["veneto"] = true; dict7["venezia"] = true; dict6["venial"] = true; dict6["venice"] = true; dict6["venire"] = true; dict7["venison"] = true; dict4["venn"] = true; dict5["venom"] = true; dict7["venomed"] = true; dict6["venose"] = true; dict6["venous"] = true; dict4["vent"] = true; dict7["ventail"] = true; dict6["vented"] = true; dict6["venter"] = true; dict7["venting"] = true; dict7["ventner"] = true; dict7["ventose"] = true; dict7["ventral"] = true; dict7["venture"] = true; dict7["venturi"] = true; dict5["venue"] = true; dict6["venula"] = true; dict6["venule"] = true; dict5["venus"] = true; dict4["veps"] = true; dict5["vepse"] = true; dict7["vepsian"] = true; dict7["veranda"] = true; dict4["verb"] = true; dict6["verbal"] = true; dict7["verbena"] = true; dict7["verbify"] = true; dict7["verbose"] = true; dict7["verdant"] = true; dict5["verdi"] = true; dict7["verdict"] = true; dict6["verdin"] = true; dict6["verdun"] = true; dict7["verdure"] = true; dict5["verge"] = true; dict6["verger"] = true; dict6["vergil"] = true; dict6["verify"] = true; dict6["verily"] = true; dict6["verity"] = true; dict7["vermeer"] = true; dict6["vermin"] = true; dict6["vermis"] = true; dict7["vermont"] = true; dict6["vernal"] = true; dict5["verne"] = true; dict6["verner"] = true; dict7["vernier"] = true; dict6["vernix"] = true; dict6["verona"] = true; dict7["veronal"] = true; dict5["verpa"] = true; dict7["verruca"] = true; dict7["versace"] = true; dict7["versant"] = true; dict5["verse"] = true; dict6["versed"] = true; dict7["versify"] = true; dict7["version"] = true; dict5["verso"] = true; dict5["verst"] = true; dict6["vertex"] = true; dict7["vertigo"] = true; dict5["vertu"] = true; dict7["vervain"] = true; dict5["verve"] = true; dict6["vervet"] = true; dict4["very"] = true; dict5["vesey"] = true; dict6["vesica"] = true; dict7["vesical"] = true; dict7["vesicle"] = true; dict5["vespa"] = true; dict6["vesper"] = true; dict7["vespers"] = true; dict6["vespid"] = true; dict7["vespula"] = true; dict6["vessel"] = true; dict4["vest"] = true; dict5["vesta"] = true; dict6["vestal"] = true; dict6["vested"] = true; dict7["vestige"] = true; dict7["vestris"] = true; dict6["vestry"] = true; dict7["vesture"] = true; dict5["vetch"] = true; dict7["veteran"] = true; dict7["vetluga"] = true; dict4["veto"] = true; dict5["vexed"] = true; dict5["vexer"] = true; dict6["vexing"] = true; dict6["viable"] = true; dict7["viaduct"] = true; dict6["viagra"] = true; dict4["vial"] = true; dict5["viand"] = true; dict6["viands"] = true; dict4["vibe"] = true; dict5["vibes"] = true; dict6["vibist"] = true; dict6["viborg"] = true; dict7["vibrant"] = true; dict7["vibrate"] = true; dict7["vibrato"] = true; dict6["vibrio"] = true; dict7["vibrion"] = true; dict5["vicar"] = true; dict4["vice"] = true; dict7["viceroy"] = true; dict5["vichy"] = true; dict5["vicia"] = true; dict7["vicinal"] = true; dict7["vicious"] = true; dict6["victim"] = true; dict6["victor"] = true; dict7["victory"] = true; dict7["victual"] = true; dict7["vicugna"] = true; dict6["vicuna"] = true; dict5["vidal"] = true; dict7["vidalia"] = true; dict5["vidar"] = true; dict5["video"] = true; dict5["vidua"] = true; dict6["vienna"] = true; dict6["vienne"] = true; dict7["vieques"] = true; dict7["vietnam"] = true; dict4["view"] = true; dict6["viewer"] = true; dict7["viewers"] = true; dict7["viewing"] = true; dict5["vigil"] = true; dict5["vigna"] = true; dict5["vigor"] = true; dict6["vigour"] = true; dict4["viii"] = true; dict6["viking"] = true; dict4["vila"] = true; dict4["vile"] = true; dict6["vilely"] = true; dict6["vilify"] = true; dict5["villa"] = true; dict7["village"] = true; dict7["villain"] = true; dict7["villard"] = true; dict7["villein"] = true; dict7["villoma"] = true; dict6["villon"] = true; dict6["villus"] = true; dict5["vilna"] = true; dict7["vilnius"] = true; dict5["vilno"] = true; dict5["vinca"] = true; dict4["vine"] = true; dict7["vinegar"] = true; dict6["vinery"] = true; dict6["vinify"] = true; dict4["vino"] = true; dict6["vinous"] = true; dict6["vinson"] = true; dict7["vintage"] = true; dict7["vintner"] = true; dict5["vinyl"] = true; dict6["viocin"] = true; dict4["viol"] = true; dict5["viola"] = true; dict7["violate"] = true; dict7["violent"] = true; dict6["violet"] = true; dict6["violin"] = true; dict7["violist"] = true; dict5["vioxx"] = true; dict5["viper"] = true; dict6["vipera"] = true; dict6["virago"] = true; dict5["viral"] = true; dict7["virchow"] = true; dict7["viremia"] = true; dict5["vireo"] = true; dict5["virga"] = true; dict6["virgil"] = true; dict6["virgin"] = true; dict5["virgo"] = true; dict7["virgule"] = true; dict6["virile"] = true; dict6["virino"] = true; dict6["virion"] = true; dict6["viroid"] = true; dict5["virtu"] = true; dict7["virtual"] = true; dict6["virtue"] = true; dict5["virus"] = true; dict4["visa"] = true; dict6["visage"] = true; dict7["visaged"] = true; dict7["visayan"] = true; dict7["viscera"] = true; dict6["viscid"] = true; dict7["viscose"] = true; dict7["viscous"] = true; dict6["viscum"] = true; dict6["viscus"] = true; dict4["vise"] = true; dict6["vishnu"] = true; dict7["visible"] = true; dict7["visibly"] = true; dict6["vision"] = true; dict5["visit"] = true; dict7["visitor"] = true; dict6["visken"] = true; dict5["visor"] = true; dict7["visored"] = true; dict5["vista"] = true; dict7["vistula"] = true; dict6["visual"] = true; dict5["vital"] = true; dict7["vitally"] = true; dict6["vitals"] = true; dict7["vitamin"] = true; dict6["vithar"] = true; dict7["vitharr"] = true; dict7["vitiate"] = true; dict5["vitis"] = true; dict7["vitrify"] = true; dict7["vitrine"] = true; dict7["vitriol"] = true; dict5["vitus"] = true; dict4["viva"] = true; dict6["vivace"] = true; dict7["vivaldi"] = true; dict7["viverra"] = true; dict5["vivid"] = true; dict7["vividly"] = true; dict6["vivify"] = true; dict5["vixen"] = true; dict7["viyella"] = true; dict4["viz."] = true; dict6["vizier"] = true; dict5["vizor"] = true; dict6["vizsla"] = true; dict4["vldl"] = true; dict7["vocable"] = true; dict5["vocal"] = true; dict7["vocalic"] = true; dict7["vocally"] = true; dict5["vodka"] = true; dict6["vodoun"] = true; dict5["vogue"] = true; dict7["voguish"] = true; dict5["vogul"] = true; dict5["voice"] = true; dict6["voiced"] = true; dict6["voicer"] = true; dict7["voicing"] = true; dict4["void"] = true; dict6["voider"] = true; dict7["voiding"] = true; dict5["voile"] = true; dict6["volans"] = true; dict6["volant"] = true; dict7["volapuk"] = true; dict5["volar"] = true; dict6["volary"] = true; dict7["volcano"] = true; dict4["vole"] = true; dict5["volga"] = true; dict7["volgaic"] = true; dict7["volkhov"] = true; dict6["volley"] = true; dict4["volt"] = true; dict5["volta"] = true; dict7["voltage"] = true; dict7["voltaic"] = true; dict7["voluble"] = true; dict7["volubly"] = true; dict6["volume"] = true; dict7["volumed"] = true; dict6["volund"] = true; dict6["volute"] = true; dict7["voluted"] = true; dict5["volva"] = true; dict6["volvox"] = true; dict5["vomer"] = true; dict5["vomit"] = true; dict7["vomiter"] = true; dict7["vomitus"] = true; dict6["voodoo"] = true; dict6["vortex"] = true; dict6["votary"] = true; dict4["vote"] = true; dict5["voter"] = true; dict6["voting"] = true; dict6["votive"] = true; dict6["votyak"] = true; dict5["vouch"] = true; dict7["vouchee"] = true; dict7["voucher"] = true; dict5["vouge"] = true; dict7["vouvray"] = true; dict5["vowel"] = true; dict5["vower"] = true; dict6["voyage"] = true; dict7["voyager"] = true; dict6["voyeur"] = true; dict5["vroom"] = true; dict6["vulcan"] = true; dict6["vulgar"] = true; dict7["vulgate"] = true; dict6["vulpes"] = true; dict7["vulpine"] = true; dict6["vultur"] = true; dict7["vulture"] = true; dict5["vulva"] = true; dict6["vulval"] = true; dict6["vulvar"] = true; dict4["w.c."] = true; dict6["w.m.d."] = true; dict6["wabash"] = true; dict7["wackily"] = true; dict5["wacko"] = true; dict5["wacky"] = true; dict4["waco"] = true; dict7["wadding"] = true; dict6["waddle"] = true; dict7["waddler"] = true; dict4["wade"] = true; dict5["wader"] = true; dict6["waders"] = true; dict4["wadi"] = true; dict6["wading"] = true; dict4["wads"] = true; dict5["wafer"] = true; dict6["waffle"] = true; dict7["waffler"] = true; dict4["waft"] = true; dict7["wafture"] = true; dict4["wage"] = true; dict5["wager"] = true; dict7["wagerer"] = true; dict5["wages"] = true; dict7["waggery"] = true; dict7["waggish"] = true; dict6["waggle"] = true; dict6["waggon"] = true; dict6["wagner"] = true; dict5["wagon"] = true; dict7["wagoner"] = true; dict6["wagram"] = true; dict7["wagtail"] = true; dict6["wahabi"] = true; dict7["wahhabi"] = true; dict5["wahoo"] = true; dict6["wahvey"] = true; dict4["waif"] = true; dict7["waikiki"] = true; dict4["wail"] = true; dict6["wailer"] = true; dict7["wailful"] = true; dict7["wailing"] = true; dict4["wain"] = true; dict5["waist"] = true; dict4["wait"] = true; dict5["waite"] = true; dict6["waiter"] = true; dict7["waiting"] = true; dict5["waive"] = true; dict6["waiver"] = true; dict5["wajda"] = true; dict4["wake"] = true; dict7["wakeful"] = true; dict5["waken"] = true; dict5["waker"] = true; dict6["waking"] = true; dict7["walapai"] = true; dict7["walbiri"] = true; dict4["wale"] = true; dict5["wales"] = true; dict6["walesa"] = true; dict4["walk"] = true; dict7["walk-in"] = true; dict7["walk-on"] = true; dict7["walk-to"] = true; dict7["walk-up"] = true; dict6["walker"] = true; dict7["walking"] = true; dict7["walkman"] = true; dict7["walkout"] = true; dict7["walkway"] = true; dict4["wall"] = true; dict7["wallaby"] = true; dict7["wallace"] = true; dict6["wallah"] = true; dict6["waller"] = true; dict6["wallet"] = true; dict7["walleye"] = true; dict7["walloon"] = true; dict6["wallop"] = true; dict6["wallow"] = true; dict5["wally"] = true; dict6["walnut"] = true; dict7["walpole"] = true; dict6["walrus"] = true; dict6["walter"] = true; dict6["walton"] = true; dict5["waltz"] = true; dict7["waltzer"] = true; dict6["wamble"] = true; dict6["wampee"] = true; dict6["wampum"] = true; dict4["wand"] = true; dict7["wandala"] = true; dict6["wander"] = true; dict4["wane"] = true; dict6["wangle"] = true; dict7["wangler"] = true; dict6["waning"] = true; dict4["wank"] = true; dict6["wanker"] = true; dict5["wanly"] = true; dict7["wannabe"] = true; dict7["wanness"] = true; dict4["want"] = true; dict6["wanted"] = true; dict6["wanter"] = true; dict7["wanting"] = true; dict6["wanton"] = true; dict6["wapiti"] = true; dict7["waratah"] = true; dict6["warble"] = true; dict7["warbler"] = true; dict7["warburg"] = true; dict4["ward"] = true; dict6["warden"] = true; dict6["warder"] = true; dict4["ware"] = true; dict7["warfare"] = true; dict7["warhead"] = true; dict6["warhol"] = true; dict6["warily"] = true; dict5["warji"] = true; dict7["warlike"] = true; dict7["warlock"] = true; dict7["warlord"] = true; dict4["warm"] = true; dict7["warm-up"] = true; dict6["warmed"] = true; dict6["warmer"] = true; dict7["warming"] = true; dict6["warmly"] = true; dict6["warmth"] = true; dict4["warn"] = true; dict6["warner"] = true; dict7["warning"] = true; dict4["warp"] = true; dict7["warpath"] = true; dict6["warped"] = true; dict7["warping"] = true; dict7["warrant"] = true; dict6["warren"] = true; dict7["warring"] = true; dict7["warrior"] = true; dict6["warsaw"] = true; dict7["warship"] = true; dict4["wart"] = true; dict7["warthog"] = true; dict7["wartime"] = true; dict5["warty"] = true; dict7["warwick"] = true; dict4["wary"] = true; dict6["wasabi"] = true; dict4["wash"] = true; dict7["washday"] = true; dict6["washed"] = true; dict6["washer"] = true; dict7["washing"] = true; dict7["washout"] = true; dict7["washrag"] = true; dict7["washtub"] = true; dict6["washup"] = true; dict5["washy"] = true; dict4["wasp"] = true; dict7["waspish"] = true; dict7["wassail"] = true; dict7["wastage"] = true; dict5["waste"] = true; dict6["wasted"] = true; dict6["waster"] = true; dict7["wasting"] = true; dict7["wastrel"] = true; dict5["watch"] = true; dict7["watcher"] = true; dict5["water"] = true; dict7["watered"] = true; dict7["waterer"] = true; dict6["waters"] = true; dict6["watery"] = true; dict4["wats"] = true; dict6["watson"] = true; dict4["watt"] = true; dict7["wattage"] = true; dict7["watteau"] = true; dict6["wattle"] = true; dict5["watts"] = true; dict6["watusi"] = true; dict7["watutsi"] = true; dict5["waugh"] = true; dict4["waul"] = true; dict6["wausau"] = true; dict4["wave"] = true; dict7["wavelet"] = true; dict6["wavell"] = true; dict5["waver"] = true; dict7["waverer"] = true; dict6["waving"] = true; dict4["wavy"] = true; dict4["wawl"] = true; dict5["waxed"] = true; dict5["waxen"] = true; dict6["waxing"] = true; dict7["waxlike"] = true; dict7["waxwing"] = true; dict7["waxwork"] = true; dict4["waxy"] = true; dict7["waxycap"] = true; dict7["way-out"] = true; dict7["waybill"] = true; dict7["wayland"] = true; dict6["waylay"] = true; dict5["wayne"] = true; dict4["ways"] = true; dict7["wayside"] = true; dict7["wayward"] = true; dict4["weak"] = true; dict6["weaken"] = true; dict6["weakly"] = true; dict4["weal"] = true; dict5["weald"] = true; dict6["wealth"] = true; dict7["wealthy"] = true; dict4["wean"] = true; dict6["weaned"] = true; dict7["weaning"] = true; dict6["weapon"] = true; dict4["wear"] = true; dict6["wearer"] = true; dict7["wearied"] = true; dict7["wearily"] = true; dict7["wearing"] = true; dict5["weary"] = true; dict6["weasel"] = true; dict7["weather"] = true; dict5["weave"] = true; dict6["weaver"] = true; dict7["weaving"] = true; dict4["webb"] = true; dict6["webbed"] = true; dict7["webbing"] = true; dict5["webby"] = true; dict6["webcam"] = true; dict5["weber"] = true; dict7["webfoot"] = true; dict7["weblike"] = true; dict7["webpage"] = true; dict7["website"] = true; dict7["webster"] = true; dict7["webworm"] = true; dict6["wedded"] = true; dict7["wedding"] = true; dict5["wedel"] = true; dict5["wedge"] = true; dict6["wedged"] = true; dict6["wedgie"] = true; dict7["wedlock"] = true; dict7["wee-wee"] = true; dict4["weed"] = true; dict6["weeder"] = true; dict5["weeds"] = true; dict5["weedy"] = true; dict4["week"] = true; dict7["weekday"] = true; dict7["weekend"] = true; dict6["weekly"] = true; dict7["weeness"] = true; dict6["weenie"] = true; dict6["weensy"] = true; dict5["weeny"] = true; dict4["weep"] = true; dict6["weeper"] = true; dict7["weeping"] = true; dict5["weepy"] = true; dict6["weevil"] = true; dict6["weewee"] = true; dict4["weft"] = true; dict7["wegener"] = true; dict7["weigela"] = true; dict5["weigh"] = true; dict7["weigher"] = true; dict6["weight"] = true; dict7["weighty"] = true; dict4["weil"] = true; dict5["weill"] = true; dict6["weimar"] = true; dict4["weir"] = true; dict5["weird"] = true; dict7["weirdie"] = true; dict7["weirdly"] = true; dict6["weirdo"] = true; dict6["weirdy"] = true; dict4["weka"] = true; dict5["welch"] = true; dict7["welcher"] = true; dict7["welcome"] = true; dict4["weld"] = true; dict6["welder"] = true; dict7["welding"] = true; dict7["welfare"] = true; dict6["welkin"] = true; dict4["well"] = true; dict6["welles"] = true; dict5["wells"] = true; dict5["welsh"] = true; dict7["welsher"] = true; dict4["welt"] = true; dict6["welter"] = true; dict5["welty"] = true; dict7["wembley"] = true; dict6["wen-ti"] = true; dict5["wench"] = true; dict7["wencher"] = true; dict4["wend"] = true; dict6["werfel"] = true; dict5["weser"] = true; dict6["wesley"] = true; dict6["wessex"] = true; dict4["west"] = true; dict6["wester"] = true; dict7["western"] = true; dict6["weston"] = true; dict7["wetback"] = true; dict6["wether"] = true; dict7["wetland"] = true; dict7["wetness"] = true; dict6["wetter"] = true; dict7["wetting"] = true; dict5["whack"] = true; dict7["whacked"] = true; dict7["whacker"] = true; dict6["whacko"] = true; dict6["whacky"] = true; dict5["whale"] = true; dict6["whaler"] = true; dict4["wham"] = true; dict6["whammy"] = true; dict5["whang"] = true; dict4["whap"] = true; dict5["wharf"] = true; dict7["wharton"] = true; dict7["whatnot"] = true; dict7["whatsis"] = true; dict5["wheal"] = true; dict5["wheat"] = true; dict7["wheaten"] = true; dict7["wheedle"] = true; dict5["wheel"] = true; dict7["wheeled"] = true; dict7["wheeler"] = true; dict6["wheeze"] = true; dict6["wheezy"] = true; dict5["whelk"] = true; dict5["whelm"] = true; dict5["whelp"] = true; dict6["whence"] = true; dict6["wherry"] = true; dict4["whet"] = true; dict4["whey"] = true; dict7["whicker"] = true; dict6["whidah"] = true; dict5["whiff"] = true; dict7["whiffer"] = true; dict4["whig"] = true; dict5["while"] = true; dict4["whim"] = true; dict7["whimper"] = true; dict7["whimsey"] = true; dict6["whimsy"] = true; dict4["whin"] = true; dict5["whine"] = true; dict6["whiner"] = true; dict6["whiney"] = true; dict6["whinny"] = true; dict5["whiny"] = true; dict4["whip"] = true; dict7["whipper"] = true; dict7["whippet"] = true; dict6["whippy"] = true; dict7["whipsaw"] = true; dict4["whir"] = true; dict5["whirl"] = true; dict7["whirler"] = true; dict5["whirr"] = true; dict5["whish"] = true; dict5["whisk"] = true; dict7["whisker"] = true; dict7["whiskey"] = true; dict6["whisky"] = true; dict7["whisper"] = true; dict5["whist"] = true; dict7["whistle"] = true; dict4["whit"] = true; dict5["white"] = true; dict6["whiten"] = true; dict6["whitey"] = true; dict7["whiting"] = true; dict7["whitish"] = true; dict7["whitlow"] = true; dict7["whitman"] = true; dict7["whitney"] = true; dict7["whitsun"] = true; dict7["whittle"] = true; dict4["whiz"] = true; dict5["whizz"] = true; dict5["whole"] = true; dict6["wholly"] = true; dict5["whomp"] = true; dict5["whoop"] = true; dict7["whoopee"] = true; dict7["whooper"] = true; dict6["whoosh"] = true; dict4["whop"] = true; dict7["whopper"] = true; dict5["whore"] = true; dict5["whorl"] = true; dict7["whorled"] = true; dict6["whydah"] = true; dict5["wicca"] = true; dict6["wiccan"] = true; dict7["wichita"] = true; dict4["wick"] = true; dict6["wicked"] = true; dict6["wicker"] = true; dict6["wicket"] = true; dict7["wickiup"] = true; dict6["wickup"] = true; dict6["wiclif"] = true; dict6["wicopy"] = true; dict4["wide"] = true; dict6["widely"] = true; dict5["widen"] = true; dict7["widgeon"] = true; dict6["widget"] = true; dict5["widow"] = true; dict7["widowed"] = true; dict7["widower"] = true; dict5["width"] = true; dict7["wieland"] = true; dict5["wield"] = true; dict6["wieldy"] = true; dict6["wiener"] = true; dict6["wiesel"] = true; dict4["wife"] = true; dict6["wifely"] = true; dict6["wiffle"] = true; dict4["wifi"] = true; dict6["wigeon"] = true; dict6["wigged"] = true; dict7["wigging"] = true; dict6["wiggle"] = true; dict7["wiggler"] = true; dict6["wiggly"] = true; dict5["wight"] = true; dict7["wigless"] = true; dict6["wigner"] = true; dict6["wigwag"] = true; dict6["wigwam"] = true; dict6["wikiup"] = true; dict4["wild"] = true; dict7["wildcat"] = true; dict5["wilde"] = true; dict6["wilder"] = true; dict7["wilding"] = true; dict6["wildly"] = true; dict4["wile"] = true; dict6["wilful"] = true; dict6["wilkes"] = true; dict7["wilkins"] = true; dict4["will"] = true; dict7["willard"] = true; dict6["willet"] = true; dict7["willful"] = true; dict7["willies"] = true; dict7["willing"] = true; dict6["willis"] = true; dict6["willow"] = true; dict7["willowy"] = true; dict6["wilmut"] = true; dict5["wilno"] = true; dict6["wilson"] = true; dict4["wilt"] = true; dict6["wilted"] = true; dict7["wilting"] = true; dict6["wilton"] = true; dict4["wily"] = true; dict6["wimble"] = true; dict4["wimp"] = true; dict7["wimpish"] = true; dict6["wimple"] = true; dict5["wimpy"] = true; dict5["wince"] = true; dict6["wincey"] = true; dict5["winch"] = true; dict4["wind"] = true; dict7["windage"] = true; dict7["windaus"] = true; dict7["windbag"] = true; dict6["winded"] = true; dict6["winder"] = true; dict7["windily"] = true; dict7["winding"] = true; dict6["window"] = true; dict7["windows"] = true; dict7["windsor"] = true; dict6["windup"] = true; dict5["windy"] = true; dict4["wine"] = true; dict6["winery"] = true; dict7["winesap"] = true; dict5["winey"] = true; dict7["winfred"] = true; dict4["wing"] = true; dict6["winged"] = true; dict6["winger"] = true; dict7["wingman"] = true; dict5["wings"] = true; dict4["wink"] = true; dict6["winker"] = true; dict7["winking"] = true; dict6["winkle"] = true; dict7["winless"] = true; dict6["winner"] = true; dict7["winning"] = true; dict6["winnow"] = true; dict4["wino"] = true; dict7["winslow"] = true; dict7["winsome"] = true; dict6["winter"] = true; dict7["wintera"] = true; dict7["wintery"] = true; dict6["wintry"] = true; dict6["wintun"] = true; dict4["winy"] = true; dict4["wipe"] = true; dict7["wipeout"] = true; dict5["wiper"] = true; dict4["wire"] = true; dict5["wired"] = true; dict7["wireman"] = true; dict5["wirer"] = true; dict7["wiretap"] = true; dict6["wiring"] = true; dict4["wiry"] = true; dict6["wisdom"] = true; dict4["wise"] = true; dict6["wisely"] = true; dict6["wisent"] = true; dict4["wish"] = true; dict7["wishful"] = true; dict7["wishing"] = true; dict4["wisp"] = true; dict5["wispy"] = true; dict6["wister"] = true; dict7["wistful"] = true; dict5["witch"] = true; dict7["with-it"] = true; dict6["withal"] = true; dict5["withe"] = true; dict6["wither"] = true; dict7["withers"] = true; dict6["within"] = true; dict5["withy"] = true; dict7["witless"] = true; dict7["witloof"] = true; dict7["witness"] = true; dict4["wits"] = true; dict7["wittily"] = true; dict7["witting"] = true; dict6["wittol"] = true; dict5["witty"] = true; dict4["wive"] = true; dict6["wivern"] = true; dict6["wizard"] = true; dict5["wizen"] = true; dict7["wizened"] = true; dict4["wlan"] = true; dict4["woad"] = true; dict6["wobble"] = true; dict7["wobbler"] = true; dict6["wobbly"] = true; dict5["wodan"] = true; dict5["woden"] = true; dict6["woeful"] = true; dict4["wold"] = true; dict4["wolf"] = true; dict5["wolfe"] = true; dict5["wolff"] = true; dict7["wolffia"] = true; dict7["wolfish"] = true; dict7["wolfman"] = true; dict7["wolfram"] = true; dict5["wolof"] = true; dict5["woman"] = true; dict7["womanly"] = true; dict4["womb"] = true; dict6["wombat"] = true; dict6["wonder"] = true; dict4["wonk"] = true; dict5["wonky"] = true; dict4["wont"] = true; dict6["wonted"] = true; dict6["wonton"] = true; dict4["wood"] = true; dict7["woodcut"] = true; dict6["wooded"] = true; dict6["wooden"] = true; dict7["woodlet"] = true; dict7["woodman"] = true; dict5["woods"] = true; dict7["woodsia"] = true; dict6["woodsy"] = true; dict5["woody"] = true; dict5["wooer"] = true; dict4["woof"] = true; dict6["woofer"] = true; dict6["wooing"] = true; dict4["wool"] = true; dict6["woolen"] = true; dict5["woolf"] = true; dict7["woollen"] = true; dict7["woolley"] = true; dict6["woolly"] = true; dict5["wooly"] = true; dict5["woosh"] = true; dict5["woozy"] = true; dict4["word"] = true; dict7["wordily"] = true; dict7["wording"] = true; dict7["wordnet"] = true; dict5["words"] = true; dict5["wordy"] = true; dict4["work"] = true; dict7["work-in"] = true; dict7["workbag"] = true; dict7["workbox"] = true; dict7["workday"] = true; dict6["worker"] = true; dict7["working"] = true; dict7["workman"] = true; dict7["workout"] = true; dict5["works"] = true; dict5["world"] = true; dict7["worldly"] = true; dict4["worm"] = true; dict5["wormy"] = true; dict4["worn"] = true; dict7["worried"] = true; dict7["worrier"] = true; dict5["worry"] = true; dict5["worse"] = true; dict6["worsen"] = true; dict7["worship"] = true; dict5["worst"] = true; dict7["worsted"] = true; dict4["wort"] = true; dict5["worth"] = true; dict6["worthy"] = true; dict5["wotan"] = true; dict4["wouk"] = true; dict5["wound"] = true; dict7["wounded"] = true; dict5["woven"] = true; dict5["wrack"] = true; dict6["wraith"] = true; dict7["wrangle"] = true; dict4["wrap"] = true; dict7["wrapped"] = true; dict7["wrapper"] = true; dict6["wrasse"] = true; dict5["wrath"] = true; dict5["wrawl"] = true; dict5["wreak"] = true; dict6["wreath"] = true; dict7["wreathe"] = true; dict5["wreck"] = true; dict7["wrecked"] = true; dict7["wrecker"] = true; dict4["wren"] = true; dict6["wrench"] = true; dict5["wrest"] = true; dict7["wrester"] = true; dict7["wrestle"] = true; dict6["wretch"] = true; dict5["wrick"] = true; dict7["wriggle"] = true; dict7["wriggly"] = true; dict6["wright"] = true; dict5["wring"] = true; dict7["wringer"] = true; dict7["wrinkle"] = true; dict7["wrinkly"] = true; dict5["wrist"] = true; dict4["writ"] = true; dict5["write"] = true; dict6["writer"] = true; dict6["writhe"] = true; dict7["writhed"] = true; dict7["writhen"] = true; dict7["writing"] = true; dict7["written"] = true; dict7["wroclaw"] = true; dict5["wrong"] = true; dict7["wrongly"] = true; dict5["wroth"] = true; dict7["wrought"] = true; dict5["wryly"] = true; dict7["wryneck"] = true; dict5["wuhan"] = true; dict7["wulfila"] = true; dict4["wuss"] = true; dict4["wyat"] = true; dict5["wyatt"] = true; dict6["wyclif"] = true; dict5["wyeth"] = true; dict7["wykeham"] = true; dict5["wyler"] = true; dict5["wylie"] = true; dict7["wynette"] = true; dict6["wynnea"] = true; dict7["wyoming"] = true; dict4["wyrd"] = true; dict7["wysiwyg"] = true; dict6["wyvern"] = true; dict6["x-axis"] = true; dict5["x-ray"] = true; dict6["x-scid"] = true; dict5["xanax"] = true; dict6["xavier"] = true; dict4["xcii"] = true; dict5["xciii"] = true; dict4["xciv"] = true; dict4["xcvi"] = true; dict5["xcvii"] = true; dict6["xcviii"] = true; dict7["xenicus"] = true; dict5["xenon"] = true; dict7["xenopus"] = true; dict5["xeric"] = true; dict6["xeroma"] = true; dict7["xerotes"] = true; dict5["xerox"] = true; dict5["xhosa"] = true; dict4["xian"] = true; dict4["xiii"] = true; dict7["xiphias"] = true; dict6["xizang"] = true; dict4["xlii"] = true; dict5["xliii"] = true; dict4["xliv"] = true; dict4["xlvi"] = true; dict5["xlvii"] = true; dict6["xlviii"] = true; dict4["xmas"] = true; dict4["xvii"] = true; dict5["xviii"] = true; dict4["xxii"] = true; dict5["xxiii"] = true; dict4["xxiv"] = true; dict4["xxix"] = true; dict4["xxvi"] = true; dict5["xxvii"] = true; dict6["xxviii"] = true; dict4["xxxi"] = true; dict5["xxxii"] = true; dict6["xxxiii"] = true; dict5["xxxiv"] = true; dict4["xxxv"] = true; dict5["xxxvi"] = true; dict6["xxxvii"] = true; dict7["xxxviii"] = true; dict7["xylaria"] = true; dict5["xylem"] = true; dict6["xylene"] = true; dict5["xylol"] = true; dict7["xylopia"] = true; dict6["xylose"] = true; dict7["xylosma"] = true; dict5["xyris"] = true; dict6["y-axis"] = true; dict5["yacca"] = true; dict5["yacht"] = true; dict4["yack"] = true; dict4["yafo"] = true; dict4["yagi"] = true; dict4["yahi"] = true; dict5["yahoo"] = true; dict5["yahve"] = true; dict6["yahveh"] = true; dict5["yahwe"] = true; dict6["yahweh"] = true; dict6["yakima"] = true; dict5["yakut"] = true; dict6["yakuza"] = true; dict4["yale"] = true; dict5["yalta"] = true; dict4["yalu"] = true; dict4["yama"] = true; dict7["yamaltu"] = true; dict6["yamani"] = true; dict6["yammer"] = true; dict4["yana"] = true; dict5["yanan"] = true; dict4["yang"] = true; dict6["yangon"] = true; dict7["yangtze"] = true; dict4["yank"] = true; dict6["yankee"] = true; dict6["yanker"] = true; dict7["yaounde"] = true; dict4["yard"] = true; dict7["yardage"] = true; dict7["yardarm"] = true; dict6["yarder"] = true; dict6["yardie"] = true; dict7["yardman"] = true; dict4["yarn"] = true; dict6["yarrow"] = true; dict7["yashmac"] = true; dict7["yashmak"] = true; dict7["yatobyo"] = true; dict4["yaup"] = true; dict6["yautia"] = true; dict7["yavapai"] = true; dict4["yawl"] = true; dict4["yawn"] = true; dict6["yawner"] = true; dict7["yawning"] = true; dict4["yawp"] = true; dict4["yaws"] = true; dict5["yazoo"] = true; dict4["ybit"] = true; dict4["yeah"] = true; dict4["year"] = true; dict6["yearly"] = true; dict5["yearn"] = true; dict7["yearner"] = true; dict5["years"] = true; dict5["yeast"] = true; dict6["yeasty"] = true; dict5["yeats"] = true; dict5["yeddo"] = true; dict4["yedo"] = true; dict4["yell"] = true; dict6["yelled"] = true; dict6["yeller"] = true; dict7["yelling"] = true; dict6["yellow"] = true; dict4["yelp"] = true; dict7["yelping"] = true; dict5["yemen"] = true; dict6["yemeni"] = true; dict7["yenisei"] = true; dict7["yenisey"] = true; dict5["yenta"] = true; dict6["yeoman"] = true; dict7["yerevan"] = true; dict6["yerkes"] = true; dict6["yersin"] = true; dict7["yes-man"] = true; dict7["yeshiva"] = true; dict4["yeti"] = true; dict4["yezo"] = true; dict4["yhvh"] = true; dict4["yhwh"] = true; dict5["yibit"] = true; dict7["yiddish"] = true; dict5["yield"] = true; dict7["yielder"] = true; dict4["yips"] = true; dict7["yisrael"] = true; dict4["ylem"] = true; dict4["ymir"] = true; dict5["yo-yo"] = true; dict5["yobbo"] = true; dict7["yobibit"] = true; dict4["yobo"] = true; dict5["yodel"] = true; dict4["yodh"] = true; dict4["yoga"] = true; dict7["yoghurt"] = true; dict4["yogi"] = true; dict5["yogic"] = true; dict6["yogurt"] = true; dict4["yoke"] = true; dict5["yokel"] = true; dict6["yokuts"] = true; dict4["yolk"] = true; dict6["yonder"] = true; dict4["yore"] = true; dict4["york"] = true; dict6["yoruba"] = true; dict5["young"] = true; dict7["younger"] = true; dict7["younker"] = true; dict5["youth"] = true; dict4["yowl"] = true; dict5["ypres"] = true; dict5["yquem"] = true; dict7["yttrium"] = true; dict4["yuan"] = true; dict7["yucatan"] = true; dict7["yucatec"] = true; dict5["yucca"] = true; dict5["yucky"] = true; dict6["yukawa"] = true; dict5["yukon"] = true; dict4["yule"] = true; dict4["yuma"] = true; dict5["yuman"] = true; dict5["yummy"] = true; dict6["yunnan"] = true; dict6["yuppie"] = true; dict4["yurt"] = true; dict6["z-axis"] = true; dict4["zaar"] = true; dict6["zabrze"] = true; dict6["zaftig"] = true; dict6["zagreb"] = true; dict5["zaire"] = true; dict7["zairean"] = true; dict7["zairese"] = true; dict5["zakat"] = true; dict4["zama"] = true; dict5["zaman"] = true; dict6["zamang"] = true; dict7["zambezi"] = true; dict6["zambia"] = true; dict7["zambian"] = true; dict7["zamboni"] = true; dict5["zamia"] = true; dict6["zantac"] = true; dict6["zanuck"] = true; dict4["zany"] = true; dict6["zapata"] = true; dict7["zapotec"] = true; dict6["zapper"] = true; dict5["zapus"] = true; dict4["zarf"] = true; dict5["zaria"] = true; dict5["zarqa"] = true; dict5["zayin"] = true; dict4["zbit"] = true; dict4["zeal"] = true; dict7["zealand"] = true; dict6["zealot"] = true; dict7["zealous"] = true; dict7["zebibit"] = true; dict5["zebra"] = true; dict4["zebu"] = true; dict6["zeeman"] = true; dict6["zeidae"] = true; dict4["zend"] = true; dict6["zenith"] = true; dict4["zeno"] = true; dict7["zeolite"] = true; dict6["zephyr"] = true; dict5["zeppo"] = true; dict4["zero"] = true; dict6["zeroth"] = true; dict4["zest"] = true; dict7["zestful"] = true; dict7["zestily"] = true; dict7["zestril"] = true; dict5["zesty"] = true; dict4["zeta"] = true; dict7["zetland"] = true; dict6["zeugma"] = true; dict4["zeus"] = true; dict4["zhou"] = true; dict6["zhuang"] = true; dict6["zhukov"] = true; dict5["zibit"] = true; dict7["ziegler"] = true; dict7["zig-zag"] = true; dict6["zigzag"] = true; dict7["zikurat"] = true; dict5["zilch"] = true; dict4["zill"] = true; dict7["zillion"] = true; dict6["zimmer"] = true; dict7["zinacef"] = true; dict4["zinc"] = true; dict4["zing"] = true; dict6["zinger"] = true; dict6["zinnia"] = true; dict7["zinsser"] = true; dict4["zion"] = true; dict7["zionism"] = true; dict7["zionist"] = true; dict6["zipper"] = true; dict5["zippo"] = true; dict5["zippy"] = true; dict6["zircon"] = true; dict6["zither"] = true; dict7["zithern"] = true; dict4["ziti"] = true; dict7["zizania"] = true; dict4["zizz"] = true; dict5["zloty"] = true; dict7["zoarces"] = true; dict5["zocor"] = true; dict6["zodiac"] = true; dict6["zoftig"] = true; dict4["zoic"] = true; dict6["zoisia"] = true; dict4["zola"] = true; dict6["zoloft"] = true; dict5["zomba"] = true; dict5["zombi"] = true; dict6["zombie"] = true; dict4["zona"] = true; dict5["zonal"] = true; dict6["zonary"] = true; dict4["zone"] = true; dict6["zoning"] = true; dict6["zonula"] = true; dict6["zonule"] = true; dict5["zooid"] = true; dict7["zoology"] = true; dict4["zoom"] = true; dict7["zoopsia"] = true; dict4["zori"] = true; dict5["zoril"] = true; dict6["zoster"] = true; dict7["zostera"] = true; dict7["zovirax"] = true; dict6["zoysia"] = true; dict6["zubird"] = true; dict4["zulu"] = true; dict4["zuni"] = true; dict6["zurich"] = true; dict6["zurvan"] = true; dict5["zweig"] = true; dict7["zwingli"] = true; dict6["zydeco"] = true; dict7["zygnema"] = true; dict6["zygoma"] = true; dict6["zygote"] = true; dict7["zygotic"] = true; dict6["zymase"] = true; dict7["zymogen"] = true; dict6["zymoid"] = true; dict7["zymosis"] = true; dict7["zymotic"] = true; dict7["zymurgy"] = true; dict6["zyrian"] = true; dict3["abs"] = true; dict3["aby"] = true; dict3["ace"] = true; dict3["act"] = true; dict3["add"] = true; dict3["ade"] = true; dict3["ado"] = true; dict3["aft"] = true; dict3["age"] = true; dict3["ago"] = true; dict3["aid"] = true; dict3["ail"] = true; dict3["aim"] = true; dict3["air"] = true; dict3["ala"] = true; dict3["ale"] = true; dict3["all"] = true; dict3["alp"] = true; dict3["alt"] = true; dict3["amp"] = true; dict3["ant"] = true; dict3["any"] = true; dict3["ape"] = true; dict3["apt"] = true; dict3["arc"] = true; dict3["are"] = true; dict3["ark"] = true; dict3["arm"] = true; dict3["art"] = true; dict3["ash"] = true; dict3["ask"] = true; dict3["asp"] = true; dict3["ass"] = true; dict3["ate"] = true; dict3["awe"] = true; dict3["awn"] = true; dict3["axe"] = true; dict3["azo"] = true; dict3["bad"] = true; dict3["bag"] = true; dict3["bam"] = true; dict3["ban"] = true; dict3["bar"] = true; dict3["bat"] = true; dict3["bay"] = true; dict3["bed"] = true; dict3["bee"] = true; dict3["beg"] = true; dict3["bet"] = true; dict3["bib"] = true; dict3["bid"] = true; dict3["big"] = true; dict3["bin"] = true; dict3["bit"] = true; dict3["boa"] = true; dict3["bog"] = true; dict3["boo"] = true; dict3["bot"] = true; dict3["bow"] = true; dict3["box"] = true; dict3["boy"] = true; dict3["bra"] = true; dict3["bud"] = true; dict3["bug"] = true; dict3["bum"] = true; dict3["bun"] = true; dict3["bus"] = true; dict3["but"] = true; dict3["buy"] = true; dict3["bye"] = true; dict3["cab"] = true; dict3["cad"] = true; dict3["can"] = true; dict3["cap"] = true; dict3["car"] = true; dict3["cat"] = true; dict3["caw"] = true; dict3["chi"] = true; dict3["cob"] = true; dict3["cod"] = true; dict3["cog"] = true; dict3["con"] = true; dict3["coo"] = true; dict3["cop"] = true; dict3["cot"] = true; dict3["cow"] = true; dict3["coy"] = true; dict3["cry"] = true; dict3["cub"] = true; dict3["cud"] = true; dict3["cue"] = true; dict3["cup"] = true; dict3["cut"] = true; dict3["dab"] = true; dict3["dad"] = true; dict3["dam"] = true; dict3["day"] = true; dict3["den"] = true; dict3["dew"] = true; dict3["die"] = true; dict3["dig"] = true; dict3["dim"] = true; dict3["dip"] = true; dict3["doe"] = true; dict3["dog"] = true; dict3["don"] = true; dict3["dot"] = true; dict3["dry"] = true; dict3["dub"] = true; dict3["dud"] = true; dict3["due"] = true; dict3["dug"] = true; dict3["duo"] = true; dict3["dye"] = true; dict3["ear"] = true; dict3["eat"] = true; dict3["eel"] = true; dict3["egg"] = true; dict3["ego"] = true; dict3["elf"] = true; dict3["elk"] = true; dict3["elm"] = true; dict3["emu"] = true; dict3["end"] = true; dict3["eon"] = true; dict3["era"] = true; dict3["eve"] = true; dict3["ewe"] = true; dict3["eye"] = true; dict3["fab"] = true; dict3["fad"] = true; dict3["fae"] = true; dict3["fan"] = true; dict3["far"] = true; dict3["fat"] = true; dict3["fax"] = true; dict3["fay"] = true; dict3["fed"] = true; dict3["fee"] = true; dict3["few"] = true; dict3["fey"] = true; dict3["fib"] = true; dict3["fin"] = true; dict3["fir"] = true; dict3["fit"] = true; dict3["fix"] = true; dict3["flu"] = true; dict3["fly"] = true; dict3["foe"] = true; dict3["fog"] = true; dict3["fox"] = true; dict3["fry"] = true; dict3["fun"] = true; dict3["fur"] = true; dict3["gab"] = true; dict3["gag"] = true; dict3["gal"] = true; dict3["gap"] = true; dict3["gas"] = true; dict3["gay"] = true; dict3["gel"] = true; dict3["gem"] = true; dict3["gen"] = true; dict3["get"] = true; dict3["gib"] = true; dict3["gig"] = true; dict3["gin"] = true; dict3["git"] = true; dict3["god"] = true; dict3["goo"] = true; dict3["gum"] = true; dict3["gun"] = true; dict3["gut"] = true; dict3["guy"] = true; dict3["gym"] = true; dict3["gyp"] = true; dict3["hag"] = true; dict3["ham"] = true; dict3["hat"] = true; dict3["hay"] = true; dict3["hen"] = true; dict3["hex"] = true; dict3["hip"] = true; dict3["hit"] = true; dict3["hoe"] = true; dict3["hog"] = true; dict3["hop"] = true; dict3["hot"] = true; dict3["hub"] = true; dict3["hue"] = true; dict3["hug"] = true; dict3["hum"] = true; dict3["hun"] = true; dict3["hut"] = true; dict3["ice"] = true; dict3["icy"] = true; dict3["ilk"] = true; dict3["ill"] = true; dict3["imp"] = true; dict3["ink"] = true; dict3["inn"] = true; dict3["ins"] = true; dict3["ion"] = true; dict3["ire"] = true; dict3["irk"] = true; dict3["ivy"] = true; dict3["jab"] = true; dict3["jam"] = true; dict3["jar"] = true; dict3["jaw"] = true; dict3["jay"] = true; dict3["jet"] = true; dict3["jew"] = true; dict3["jib"] = true; dict3["jig"] = true; dict3["job"] = true; dict3["jog"] = true; dict3["jot"] = true; dict3["joy"] = true; dict3["jug"] = true; dict3["jut"] = true; dict3["keg"] = true; dict3["key"] = true; dict3["kid"] = true; dict3["kin"] = true; dict3["kip"] = true; dict3["kit"] = true; dict3["lab"] = true; dict3["lad"] = true; dict3["lag"] = true; dict3["lap"] = true; dict3["law"] = true; dict3["lay"] = true; dict3["led"] = true; dict3["leg"] = true; dict3["let"] = true; dict3["lid"] = true; dict3["lie"] = true; dict3["lip"] = true; dict3["lit"] = true; dict3["lob"] = true; dict3["log"] = true; dict3["loo"] = true; dict3["lot"] = true; dict3["low"] = true; dict3["lug"] = true; dict3["lye"] = true; dict3["mad"] = true; dict3["man"] = true; dict3["map"] = true; dict3["mat"] = true; dict3["max"] = true; dict3["men"] = true; dict3["mix"] = true; dict3["mob"] = true; dict3["mom"] = true; dict3["mop"] = true; dict3["mow"] = true; dict3["mud"] = true; dict3["mug"] = true; dict3["mum"] = true; dict3["nab"] = true; dict3["nag"] = true; dict3["nap"] = true; dict3["nay"] = true; dict3["net"] = true; dict3["new"] = true; dict3["nil"] = true; dict3["nip"] = true; dict3["nit"] = true; dict3["nod"] = true; dict3["not"] = true; dict3["now"] = true; dict3["nun"] = true; dict3["nut"] = true; dict3["oaf"] = true; dict3["oak"] = true; dict3["oar"] = true; dict3["oat"] = true; dict3["odd"] = true; dict3["ode"] = true; dict3["off"] = true; dict3["oil"] = true; dict3["old"] = true; dict3["one"] = true; dict3["opt"] = true; dict3["orb"] = true; dict3["ore"] = true; dict3["out"] = true; dict3["owe"] = true; dict3["owl"] = true; dict3["own"] = true; dict3["pad"] = true; dict3["pal"] = true; dict3["pan"] = true; dict3["par"] = true; dict3["pat"] = true; dict3["paw"] = true; dict3["pay"] = true; dict3["pea"] = true; dict3["peg"] = true; dict3["pen"] = true; dict3["pep"] = true; dict3["pet"] = true; dict3["pib"] = true; dict3["pie"] = true; dict3["pig"] = true; dict3["pin"] = true; dict3["pip"] = true; dict3["pit"] = true; dict3["ply"] = true; dict3["pod"] = true; dict3["poe"] = true; dict3["pop"] = true; dict3["pot"] = true; dict3["pox"] = true; dict3["pry"] = true; dict3["pub"] = true; dict3["pug"] = true; dict3["pun"] = true; dict3["pup"] = true; dict3["pus"] = true; dict3["put"] = true; dict3["rag"] = true; dict3["ram"] = true; dict3["rap"] = true; dict3["rat"] = true; dict3["raw"] = true; dict3["ray"] = true; dict3["red"] = true; dict3["rib"] = true; dict3["rid"] = true; dict3["rig"] = true; dict3["rim"] = true; dict3["rip"] = true; dict3["rob"] = true; dict3["rod"] = true; dict3["rot"] = true; dict3["row"] = true; dict3["rub"] = true; dict3["rue"] = true; dict3["rug"] = true; dict3["rum"] = true; dict3["run"] = true; dict3["rut"] = true; dict3["rye"] = true; dict3["sad"] = true; dict3["sag"] = true; dict3["sap"] = true; dict3["saw"] = true; dict3["sax"] = true; dict3["say"] = true; dict3["sea"] = true; dict3["see"] = true; dict3["set"] = true; dict3["sew"] = true; dict3["sex"] = true; dict3["shy"] = true; dict3["sip"] = true; dict3["sir"] = true; dict3["sis"] = true; dict3["sit"] = true; dict3["six"] = true; dict3["ski"] = true; dict3["sky"] = true; dict3["sly"] = true; dict3["sob"] = true; dict3["sod"] = true; dict3["son"] = true; dict3["sow"] = true; dict3["soy"] = true; dict3["spa"] = true; dict3["spy"] = true; dict3["sty"] = true; dict3["sub"] = true; dict3["sue"] = true; dict3["sum"] = true; dict3["sun"] = true; dict3["tab"] = true; dict3["tad"] = true; dict3["tag"] = true; dict3["tan"] = true; dict3["tap"] = true; dict3["tar"] = true; dict3["tat"] = true; dict3["tax"] = true; dict3["tea"] = true; dict3["tee"] = true; dict3["ten"] = true; dict3["tie"] = true; dict3["tin"] = true; dict3["tip"] = true; dict3["toe"] = true; dict3["ton"] = true; dict3["too"] = true; dict3["top"] = true; dict3["tot"] = true; dict3["tow"] = true; dict3["toy"] = true; dict3["tub"] = true; dict3["tug"] = true; dict3["tut"] = true; dict3["tux"] = true; dict3["two"] = true; dict3["tyr"] = true; dict3["uma"] = true; dict3["urn"] = true; dict3["use"] = true; dict3["uzi"] = true; dict3["van"] = true; dict3["vat"] = true; dict3["vet"] = true; dict3["vex"] = true; dict3["vie"] = true; dict3["vip"] = true; dict3["vow"] = true; dict3["wad"] = true; dict3["wag"] = true; dict3["war"] = true; dict3["wax"] = true; dict3["way"] = true; dict3["web"] = true; dict3["wed"] = true; dict3["wee"] = true; dict3["wet"] = true; dict3["who"] = true; dict3["why"] = true; dict3["wig"] = true; dict3["win"] = true; dict3["wit"] = true; dict3["woe"] = true; dict3["wok"] = true; dict3["won"] = true; dict3["wow"] = true; dict3["yak"] = true; dict3["yam"] = true; dict3["yap"] = true; dict3["yaw"] = true; dict3["yea"] = true; dict3["yen"] = true; dict3["yes"] = true; dict3["yet"] = true; dict3["yew"] = true; dict3["yib"] = true; dict3["yid"] = true; dict3["yip"] = true; dict3["zap"] = true; dict3["zed"] = true; dict3["zen"] = true; dict3["zip"] = true; dict3["zit"] = true; dict3["zoo"] = true; dict3["woo"] = true; dict3["tic"] = true; dict3["may"] = true; dict4["came"] = true; dict3["nog"] = true; dict3["for"] = true; dict3["sat"] = true; dict3["nor"] = true; dict3["has"] = true; dict3["you"] = true; dict3["the"] = true; }; } } }//package WordSmith_fla
Section 48
//mnose_133 (WordSmith_fla.mnose_133) package WordSmith_fla { import flash.display.*; public dynamic class mnose_133 extends MovieClip { public var nose:MovieClip; } }//package WordSmith_fla
Section 49
//mouthbettermyself_139 (WordSmith_fla.mouthbettermyself_139) package WordSmith_fla { import flash.display.*; public dynamic class mouthbettermyself_139 extends MovieClip { public function mouthbettermyself_139(){ addFrameScript(83, frame84); } function frame84(){ stop(); } } }//package WordSmith_fla
Section 50
//mouthevenmorepoints_141 (WordSmith_fla.mouthevenmorepoints_141) package WordSmith_fla { import flash.display.*; public dynamic class mouthevenmorepoints_141 extends MovieClip { public function mouthevenmorepoints_141(){ addFrameScript(126, frame127); } function frame127(){ stop(); } } }//package WordSmith_fla
Section 51
//mouthexplanation_130 (WordSmith_fla.mouthexplanation_130) package WordSmith_fla { import flash.display.*; public dynamic class mouthexplanation_130 extends MovieClip { public function mouthexplanation_130(){ addFrameScript(283, frame284); } function frame284(){ stop(); } } }//package WordSmith_fla
Section 52
//mouthextraordinary_143 (WordSmith_fla.mouthextraordinary_143) package WordSmith_fla { import flash.display.*; public dynamic class mouthextraordinary_143 extends MovieClip { public function mouthextraordinary_143(){ addFrameScript(45, frame46); } function frame46(){ stop(); } } }//package WordSmith_fla
Section 53
//mouthfantastic_145 (WordSmith_fla.mouthfantastic_145) package WordSmith_fla { import flash.display.*; public dynamic class mouthfantastic_145 extends MovieClip { public function mouthfantastic_145(){ addFrameScript(51, frame52); } function frame52(){ stop(); } } }//package WordSmith_fla
Section 54
//mouthgameover_158 (WordSmith_fla.mouthgameover_158) package WordSmith_fla { import flash.display.*; public dynamic class mouthgameover_158 extends MovieClip { public function mouthgameover_158(){ addFrameScript(58, frame59); } function frame59(){ stop(); } } }//package WordSmith_fla
Section 55
//mouthingenius_148 (WordSmith_fla.mouthingenius_148) package WordSmith_fla { import flash.display.*; public dynamic class mouthingenius_148 extends MovieClip { public function mouthingenius_148(){ addFrameScript(58, frame59); } function frame59(){ stop(); } } }//package WordSmith_fla
Section 56
//mouthmarvelous_152 (WordSmith_fla.mouthmarvelous_152) package WordSmith_fla { import flash.display.*; public dynamic class mouthmarvelous_152 extends MovieClip { public function mouthmarvelous_152(){ addFrameScript(44, frame45); } function frame45(){ stop(); } } }//package WordSmith_fla
Section 57
//mouthoutstanding_137 (WordSmith_fla.mouthoutstanding_137) package WordSmith_fla { import flash.display.*; public dynamic class mouthoutstanding_137 extends MovieClip { public function mouthoutstanding_137(){ addFrameScript(41, frame42); } function frame42(){ stop(); } } }//package WordSmith_fla
Section 58
//mouthquicklyformwords_154 (WordSmith_fla.mouthquicklyformwords_154) package WordSmith_fla { import flash.display.*; public dynamic class mouthquicklyformwords_154 extends MovieClip { public function mouthquicklyformwords_154(){ addFrameScript(85, frame86); } function frame86(){ stop(); } } }//package WordSmith_fla
Section 59
//mouthwatareuwaitingfor_156 (WordSmith_fla.mouthwatareuwaitingfor_156) package WordSmith_fla { import flash.display.*; public dynamic class mouthwatareuwaitingfor_156 extends MovieClip { public function mouthwatareuwaitingfor_156(){ addFrameScript(77, frame78); } function frame78(){ stop(); } } }//package WordSmith_fla
Section 60
//normal_87 (WordSmith_fla.normal_87) package WordSmith_fla { import flash.display.*; public dynamic class normal_87 extends MovieClip { public function normal_87(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package WordSmith_fla
Section 61
//nose_49 (WordSmith_fla.nose_49) package WordSmith_fla { import flash.display.*; public dynamic class nose_49 extends MovieClip { public function nose_49(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package WordSmith_fla
Section 62
//playbtn_21 (WordSmith_fla.playbtn_21) package WordSmith_fla { import flash.display.*; public dynamic class playbtn_21 extends MovieClip { public function playbtn_21(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package WordSmith_fla
Section 63
//prof_29 (WordSmith_fla.prof_29) package WordSmith_fla { import flash.display.*; public dynamic class prof_29 extends MovieClip { public var brows:MovieClip; public var nose:MovieClip; public var head:MovieClip; } }//package WordSmith_fla
Section 64
//proffull_28 (WordSmith_fla.proffull_28) package WordSmith_fla { import flash.display.*; public dynamic class proffull_28 extends MovieClip { public var prof:MovieClip; } }//package WordSmith_fla
Section 65
//sounds_27 (WordSmith_fla.sounds_27) package WordSmith_fla { import flash.display.*; public dynamic class sounds_27 extends MovieClip { public function sounds_27(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package WordSmith_fla
Section 66
//TYPES_99 (WordSmith_fla.TYPES_99) package WordSmith_fla { import flash.display.*; public dynamic class TYPES_99 extends MovieClip { public function TYPES_99(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package WordSmith_fla
Section 67
//types2_98 (WordSmith_fla.types2_98) package WordSmith_fla { import flash.display.*; public dynamic class types2_98 extends MovieClip { public var z:MovieClip; } }//package WordSmith_fla
Section 68
//usedwordsbutton_101 (WordSmith_fla.usedwordsbutton_101) package WordSmith_fla { import flash.display.*; public dynamic class usedwordsbutton_101 extends MovieClip { public function usedwordsbutton_101(){ addFrameScript(0, frame1); } function frame1(){ stop(); } } }//package WordSmith_fla
Section 69
//zoomin_7 (WordSmith_fla.zoomin_7) package WordSmith_fla { import flash.display.*; public dynamic class zoomin_7 extends MovieClip { public var base:MovieClip; public function zoomin_7(){ addFrameScript(28, frame29, 46, frame47); } function frame29(){ stop(); } function frame47(){ stop(); } } }//package WordSmith_fla
Section 70
//zoomin_97 (WordSmith_fla.zoomin_97) package WordSmith_fla { import flash.display.*; public dynamic class zoomin_97 extends MovieClip { public var z:MovieClip; public function zoomin_97(){ addFrameScript(9, frame10, 14, frame15); } function frame10(){ stop(); } function frame15(){ stop(); } } }//package WordSmith_fla
Section 71
//zoominall_56 (WordSmith_fla.zoominall_56) package WordSmith_fla { import flash.display.*; public dynamic class zoominall_56 extends MovieClip { public var ab:MovieClip; public function zoominall_56(){ addFrameScript(9, frame10); } function frame10(){ stop(); } } }//package WordSmith_fla
Section 72
//zoominbase_58 (WordSmith_fla.zoominbase_58) package WordSmith_fla { import flash.display.*; public dynamic class zoominbase_58 extends MovieClip { public var menubtn:MovieClip; } }//package WordSmith_fla
Section 73
//CellRenderer_disabledSkin (CellRenderer_disabledSkin) package { import flash.display.*; public dynamic class CellRenderer_disabledSkin extends MovieClip { } }//package
Section 74
//CellRenderer_downSkin (CellRenderer_downSkin) package { import flash.display.*; public dynamic class CellRenderer_downSkin extends MovieClip { } }//package
Section 75
//CellRenderer_overSkin (CellRenderer_overSkin) package { import flash.display.*; public dynamic class CellRenderer_overSkin extends MovieClip { } }//package
Section 76
//CellRenderer_selectedDisabledSkin (CellRenderer_selectedDisabledSkin) package { import flash.display.*; public dynamic class CellRenderer_selectedDisabledSkin extends MovieClip { } }//package
Section 77
//CellRenderer_selectedDownSkin (CellRenderer_selectedDownSkin) package { import flash.display.*; public dynamic class CellRenderer_selectedDownSkin extends MovieClip { } }//package
Section 78
//CellRenderer_selectedOverSkin (CellRenderer_selectedOverSkin) package { import flash.display.*; public dynamic class CellRenderer_selectedOverSkin extends MovieClip { } }//package
Section 79
//CellRenderer_selectedUpSkin (CellRenderer_selectedUpSkin) package { import flash.display.*; public dynamic class CellRenderer_selectedUpSkin extends MovieClip { } }//package
Section 80
//CellRenderer_upSkin (CellRenderer_upSkin) package { import flash.display.*; public dynamic class CellRenderer_upSkin extends MovieClip { } }//package
Section 81
//Explode (Explode) package { import flash.display.*; public dynamic class Explode extends MovieClip { public var typ:MovieClip; public function Explode(){ addFrameScript(24, frame25); } function frame25(){ stop(); } } }//package
Section 82
//focusRectSkin (focusRectSkin) package { import flash.display.*; public dynamic class focusRectSkin extends MovieClip { } }//package
Section 83
//Interf (Interf) package { import flash.display.*; import flash.text.*; public dynamic class Interf extends MovieClip { public var giveup:MovieClip; public var meter:MovieClip; public var score:TextField; public var z:MovieClip; public var used:MovieClip; } }//package
Section 84
//Interf2 (Interf2) package { import flash.display.*; public dynamic class Interf2 extends MovieClip { } }//package
Section 85
//List_skin (List_skin) package { import flash.display.*; public dynamic class List_skin extends MovieClip { } }//package
Section 86
//listWords (listWords) package { import fl.controls.*; import flash.display.*; public dynamic class listWords extends MovieClip { public var btn:MovieClip; public var textarea:TextArea; public function listWords(){ __setProp_textarea_listofwords_Layer1_1(); } function __setProp_textarea_listofwords_Layer1_1(){ try { textarea["componentInspectorSetting"] = true; } catch(e:Error) { }; textarea.condenseWhite = false; textarea.editable = false; textarea.enabled = true; textarea.horizontalScrollPolicy = "auto"; textarea.htmlText = ""; textarea.maxChars = 0; textarea.restrict = ""; textarea.text = ""; textarea.verticalScrollPolicy = "auto"; textarea.visible = true; textarea.wordWrap = true; try { textarea["componentInspectorSetting"] = false; } catch(e:Error) { }; } } }//package
Section 87
//MainSong (MainSong) package { import flash.media.*; public dynamic class MainSong extends Sound { } }//package
Section 88
//MenuSong (MenuSong) package { import flash.media.*; public dynamic class MenuSong extends Sound { } }//package
Section 89
//Mword (Mword) package { import flash.display.*; import flash.text.*; public dynamic class Mword extends MovieClip { public var word:TextField; public var miniscore:TextField; public function Mword(){ addFrameScript(54, frame55); } function frame55(){ stop(); } } }//package
Section 90
//Prof10 (Prof10) package { import flash.display.*; public dynamic class Prof10 extends MovieClip { public var eye2:MovieClip; public var eye1:MovieClip; public function Prof10(){ addFrameScript(97, frame98); } function frame98(){ stop(); } } }//package
Section 91
//Prof11 (Prof11) package { import flash.display.*; public dynamic class Prof11 extends MovieClip { public var eye2:MovieClip; public var eye1:MovieClip; public function Prof11(){ addFrameScript(77, frame78); } function frame78(){ stop(); } } }//package
Section 92
//Prof12 (Prof12) package { import flash.display.*; public dynamic class Prof12 extends MovieClip { public var eye2:MovieClip; public var eye1:MovieClip; public function Prof12(){ addFrameScript(76, frame77); } function frame77(){ stop(); } } }//package
Section 93
//Prof2 (Prof2) package { import flash.display.*; public dynamic class Prof2 extends MovieClip { public var eye2:MovieClip; public var eye1:MovieClip; public function Prof2(){ addFrameScript(289, frame290); } function frame290(){ stop(); } } }//package
Section 94
//Prof3 (Prof3) package { import flash.display.*; public dynamic class Prof3 extends MovieClip { public var eye2:MovieClip; public var eye1:MovieClip; public function Prof3(){ addFrameScript(126, frame127); } function frame127(){ stop(); } } }//package
Section 95
//Prof4 (Prof4) package { import flash.display.*; public dynamic class Prof4 extends MovieClip { public var eye2:MovieClip; public var eye1:MovieClip; public function Prof4(){ addFrameScript(66, frame67); } function frame67(){ stop(); } } }//package
Section 96
//Prof5 (Prof5) package { import flash.display.*; public dynamic class Prof5 extends MovieClip { public var eye2:MovieClip; public var eye1:MovieClip; public function Prof5(){ addFrameScript(69, frame70); } function frame70(){ stop(); } } }//package
Section 97
//Prof6 (Prof6) package { import flash.display.*; public dynamic class Prof6 extends MovieClip { public var eye2:MovieClip; public var eye1:MovieClip; public function Prof6(){ addFrameScript(47, frame48); } function frame48(){ stop(); } } }//package
Section 98
//Prof7 (Prof7) package { import flash.display.*; public dynamic class Prof7 extends MovieClip { public var eye2:MovieClip; public var eye1:MovieClip; public function Prof7(){ addFrameScript(46, frame47); } function frame47(){ stop(); } } }//package
Section 99
//Prof8 (Prof8) package { import flash.display.*; public dynamic class Prof8 extends MovieClip { public var eye2:MovieClip; public var eye1:MovieClip; public function Prof8(){ addFrameScript(74, frame75); } function frame75(){ stop(); } } }//package
Section 100
//Prof9 (Prof9) package { import flash.display.*; public dynamic class Prof9 extends MovieClip { public var eye2:MovieClip; public var eye1:MovieClip; public function Prof9(){ addFrameScript(74, frame75); } function frame75(){ stop(); } } }//package
Section 101
//ScrollArrowDown_disabledSkin (ScrollArrowDown_disabledSkin) package { import flash.display.*; public dynamic class ScrollArrowDown_disabledSkin extends MovieClip { } }//package
Section 102
//ScrollArrowDown_downSkin (ScrollArrowDown_downSkin) package { import flash.display.*; public dynamic class ScrollArrowDown_downSkin extends MovieClip { } }//package
Section 103
//ScrollArrowDown_overSkin (ScrollArrowDown_overSkin) package { import flash.display.*; public dynamic class ScrollArrowDown_overSkin extends MovieClip { } }//package
Section 104
//ScrollArrowDown_upSkin (ScrollArrowDown_upSkin) package { import flash.display.*; public dynamic class ScrollArrowDown_upSkin extends MovieClip { } }//package
Section 105
//ScrollArrowUp_disabledSkin (ScrollArrowUp_disabledSkin) package { import flash.display.*; public dynamic class ScrollArrowUp_disabledSkin extends MovieClip { } }//package
Section 106
//ScrollArrowUp_downSkin (ScrollArrowUp_downSkin) package { import flash.display.*; public dynamic class ScrollArrowUp_downSkin extends MovieClip { } }//package
Section 107
//ScrollArrowUp_overSkin (ScrollArrowUp_overSkin) package { import flash.display.*; public dynamic class ScrollArrowUp_overSkin extends MovieClip { } }//package
Section 108
//ScrollArrowUp_upSkin (ScrollArrowUp_upSkin) package { import flash.display.*; public dynamic class ScrollArrowUp_upSkin extends MovieClip { } }//package
Section 109
//ScrollBar_thumbIcon (ScrollBar_thumbIcon) package { import flash.display.*; public dynamic class ScrollBar_thumbIcon extends MovieClip { } }//package
Section 110
//ScrollPane_disabledSkin (ScrollPane_disabledSkin) package { import flash.display.*; public dynamic class ScrollPane_disabledSkin extends MovieClip { } }//package
Section 111
//ScrollPane_upSkin (ScrollPane_upSkin) package { import flash.display.*; public dynamic class ScrollPane_upSkin extends MovieClip { } }//package
Section 112
//ScrollThumb_downSkin (ScrollThumb_downSkin) package { import flash.display.*; public dynamic class ScrollThumb_downSkin extends MovieClip { } }//package
Section 113
//ScrollThumb_overSkin (ScrollThumb_overSkin) package { import flash.display.*; public dynamic class ScrollThumb_overSkin extends MovieClip { } }//package
Section 114
//ScrollThumb_upSkin (ScrollThumb_upSkin) package { import flash.display.*; public dynamic class ScrollThumb_upSkin extends MovieClip { } }//package
Section 115
//ScrollTrack_skin (ScrollTrack_skin) package { import flash.display.*; public dynamic class ScrollTrack_skin extends MovieClip { } }//package
Section 116
//TextArea_disabledSkin (TextArea_disabledSkin) package { import flash.display.*; public dynamic class TextArea_disabledSkin extends MovieClip { } }//package
Section 117
//TextArea_upSkin (TextArea_upSkin) package { import flash.display.*; public dynamic class TextArea_upSkin extends MovieClip { } }//package
Section 118
//Tile (Tile) package { import flash.display.*; import flash.text.*; public dynamic class Tile extends MovieClip { public var shade:MovieClip; public var letter:TextField; public var shine:MovieClip; public var typ:MovieClip; public var bomb:MovieClip; public var ashine:MovieClip; public var letter2:TextField; } }//package
Section 119
//tLarge (tLarge) package { import flash.display.*; import flash.text.*; public dynamic class tLarge extends MovieClip { public var letter:TextField; public var typ:MovieClip; public function tLarge(){ addFrameScript(0, frame1, 24, frame25); } function frame1(){ stop(); } function frame25(){ stop(); } } }//package

Library Items

Symbol 1 Sound {MenuSong}
Symbol 2 Sound {MainSong}
Symbol 3 GraphicUsed by:4
Symbol 4 MovieClipUses:3Used by:41 43 47 49 55 59 61 63 65 67 71 344
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClipUses:5Used by:41 43 47 49 55 59 61 63 65 67 71 344
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:7Used by:9
Symbol 9 MovieClipUses:8Used by:41 43 47 49 55 59 61 63 65 67 71 344
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:10Used by:12
Symbol 12 MovieClipUses:11Used by:41 43 47 49 55 59 61 63 65 67 71 344
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:13Used by:41 43 47 49 55 59 61 63 65 67 71 344
Symbol 15 GraphicUsed by:16
Symbol 16 MovieClipUses:15Used by:41 43 47 49 55 59 61 63 65 67 71
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClipUses:17Used by:19
Symbol 19 MovieClip {WordSmith_fla.animatemouth_42}Uses:18Used by:20
Symbol 20 MovieClipUses:19Used by:24 42 44 48 50 56 60 62 64 66 68 344
Symbol 21 GraphicUsed by:22
Symbol 22 MovieClipUses:21Used by:23
Symbol 23 MovieClipUses:22Used by:24 42 44 48 50 56 60 62 64 66 68 344
Symbol 24 MovieClip {WordSmith_fla.mouthgameover_158}Uses:20 23 SS1Used by:41
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClipUses:25Used by:41 43 47 49 55 59 61 63 65 67 71 341
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:27Used by:41 43 47 49 55 59 61 63 65 67 71 341
Symbol 29 GraphicUsed by:30
Symbol 30 MovieClipUses:29Used by:31 342
Symbol 31 MovieClipUses:30Used by:41 43 47 49 55 59 61 63 65 67 71
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClipUses:32Used by:34 342
Symbol 34 MovieClipUses:33Used by:41 43 47 49 55 59 61 63 65 67 71
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:35Used by:37
Symbol 37 MovieClip {WordSmith_fla.nose_49}Uses:36Used by:38 344
Symbol 38 MovieClip {WordSmith_fla.mnose_133}Uses:37Used by:41 43 47 49 55 59 61 63 65 67 71
Symbol 39 GraphicUsed by:40
Symbol 40 MovieClipUses:39Used by:41 71 314
Symbol 41 MovieClip {Prof12}Uses:4 6 9 12 14 16 24 26 28 31 34 38 40
Symbol 42 MovieClip {WordSmith_fla.mouthwatareuwaitingfor_156}Uses:20 23 SS2Used by:43
Symbol 43 MovieClip {Prof11}Uses:4 6 9 12 14 16 42 26 28 31 34 38
Symbol 44 MovieClip {WordSmith_fla.mouthquicklyformwords_154}Uses:20 23 SS3Used by:47
Symbol 45 GraphicUsed by:46
Symbol 46 MovieClipUses:45Used by:47 71
Symbol 47 MovieClip {Prof10}Uses:4 6 9 12 14 16 44 26 28 31 34 38 46
Symbol 48 MovieClip {WordSmith_fla.mouthmarvelous_152}Uses:20 23 SS4Used by:49
Symbol 49 MovieClip {Prof6}Uses:4 6 9 12 16 48 26 28 31 34 38 14
Symbol 50 MovieClip {WordSmith_fla.mouthingenius_148}Uses:20 23 SS5Used by:55
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:51Used by:55
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:53Used by:55
Symbol 55 MovieClip {Prof9}Uses:4 6 9 12 16 50 26 28 31 34 38 14 52 54
Symbol 56 MovieClip {WordSmith_fla.mouthfantastic_145}Uses:20 23 SS6Used by:59
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:57Used by:59
Symbol 59 MovieClip {Prof5}Uses:4 6 9 12 14 16 56 26 28 31 34 38 58
Symbol 60 MovieClip {WordSmith_fla.mouthextraordinary_143}Uses:20 23 SS7Used by:61
Symbol 61 MovieClip {Prof4}Uses:4 6 9 12 14 16 60 26 28 31 34 38
Symbol 62 MovieClip {WordSmith_fla.mouthevenmorepoints_141}Uses:20 23 SS8Used by:63
Symbol 63 MovieClip {Prof3}Uses:4 6 9 12 14 16 62 26 28 31 34 38
Symbol 64 MovieClip {WordSmith_fla.mouthbettermyself_139}Uses:20 23 SS9Used by:65
Symbol 65 MovieClip {Prof8}Uses:4 6 9 12 14 16 64 26 28 31 34 38
Symbol 66 MovieClip {WordSmith_fla.mouthoutstanding_137}Uses:20 23 SS10Used by:67
Symbol 67 MovieClip {Prof7}Uses:4 6 9 12 16 66 26 28 31 34 38 14
Symbol 68 MovieClip {WordSmith_fla.mouthexplanation_130}Uses:20 23 SS11Used by:71
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:69Used by:71
Symbol 71 MovieClip {Prof2}Uses:4 6 9 12 14 16 68 26 28 31 34 38 40 46 70
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:125 132 237 242
Symbol 74 MovieClip {fl.core.ComponentShim}Used by:93 124 125 132 237 242
Symbol 75 GraphicUsed by:76
Symbol 76 MovieClip {List_skin}Uses:75Used by:125
Symbol 77 GraphicUsed by:78
Symbol 78 MovieClip {CellRenderer_upSkin}Uses:77Used by:93
Symbol 79 GraphicUsed by:80
Symbol 80 MovieClip {CellRenderer_disabledSkin}Uses:79Used by:93
Symbol 81 GraphicUsed by:82
Symbol 82 MovieClip {CellRenderer_downSkin}Uses:81Used by:93
Symbol 83 GraphicUsed by:84
Symbol 84 MovieClip {CellRenderer_overSkin}Uses:83Used by:93
Symbol 85 GraphicUsed by:86
Symbol 86 MovieClip {CellRenderer_selectedDisabledSkin}Uses:85Used by:93
Symbol 87 GraphicUsed by:88
Symbol 88 MovieClip {CellRenderer_selectedDownSkin}Uses:87Used by:93
Symbol 89 GraphicUsed by:90
Symbol 90 MovieClip {CellRenderer_selectedOverSkin}Uses:89Used by:93
Symbol 91 GraphicUsed by:92
Symbol 92 MovieClip {CellRenderer_selectedUpSkin}Uses:91Used by:93
Symbol 93 MovieClip {fl.controls.listClasses.CellRenderer}Uses:78 74 80 82 84 86 88 90 92Used by:125
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClip {focusRectSkin}Uses:94Used by:124 125 237 242
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClip {ScrollTrack_skin}Uses:96Used by:124 237
Symbol 98 GraphicUsed by:101
Symbol 99 GraphicUsed by:100 103 107 117
Symbol 100 MovieClipUses:99Used by:101 111 113
Symbol 101 MovieClip {ScrollArrowUp_downSkin}Uses:98 100Used by:124 237
Symbol 102 GraphicUsed by:103
Symbol 103 MovieClip {ScrollArrowDown_downSkin}Uses:102 99Used by:124 237
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClip {ScrollThumb_downSkin}Uses:104Used by:124 237
Symbol 106 GraphicUsed by:107
Symbol 107 MovieClip {ScrollArrowDown_overSkin}Uses:106 99Used by:124 237
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClip {ScrollThumb_overSkin}Uses:108Used by:124 237
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClip {ScrollArrowUp_overSkin}Uses:110 100Used by:124 237
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClip {ScrollArrowUp_upSkin}Uses:112 100Used by:124 237
Symbol 114 GraphicUsed by:115
Symbol 115 MovieClip {ScrollThumb_upSkin}Uses:114Used by:124 237
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClip {ScrollArrowDown_upSkin}Uses:116 99Used by:124 237
Symbol 118 GraphicUsed by:119
Symbol 119 MovieClip {ScrollArrowDown_disabledSkin}Uses:118Used by:124 237
Symbol 120 GraphicUsed by:121
Symbol 121 MovieClip {ScrollArrowUp_disabledSkin}Uses:120Used by:124 237
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClip {ScrollBar_thumbIcon}Uses:122Used by:124 237
Symbol 124 MovieClip {fl.controls.ScrollBar}Uses:97 74 95 101 103 105 107 109 111 113 115 117 119 121 123Used by:125 132
Symbol 125 MovieClip {fl.controls.List}Uses:73 74 76 93 95 124
Symbol 126 GraphicUsed by:127
Symbol 127 MovieClipUses:126Used by:130 131
Symbol 128 GraphicUsed by:129
Symbol 129 MovieClipUses:128Used by:130 131
Symbol 130 MovieClip {ScrollPane_disabledSkin}Uses:127 129Used by:132
Symbol 131 MovieClip {ScrollPane_upSkin}Uses:127 129Used by:132
Symbol 132 MovieClip {fl.containers.ScrollPane}Uses:73 74 130 131 124
Symbol 133 GraphicUsed by:134 236
Symbol 134 MovieClipUses:133Used by:135
Symbol 135 MovieClipUses:134Used by:154
Symbol 136 GraphicUsed by:144
Symbol 137 GraphicUsed by:144
Symbol 138 GraphicUsed by:144
Symbol 139 GraphicUsed by:144
Symbol 140 GraphicUsed by:144
Symbol 141 GraphicUsed by:144
Symbol 142 GraphicUsed by:144
Symbol 143 GraphicUsed by:144
Symbol 144 MovieClip {WordSmith_fla.normal_87}Uses:136 137 138 139 140 141 142 143Used by:154 156 236
Symbol 145 FontUsed by:146 147 155 157 158 172 173 174 175 176 180 182 184 186 188 193 194 197 198 200 201 203 204 206 207 209 210
Symbol 146 EditableTextUses:145Used by:154
Symbol 147 EditableTextUses:145Used by:154
Symbol 148 GraphicUsed by:149
Symbol 149 MovieClipUses:148Used by:154
Symbol 150 GraphicUsed by:151
Symbol 151 MovieClipUses:150Used by:154
Symbol 152 GraphicUsed by:153
Symbol 153 MovieClipUses:152Used by:154
Symbol 154 MovieClip {Tile}Uses:135 144 146 147 149 151 153
Symbol 155 EditableTextUses:145Used by:156
Symbol 156 MovieClip {tLarge}Uses:144 155
Symbol 157 EditableTextUses:145Used by:159
Symbol 158 EditableTextUses:145Used by:159
Symbol 159 MovieClip {Mword}Uses:157 158
Symbol 160 GraphicUsed by:161
Symbol 161 MovieClipUses:160Used by:223
Symbol 162 GraphicUsed by:191
Symbol 163 GraphicUsed by:191
Symbol 164 GraphicUsed by:191
Symbol 165 ShapeTweeningUsed by:169
Symbol 166 ShapeTweeningUsed by:169
Symbol 167 ShapeTweeningUsed by:169
Symbol 168 GraphicUsed by:169
Symbol 169 MovieClipUses:165 166 167 168Used by:191
Symbol 170 GraphicUsed by:191
Symbol 171 GraphicUsed by:189
Symbol 172 TextUses:145Used by:189
Symbol 173 TextUses:145Used by:189
Symbol 174 TextUses:145Used by:189
Symbol 175 TextUses:145Used by:189
Symbol 176 TextUses:145Used by:189
Symbol 177 GraphicUsed by:178
Symbol 178 MovieClipUses:177Used by:189
Symbol 179 GraphicUsed by:189
Symbol 180 TextUses:145Used by:189
Symbol 181 GraphicUsed by:189
Symbol 182 TextUses:145Used by:189
Symbol 183 GraphicUsed by:189
Symbol 184 TextUses:145Used by:189
Symbol 185 GraphicUsed by:189
Symbol 186 TextUses:145Used by:189
Symbol 187 GraphicUsed by:189
Symbol 188 TextUses:145Used by:189
Symbol 189 MovieClipUses:171 172 173 174 175 176 178 179 180 181 182 183 184 185 186 187 188Used by:191
Symbol 190 GraphicUsed by:191
Symbol 191 MovieClip {WordSmith_fla.combometer_93}Uses:162 163 164 169 170 189 190Used by:223
Symbol 192 GraphicUsed by:213
Symbol 193 TextUses:145Used by:212
Symbol 194 TextUses:145Used by:212
Symbol 195 GraphicUsed by:196
Symbol 196 MovieClipUses:195Used by:212
Symbol 197 TextUses:145Used by:212
Symbol 198 TextUses:145Used by:212
Symbol 199 GraphicUsed by:212
Symbol 200 TextUses:145Used by:212
Symbol 201 TextUses:145Used by:212
Symbol 202 GraphicUsed by:212
Symbol 203 TextUses:145Used by:212
Symbol 204 TextUses:145Used by:212
Symbol 205 GraphicUsed by:212
Symbol 206 TextUses:145Used by:212
Symbol 207 TextUses:145Used by:212
Symbol 208 GraphicUsed by:212
Symbol 209 TextUses:145Used by:212
Symbol 210 TextUses:145Used by:212
Symbol 211 GraphicUsed by:212
Symbol 212 MovieClip {WordSmith_fla.TYPES_99}Uses:193 194 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211Used by:213
Symbol 213 MovieClip {WordSmith_fla.types2_98}Uses:192 212Used by:214
Symbol 214 MovieClip {WordSmith_fla.zoomin_97}Uses:213Used by:223
Symbol 215 FontUsed by:216
Symbol 216 EditableTextUses:215Used by:223
Symbol 217 GraphicUsed by:219
Symbol 218 GraphicUsed by:219
Symbol 219 MovieClip {WordSmith_fla.usedwordsbutton_101}Uses:217 218Used by:223
Symbol 220 GraphicUsed by:222
Symbol 221 GraphicUsed by:222
Symbol 222 MovieClipUses:220 221Used by:223
Symbol 223 MovieClip {Interf}Uses:161 191 214 216 219 222
Symbol 224 GraphicUsed by:225
Symbol 225 MovieClip {Interf2}Uses:224
Symbol 226 GraphicUsed by:227
Symbol 227 MovieClipUses:226Used by:236
Symbol 228 GraphicUsed by:236
Symbol 229 GraphicUsed by:236
Symbol 230 GraphicUsed by:236
Symbol 231 GraphicUsed by:236
Symbol 232 GraphicUsed by:236
Symbol 233 GraphicUsed by:236
Symbol 234 GraphicUsed by:235
Symbol 235 MovieClipUses:234Used by:236
Symbol 236 MovieClip {Explode}Uses:144 227 133 228 229 230 231 232 233 235
Symbol 237 MovieClip {fl.controls.UIScrollBar}Uses:73 74 95 97 101 103 105 107 109 111 113 115 117 119 121 123Used by:242
Symbol 238 GraphicUsed by:239
Symbol 239 MovieClip {TextArea_disabledSkin}Uses:238Used by:242
Symbol 240 GraphicUsed by:241
Symbol 241 MovieClip {TextArea_upSkin}Uses:240Used by:242
Symbol 242 MovieClip {fl.controls.TextArea}Uses:73 74 239 241 95 237Used by:255
Symbol 243 GraphicUsed by:255
Symbol 244 GraphicUsed by:245
Symbol 245 MovieClipUses:244Used by:255
Symbol 246 GraphicUsed by:247
Symbol 247 MovieClipUses:246Used by:255
Symbol 248 GraphicUsed by:255
Symbol 249 FontUsed by:250 251 280 281 284 286 334 350 359
Symbol 250 TextUses:249Used by:255
Symbol 251 TextUses:249Used by:255
Symbol 252 GraphicUsed by:254
Symbol 253 GraphicUsed by:254
Symbol 254 MovieClipUses:252 253Used by:255
Symbol 255 MovieClip {listWords}Uses:243 245 242 247 248 250 251 254
Symbol 256 GraphicUsed by:257
Symbol 257 MovieClipUses:256Used by:Timeline
Symbol 258 MovieClipUsed by:Timeline
Symbol 259 GraphicUsed by:Timeline
Symbol 260 GraphicUsed by:261
Symbol 261 MovieClipUses:260Used by:301 356  Timeline
Symbol 262 GraphicUsed by:263
Symbol 263 MovieClipUses:262Used by:266
Symbol 264 GraphicUsed by:265
Symbol 265 MovieClipUses:264Used by:266
Symbol 266 MovieClip {WordSmith_fla.cooliologoanimate_4}Uses:263 265 SS12Used by:Timeline
Symbol 267 GraphicUsed by:Timeline
Symbol 268 GraphicUsed by:314
Symbol 269 GraphicUsed by:270
Symbol 270 MovieClipUses:269Used by:271 272 273
Symbol 271 MovieClipUses:270Used by:274 293
Symbol 272 MovieClipUses:270Used by:274 293
Symbol 273 MovieClipUses:270Used by:274 293
Symbol 274 MovieClipUses:271 272 273Used by:314 362
Symbol 275 GraphicUsed by:287
Symbol 276 FontUsed by:277 278 279 283 285
Symbol 277 TextUses:276Used by:287
Symbol 278 TextUses:276Used by:287
Symbol 279 TextUses:276Used by:287
Symbol 280 TextUses:249Used by:287
Symbol 281 TextUses:249Used by:287
Symbol 282 GraphicUsed by:287
Symbol 283 TextUses:276Used by:287
Symbol 284 TextUses:249Used by:287
Symbol 285 TextUses:276Used by:287
Symbol 286 TextUses:249Used by:287
Symbol 287 MovieClipUses:275 277 278 279 280 281 282 283 284 285 286Used by:314
Symbol 288 GraphicUsed by:308
Symbol 289 GraphicUsed by:301  Timeline
Symbol 290 GraphicUsed by:301
Symbol 291 GraphicUsed by:292
Symbol 292 MovieClipUses:291Used by:301 356
Symbol 293 MovieClipUses:271 272 273Used by:301 356
Symbol 294 GraphicUsed by:298
Symbol 295 GraphicUsed by:298
Symbol 296 GraphicUsed by:297
Symbol 297 MovieClipUses:296Used by:298
Symbol 298 MovieClipUses:294 295 297Used by:300
Symbol 299 GraphicUsed by:300
Symbol 300 MovieClipUses:298 299Used by:301 356
Symbol 301 MovieClipUses:289 261 290 292 293 300Used by:308
Symbol 302 GraphicUsed by:304
Symbol 303 GraphicUsed by:304
Symbol 304 MovieClip {WordSmith_fla.playbtn_21}Uses:302 303Used by:308
Symbol 305 GraphicUsed by:307
Symbol 306 GraphicUsed by:307
Symbol 307 MovieClipUses:305 306Used by:308
Symbol 308 MovieClip {WordSmith_fla.base_14}Uses:288 301 304 307Used by:314
Symbol 309 GraphicUsed by:310
Symbol 310 MovieClipUses:309Used by:314
Symbol 311 GraphicUsed by:314
Symbol 312 GraphicUsed by:313
Symbol 313 MovieClipUses:312Used by:314
Symbol 314 MovieClip {WordSmith_fla.zoomin_7}Uses:268 274 287 308 310 311 313 40Used by:Timeline
Symbol 315 GraphicUsed by:316
Symbol 316 MovieClipUses:315Used by:Timeline
Symbol 317 GraphicUsed by:333
Symbol 318 SoundUsed by:333
Symbol 319 SoundUsed by:333
Symbol 320 SoundUsed by:333
Symbol 321 SoundUsed by:333
Symbol 322 SoundUsed by:333
Symbol 323 SoundUsed by:333
Symbol 324 SoundUsed by:333
Symbol 325 SoundUsed by:333
Symbol 326 SoundUsed by:333
Symbol 327 SoundUsed by:333
Symbol 328 SoundUsed by:333
Symbol 329 SoundUsed by:333
Symbol 330 SoundUsed by:333
Symbol 331 SoundUsed by:333
Symbol 332 SoundUsed by:333
Symbol 333 MovieClip {WordSmith_fla.sounds_27}Uses:317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332Used by:Timeline
Symbol 334 EditableTextUses:249Used by:Timeline
Symbol 335 GraphicUsed by:341
Symbol 336 GraphicUsed by:340
Symbol 337 GraphicUsed by:338
Symbol 338 MovieClipUses:337Used by:340
Symbol 339 GraphicUsed by:340
Symbol 340 MovieClipUses:336 338 339Used by:341
Symbol 341 MovieClip {WordSmith_fla.head_36}Uses:335 26 28 340Used by:344
Symbol 342 MovieClipUses:33 30Used by:344
Symbol 343 GraphicUsed by:344
Symbol 344 MovieClip {WordSmith_fla.prof_29}Uses:4 6 9 12 341 20 23 342 37 14 343Used by:345
Symbol 345 MovieClip {WordSmith_fla.proffull_28}Uses:344Used by:Timeline
Symbol 346 GraphicUsed by:347
Symbol 347 MovieClipUses:346Used by:348
Symbol 348 MovieClip {WordSmith_fla.gameoverscreen_52}Uses:347Used by:Timeline
Symbol 349 GraphicUsed by:Timeline
Symbol 350 EditableTextUses:249Used by:353
Symbol 351 GraphicUsed by:352
Symbol 352 MovieClipUses:351Used by:353
Symbol 353 MovieClip {WordSmith_fla.fullscorescore_54}Uses:350 352Used by:Timeline
Symbol 354 GraphicUsed by:356
Symbol 355 GraphicUsed by:356
Symbol 356 MovieClipUses:354 261 355 292 293 300Used by:363
Symbol 357 GraphicUsed by:362
Symbol 358 GraphicUsed by:361
Symbol 359 TextUses:249Used by:361
Symbol 360 GraphicUsed by:361
Symbol 361 MovieClipUses:358 359 360Used by:362
Symbol 362 MovieClip {WordSmith_fla.zoominbase_58}Uses:357 274 361Used by:363
Symbol 363 MovieClip {WordSmith_fla.zoominall_56}Uses:356 362Used by:Timeline
Symbol 364 GraphicUsed by:366
Symbol 365 GraphicUsed by:366
Symbol 366 MovieClipUses:364 365Used by:Timeline
Symbol 367 ShapeTweeningUsed by:369
Symbol 368 GraphicUsed by:369
Symbol 369 MovieClip {WordSmith_fla.fadeout_61}Uses:367 368Used by:Timeline
Streaming Sound 1Used by:Symbol 24 MovieClip {WordSmith_fla.mouthgameover_158}
Streaming Sound 2Used by:Symbol 42 MovieClip {WordSmith_fla.mouthwatareuwaitingfor_156}
Streaming Sound 3Used by:Symbol 44 MovieClip {WordSmith_fla.mouthquicklyformwords_154}
Streaming Sound 4Used by:Symbol 48 MovieClip {WordSmith_fla.mouthmarvelous_152}
Streaming Sound 5Used by:Symbol 50 MovieClip {WordSmith_fla.mouthingenius_148}
Streaming Sound 6Used by:Symbol 56 MovieClip {WordSmith_fla.mouthfantastic_145}
Streaming Sound 7Used by:Symbol 60 MovieClip {WordSmith_fla.mouthextraordinary_143}
Streaming Sound 8Used by:Symbol 62 MovieClip {WordSmith_fla.mouthevenmorepoints_141}
Streaming Sound 9Used by:Symbol 64 MovieClip {WordSmith_fla.mouthbettermyself_139}
Streaming Sound 10Used by:Symbol 66 MovieClip {WordSmith_fla.mouthoutstanding_137}
Streaming Sound 11Used by:Symbol 68 MovieClip {WordSmith_fla.mouthexplanation_130}
Streaming Sound 12Used by:Symbol 266 MovieClip {WordSmith_fla.cooliologoanimate_4}

Instance Names

"mochiscores"Frame 1Symbol 258 MovieClip
"coolio"Frame 2Symbol 266 MovieClip {WordSmith_fla.cooliologoanimate_4}
"zoomin"Frame 3Symbol 314 MovieClip {WordSmith_fla.zoomin_7}
"holder"Frame 4Symbol 316 MovieClip
"smc"Frame 4Symbol 333 MovieClip {WordSmith_fla.sounds_27}
"scorevalue"Frame 4Symbol 334 EditableText
"prof1"Frame 4Symbol 345 MovieClip {WordSmith_fla.proffull_28}
"scoremc"Frame 5Symbol 348 MovieClip {WordSmith_fla.gameoverscreen_52}
"finalscore"Frame 5Symbol 353 MovieClip {WordSmith_fla.fullscorescore_54}
"zoomin2"Frame 5Symbol 363 MovieClip {WordSmith_fla.zoominall_56}
"submitbtn"Frame 5Symbol 366 MovieClip
"nose"Symbol 38 MovieClip {WordSmith_fla.mnose_133} Frame 1Symbol 37 MovieClip {WordSmith_fla.nose_49}
"eye2"Symbol 41 MovieClip {Prof12} Frame 1Symbol 26 MovieClip
"eye1"Symbol 41 MovieClip {Prof12} Frame 1Symbol 28 MovieClip
"eye2"Symbol 43 MovieClip {Prof11} Frame 1Symbol 26 MovieClip
"eye1"Symbol 43 MovieClip {Prof11} Frame 1Symbol 28 MovieClip
"eye2"Symbol 47 MovieClip {Prof10} Frame 1Symbol 26 MovieClip
"eye1"Symbol 47 MovieClip {Prof10} Frame 1Symbol 28 MovieClip
"eye2"Symbol 49 MovieClip {Prof6} Frame 1Symbol 26 MovieClip
"eye1"Symbol 49 MovieClip {Prof6} Frame 1Symbol 28 MovieClip
"eye2"Symbol 55 MovieClip {Prof9} Frame 1Symbol 26 MovieClip
"eye1"Symbol 55 MovieClip {Prof9} Frame 1Symbol 28 MovieClip
"eye2"Symbol 59 MovieClip {Prof5} Frame 1Symbol 26 MovieClip
"eye1"Symbol 59 MovieClip {Prof5} Frame 1Symbol 28 MovieClip
"eye2"Symbol 61 MovieClip {Prof4} Frame 1Symbol 26 MovieClip
"eye1"Symbol 61 MovieClip {Prof4} Frame 1Symbol 28 MovieClip
"eye2"Symbol 63 MovieClip {Prof3} Frame 1Symbol 26 MovieClip
"eye1"Symbol 63 MovieClip {Prof3} Frame 1Symbol 28 MovieClip
"eye2"Symbol 65 MovieClip {Prof8} Frame 1Symbol 26 MovieClip
"eye1"Symbol 65 MovieClip {Prof8} Frame 1Symbol 28 MovieClip
"eye2"Symbol 67 MovieClip {Prof7} Frame 1Symbol 26 MovieClip
"eye1"Symbol 67 MovieClip {Prof7} Frame 1Symbol 28 MovieClip
"eye2"Symbol 71 MovieClip {Prof2} Frame 1Symbol 26 MovieClip
"eye1"Symbol 71 MovieClip {Prof2} Frame 1Symbol 28 MovieClip
"shade"Symbol 154 MovieClip {Tile} Frame 1Symbol 135 MovieClip
"typ"Symbol 154 MovieClip {Tile} Frame 1Symbol 144 MovieClip {WordSmith_fla.normal_87}
"letter"Symbol 154 MovieClip {Tile} Frame 1Symbol 146 EditableText
"letter2"Symbol 154 MovieClip {Tile} Frame 1Symbol 147 EditableText
"shine"Symbol 154 MovieClip {Tile} Frame 1Symbol 149 MovieClip
"ashine"Symbol 154 MovieClip {Tile} Frame 1Symbol 151 MovieClip
"bomb"Symbol 154 MovieClip {Tile} Frame 1Symbol 153 MovieClip
"typ"Symbol 156 MovieClip {tLarge} Frame 1Symbol 144 MovieClip {WordSmith_fla.normal_87}
"letter"Symbol 156 MovieClip {tLarge} Frame 1Symbol 155 EditableText
"word"Symbol 159 MovieClip {Mword} Frame 1Symbol 157 EditableText
"miniscore"Symbol 159 MovieClip {Mword} Frame 1Symbol 158 EditableText
"bar"Symbol 191 MovieClip {WordSmith_fla.combometer_93} Frame 1Symbol 169 MovieClip
"m"Symbol 191 MovieClip {WordSmith_fla.combometer_93} Frame 1Symbol 189 MovieClip
"z"Symbol 213 MovieClip {WordSmith_fla.types2_98} Frame 1Symbol 212 MovieClip {WordSmith_fla.TYPES_99}
"z"Symbol 214 MovieClip {WordSmith_fla.zoomin_97} Frame 1Symbol 213 MovieClip {WordSmith_fla.types2_98}
"meter"Symbol 223 MovieClip {Interf} Frame 1Symbol 191 MovieClip {WordSmith_fla.combometer_93}
"z"Symbol 223 MovieClip {Interf} Frame 1Symbol 214 MovieClip {WordSmith_fla.zoomin_97}
"score"Symbol 223 MovieClip {Interf} Frame 1Symbol 216 EditableText
"used"Symbol 223 MovieClip {Interf} Frame 1Symbol 219 MovieClip {WordSmith_fla.usedwordsbutton_101}
"giveup"Symbol 223 MovieClip {Interf} Frame 1Symbol 222 MovieClip
"typ"Symbol 236 MovieClip {Explode} Frame 1Symbol 144 MovieClip {WordSmith_fla.normal_87}
"textarea"Symbol 255 MovieClip {listWords} Frame 1Symbol 242 MovieClip {fl.controls.TextArea}
"btn"Symbol 255 MovieClip {listWords} Frame 1Symbol 254 MovieClip
"playbtn"Symbol 308 MovieClip {WordSmith_fla.base_14} Frame 1Symbol 304 MovieClip {WordSmith_fla.playbtn_21}
"scoresbtn"Symbol 308 MovieClip {WordSmith_fla.base_14} Frame 1Symbol 307 MovieClip
"base"Symbol 314 MovieClip {WordSmith_fla.zoomin_7} Frame 1Symbol 308 MovieClip {WordSmith_fla.base_14}
"eye2"Symbol 341 MovieClip {WordSmith_fla.head_36} Frame 1Symbol 26 MovieClip
"eye1"Symbol 341 MovieClip {WordSmith_fla.head_36} Frame 1Symbol 28 MovieClip
"head"Symbol 344 MovieClip {WordSmith_fla.prof_29} Frame 1Symbol 341 MovieClip {WordSmith_fla.head_36}
"brows"Symbol 344 MovieClip {WordSmith_fla.prof_29} Frame 1Symbol 342 MovieClip
"nose"Symbol 344 MovieClip {WordSmith_fla.prof_29} Frame 1Symbol 37 MovieClip {WordSmith_fla.nose_49}
"prof"Symbol 345 MovieClip {WordSmith_fla.proffull_28} Frame 1Symbol 344 MovieClip {WordSmith_fla.prof_29}
"finalscore"Symbol 353 MovieClip {WordSmith_fla.fullscorescore_54} Frame 1Symbol 350 EditableText
"menubtn"Symbol 362 MovieClip {WordSmith_fla.zoominbase_58} Frame 1Symbol 361 MovieClip
"ab"Symbol 363 MovieClip {WordSmith_fla.zoominall_56} Frame 1Symbol 362 MovieClip {WordSmith_fla.zoominbase_58}

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS3.




http://swfchan.com/19/93605/info.shtml
Created: 26/3 -2019 15:32:07 Last modified: 26/3 -2019 15:32:07 Server time: 19/05 -2024 22:26:42